Provides intelligent context-aware PM workflow guidance with automatic phase detection. Prioritizes 6 natural workflow commands (plan, work, sync, commit, verify, done) for streamlined project management. Auto-activates when user mentions planning, implementation, verification, spec management, or asks "what command should I use". Detects workflow phase and suggests optimal command path. Provides learning mode for new users. Prevents common mistakes and offers error prevention. Works with pm-workflow state machine (IDEA → PLANNED → IMPLEMENTING → VERIFYING → VERIFIED → COMPLETE).
View on GitHubduongdev/ccpm
ccpm
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/duongdev/ccpm/blob/main/skills/pm-workflow-guide/SKILL.md -a claude-code --skill pm-workflow-guideInstallation paths:
.claude/skills/pm-workflow-guide/# PM Workflow Guide This skill helps you navigate CCPM's 49+ commands by automatically detecting your current workflow phase and suggesting the most appropriate commands. ## Natural Workflow Commands (RECOMMENDED) **Start here!** CCPM provides 6 simple, chainable commands that cover the complete workflow: ### Quick Reference Card ``` Planning → /ccpm:plan "title" Create & plan a new task Working → /ccpm:work Start/resume implementation Progressing → /ccpm:sync "summary" Save progress to Linear Committing → /ccpm:commit Create git commit (conventional) Verifying → /ccpm:verify Run quality checks Finalizing → /ccpm:done Create PR & finalize ``` ### Complete Workflow Examples **Example 1: New feature from scratch** ``` /ccpm:plan "Add two-factor authentication" my-app /ccpm:work # Start implementation /ccpm:sync "Implemented authenticator logic" /ccpm:commit # Auto-formats: feat(auth): implement 2FA /ccpm:verify # Run tests, linting, build /ccpm:done # Create PR and finalize ``` **Example 2: Fixing a bug** ``` /ccpm:plan BUG-456 # Plan existing bug ticket /ccpm:work # Resume where you left off /ccpm:sync "Fixed race condition" /ccpm:commit # Auto-formats: fix(cache): prevent race condition /ccpm:verify # Ensure fix doesn't break tests /ccpm:done # Ship the fix ``` **Example 3: Documentation update** ``` /ccpm:plan "Update API documentation" my-app /ccpm:work /ccpm:sync "Added deployment guide" /ccpm:commit # Auto-formats: docs(api): add deployment guide /ccpm:verify /ccpm:done ``` ### Command Details 1. **`/ccpm:plan`** - Smart planning -