Command
/README
Commands are reusable workflow wrappers over one or more local PM skills.
One command from product-manager-skills.
shell
$ npx -y skills add deanpeters/Product-Manager-Skills --agent claude-codeShips with product-manager-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/README
Context preview
What this command does when you run it.
Commands are reusable workflow wrappers over one or more local PM skills.
Stats
Stars5,920
Forks725
LanguageShell
Command definition
README.md
# Commands Commands are reusable workflow wrappers over one or more local PM skills. - Skills remain the source of truth for frameworks and pedagogy. - Commands are lightweight orchestration for fast execution. - Commands are written as markdown with frontmatter and can be used in any agent by referencing the file path. ## Command Format Each command file should include frontmatter: ```yaml --- name: command-name description: What this command does argument-hint: "<what the user should provide>" uses: - skill-name - another-skill outputs: - Output artifact 1 - Output artifact 2 --- ``` ## Available Commands (v1) - `discover` - `strategy` - `write-prd` - `plan-roadmap` - `prioritize` - `leadership-transition` ## Validation ```bash python3 scripts/check-command-metadata.py ``` ## Discovery ```bash
