$npx -y skills add kv0906/pm-kit --skill helpPM-Kit command reference and workflow guide. Use for "/help", "what commands are available", "how do I use PM-Kit", "cheat sheet", "show me workflows", or "/help preview" for topic-specific help.
| 1 | # /help — PM-Kit Help Guide |
| 2 | |
| 3 | Surface the command reference and workflow guide. Read-only — no files created. |
| 4 | |
| 5 | ## Context |
| 6 | |
| 7 | Full guide: @handbook/HELP_GUIDE.md |
| 8 | Config: @_core/config.yaml |
| 9 | Workflow examples: @handbook/WORKFLOW_EXAMPLES.md |
| 10 | Processing flows: @_core/PROCESSING.md |
| 11 | |
| 12 | ## Usage |
| 13 | |
| 14 | ``` |
| 15 | /help |
| 16 | /help daily |
| 17 | /help preview |
| 18 | /help report |
| 19 | /help export |
| 20 | /help integrations |
| 21 | /help workflow |
| 22 | /help folders |
| 23 | ``` |
| 24 | |
| 25 | ## Processing Steps |
| 26 | |
| 27 | ### 1. Parse Topic |
| 28 | |
| 29 | | Input | Action | |
| 30 | |-------|--------| |
| 31 | | No args | Show quick cheat sheet + category overview | |
| 32 | | `daily`, `today` | Daily operations section | |
| 33 | | `preview`, `html` | Preview & HTML artifact section | |
| 34 | | `report`, `executive` | Report to me section + vs /progress | |
| 35 | | `export`, `xlsx`, `docx`, `pdf`, `pptx` | Export flags section | |
| 36 | | `integrations`, `jira`, `linear`, `notion` | Integrations section | |
| 37 | | `workflow`, `routine` | Recommended workflows section | |
| 38 | | `folders`, `structure`, `paths` | Folder map section | |
| 39 | | `ask`, `qmd` | Capture & retrieval section | |
| 40 | | `setup`, `onboard` | Setup & maintenance section | |
| 41 | | `{command}` | Look up specific command in HELP_GUIDE.md | |
| 42 | |
| 43 | If topic not found, show cheat sheet and suggest closest match. |
| 44 | |
| 45 | ### 2. Load Content |
| 46 | |
| 47 | Read `handbook/HELP_GUIDE.md` and extract the relevant section(s). |
| 48 | |
| 49 | For specific commands, also check if `.claude/skills/{command}/SKILL.md` exists — include one-line description and example invocation. |
| 50 | |
| 51 | ### 3. Format Output |
| 52 | |
| 53 | **Default (`/help`):** |
| 54 | |
| 55 | ```markdown |
| 56 | # PM-Kit Help |
| 57 | |
| 58 | ## Quick Cheat Sheet |
| 59 | {table from HELP_GUIDE.md} |
| 60 | |
| 61 | ## Categories |
| 62 | - **Daily:** /today, /daily, /progress, /report, /weekly, /push |
| 63 | - **Artifacts:** /doc, /decide, /block, /meet |
| 64 | - **Preview:** /preview, /report --preview |
| 65 | - **Export:** --xlsx, --docx, --pdf, --pptx |
| 66 | - **Capture:** /inbox, /ask |
| 67 | - **Maintenance:** /onboard, /health, /update, /help |
| 68 | |
| 69 | ## New here? |
| 70 | /onboard → /today → /daily project-a: shipped X, wip Y |
| 71 | |
| 72 | Full guide: handbook/HELP_GUIDE.md |
| 73 | ``` |
| 74 | |
| 75 | **Topic-specific (`/help preview`):** |
| 76 | |
| 77 | Return only that section from HELP_GUIDE.md, plus 2-3 example commands. |
| 78 | |
| 79 | ### 4. Suggest Next Command |
| 80 | |
| 81 | End with one contextual suggestion based on time of day or topic: |
| 82 | |
| 83 | | Context | Suggestion | |
| 84 | |---------|------------| |
| 85 | | Morning / daily topic | "Try: `/today` or `/daily project-a: ...`" | |
| 86 | | Preview topic | "Try: `/preview docs/{project}/{slug}.md`" | |
| 87 | | Report topic | "Try: `/report all` or `/report --preview`" | |
| 88 | | No topic, Friday | "It's Friday — try `/weekly` then `/report all --preview`" | |
| 89 | | Default | "Try: `/help workflow` for full daily routine" | |
| 90 | |
| 91 | ## Rules |
| 92 | |
| 93 | - **Read-only** — never create or modify files |
| 94 | - **Concise** — cheat sheet first, details on request |
| 95 | - **Point to handbook** — for deep dives, cite `handbook/HELP_GUIDE.md` |
| 96 | - **No skill dumping** — don't list all 34 skills unless user asks for "all skills" |
| 97 | |
| 98 | ## List All Skills (only when asked) |
| 99 | |
| 100 | If user says `/help all` or "list all skills": |
| 101 | |
| 102 | ``` |
| 103 | Glob: .claude/skills/*/SKILL.md |
| 104 | ``` |
| 105 | |
| 106 | Output table: `Command | One-line description | User-invocable?` |
| 107 | |
| 108 | Group by category matching HELP_GUIDE.md structure. |