a8a5bab9ce
Growth-focused additions drawn from studying alirezarezvani/claude-skills — broaden content types beyond skills, lower contribution friction, and improve discoverability. Breadth (content types): - agents/ — 4 Claude Code subagents (pm-partner, sprint-master, cs-guardian, launch-captain) that delegate to the strongest skills and run their helper scripts to compute results. - commands/ — 6 slash commands (/prd, /rice, /sprint-plan, /health-scorecard, /retro, /exec-summary). - install.sh --agent claude now installs skills + agents + commands into ~/.claude/. Contribution UX: - scripts/new-skill.mjs (npm run new-skill) scaffolds a SKILL.md that already passes SkillCheck. - package.json exposes npm run entry points (new-skill, skillcheck, build:exports, build:web, check). Discoverability: - Keyword-rich README H1 (Agent Skills for Claude, ChatGPT, Gemini, Cursor, Codex & Hermes), subagent/command count badges, a Subagents & Slash Commands section, and a Star History chart. Contributing now points at the scaffolder. CHANGELOG updated. SkillCheck, exports, and web index all verified in sync. Claude-Session: https://claude.ai/code/session_016JWn5jRD5tcEFKrubjQ6Px Co-authored-by: Claude <noreply@anthropic.com>
23 lines
881 B
Markdown
23 lines
881 B
Markdown
# Slash Commands
|
|
|
|
Claude Code **slash commands** that run a skill on whatever you pass them.
|
|
|
|
| Command | Does | Skill |
|
|
|---|---|---|
|
|
| `/prd` | Draft a PRD from an idea | prd-template |
|
|
| `/rice` | Score & rank initiatives (RICE) | rice-prioritisation |
|
|
| `/sprint-plan` | Plan a sprint with a calibrated commitment | sprint-planning |
|
|
| `/health-scorecard` | Weighted customer health scorecard | cs-health-scorecard |
|
|
| `/retro` | Structured sprint retrospective | retro-analysis |
|
|
| `/exec-summary` | Crisp executive summary | executive-summary |
|
|
|
|
## Install
|
|
|
|
```bash
|
|
./scripts/install.sh --agent claude # installs skills + agents + commands into ~/.claude/
|
|
# or copy manually:
|
|
cp commands/*.md ~/.claude/commands/
|
|
```
|
|
|
|
Then run, e.g. `/rice` followed by your initiatives. Commands whose skill ships a Python helper (RICE, sprint, health) will run it to compute results.
|