Appearance
skills commands
[preview] Inspect and install Metaplay agent skills
Appearance
[preview] Inspect and install Metaplay agent skills
metaplay skills PREVIEW: The 'skills' command family is in preview and subject to change!
Manage the Metaplay agent skills bundled with this CLI.
Skills are markdown documents (with YAML frontmatter) that AI coding agents like Claude Code load to learn how to work with the Metaplay SDK. Each skill ships embedded in the CLI binary; only thin wrapper files are written into your project (or user home) when you run 'metaplay skills install'.
Sub-skills of a skill are not written to disk — they stay in the CLI and are fetched on demand via 'metaplay skills get <skill>-<sub-skill>'.
# List the skills shipped with this CLI.
metaplay skills list
# Print agent-facing guidance for trying skills without installing.
metaplay skills try
# Print a skill's main markdown.
metaplay skills get metaplay-develop
# Print a sub-skill.
metaplay skills get metaplay-develop-code-review
# Install the wrappers into the current project for Claude Code.
metaplay skills install--color <string>: Should the output be colored (yes/no/auto)? [env: METAPLAYCLI_COLOR] (default: auto)--project <string>: Path to the to project directory (where metaplay-project.yaml is located)--skip-version-check: Skip the check for a new CLI version being available--verbose: Enable verbose logging, useful for troubleshooting [env: METAPLAYCLI_VERBOSE]metaplay skills get NAME - [preview] Print an embedded Metaplay skill or sub-skill to stdoutmetaplay skills install [flags] - [preview] Install Metaplay skill wrappers into your project (or user home)metaplay skills list [flags] - [preview] List the Metaplay skills bundled with this CLImetaplay skills remove [SKILL] [flags] - [preview] Remove Metaplay skill wrappers from the project (or user home)metaplay skills try - [preview] Try the Metaplay skills in your AI agent without installing them