From claude-stack
Show all available skills, agents, and workflow guides - quick reference card for claude-stack
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-stack:s-helpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display all available skills, agents, workflows, and usage guides. The one-stop reference card.
Display all available skills, agents, workflows, and usage guides. The one-stop reference card.
Show all 27 skills organized by phase group:
╔══════════════════════════════════════════════════════════════════╗
║ CLAUDE-STACK SKILLS (27) ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ CORE (8) ║
║ ───────────────────────────────────────────────────────────── ║
║ /s:new Initialize project (.planning/ + docs/) ║
║ /s:discuss Gather requirements (REQUIREMENTS.md) ║
║ /s:plan Create roadmap and phase plans ║
║ /s:build TDD implementation (RED > GREEN > REFACTOR) ║
║ /s:status Show project state, progress, blockers ║
║ /s:resume Reconstruct context, continue work ║
║ /s:pause Save state, create resume instructions ║
║ /s:note Add quick note to STATE.md decisions ║
║ ║
║ QUALITY (6) ║
║ ───────────────────────────────────────────────────────────── ║
║ /s:brainstorm Explore ideas, propose approaches ║
║ /s:review Multi-perspective code review (5 aspects) ║
║ /s:verify Evidence-based verification (proof required) ║
║ /s:debug Systematic debugging (no guessing) ║
║ /s:ceo-review Product/business perspective review ║
║ /s:eng-review Technical/architecture perspective review ║
║ ║
║ SHIP (4) ║
║ ───────────────────────────────────────────────────────────── ║
║ /s:ship Test + commit + push + PR ║
║ /s:compound Save learnings to docs/solutions/ (NEVER SKIP) ║
║ /s:retro Retrospective: what worked, what didn't ║
║ /s:docs Update project documentation ║
║ ║
║ BROWSER (4) ║
║ ───────────────────────────────────────────────────────────── ║
║ /s:qa Browser QA: screenshot, test, fix (3 tiers) ║
║ /s:qa-only Browser QA: report only, no fixes ║
║ /s:browse Headless browser control (navigate, click, fill) ║
║ /s:cookies Import browser cookies for auth testing ║
║ ║
║ AUTO (5) ║
║ ───────────────────────────────────────────────────────────── ║
║ /s:auto Run full skill chain autonomously ║
║ /s:quick Compressed workflow for small tasks ║
║ /s:do Natural language router to skills ║
║ /s:map Generate codebase architecture docs ║
║ /s:help This reference card ║
║ ║
╚══════════════════════════════════════════════════════════════════╝
Show all 12 agents with their dispatch triggers:
╔══════════════════════════════════════════════════════════════════╗
║ CLAUDE-STACK AGENTS (12) ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ Agent Dispatched By Expertise ║
║ ────────────────── ────────────────── ────────────────── ║
║ architect /s:plan, /s:brainstorm System design ║
║ code-reviewer /s:review 5-aspect review ║
║ security-reviewer /s:review OWASP, auth, XSS ║
║ database-reviewer /s:review Schema, queries, N+1 ║
║ tdd-guide /s:build RED/GREEN/REFACTOR ║
║ qa-engineer /s:qa Test matrix, edge ║
║ frontend-dev /s:build React, Next.js, CSS ║
║ backend-dev /s:build API, services, DB ║
║ mobile-dev /s:build React Native, Swift ║
║ debugger /s:debug Root cause analysis ║
║ performance-eng /s:review Profiling, optimize ║
║ deployment-eng /s:ship CI/CD, Docker, k8s ║
║ ║
║ + 4 subagent templates in agents/subagent-templates/ ║
║ implementer, spec-reviewer, code-quality, plan-reviewer ║
║ ║
╚══════════════════════════════════════════════════════════════════╝
Show the standard workflow progression:
STANDARD WORKFLOW CHAIN:
════════════════════════
/s:new ─→ /s:discuss ─→ /s:brainstorm ─→ /s:plan
│
┌────────────────────┘
▼
/s:build ─→ /s:review ─→ /s:verify
│ │
│ (TDD loop) │ (evidence check)
│ │
└──── fail? ────────────┘
│
▼ pass
/s:ship ─→ /s:compound
│
▼
/s:retro
SHORTCUTS:
/s:auto Runs the full chain automatically
/s:quick Compressed chain for small tasks
/s:do Natural language, routed to any skill
Show common starting scenarios:
QUICK START:
════════════
New project:
/s:new myproject
Start working on requirements:
/s:discuss
Resume from last session:
/s:resume
Check current status:
/s:status
Quick bug fix:
/s:quick "fix the login redirect issue"
Quick feature:
/s:quick "add dark mode toggle" --discuss
Full autonomous run:
/s:auto
Natural language (let the router decide):
/s:do "add user authentication with Google OAuth"
Map the codebase:
/s:map
Get a code review:
/s:review
Ship current work:
/s:ship
Show the 8 active rules:
ACTIVE RULES (8):
══════════════════
tdd.md No production code without a failing test
verification.md No "done" claims without evidence table
debugging.md No guessing - hypothesis > test > fix
context-persist Never delete .planning/ or docs/
ask-user.md Re-ground > Simplify > Recommend > Options
quality.md No 'any' types, no emoji icons, use Lucide/Heroicons
confidence.md Score confidence 1-10 before major decisions
uncodixfy.md 33 anti-AI-slop rules + 24 hard-no patterns
Show how project memory works:
CONTEXT SYSTEM:
═══════════════
.planning/ Project memory (created by /s:new)
STATE.md Current position, decisions, blockers
REQUIREMENTS.md ID'd requirements with acceptance criteria
ROADMAP.md Phases, tasks, dependencies
phases/N/ Per-phase context, plan, research, summary
docs/ Knowledge base (grows over time)
brainstorms/*.md Explored ideas and decisions
plans/*.md Implementation plans with checkboxes
solutions/*.md Past solutions and learnings
RULE: Never delete .planning/ or docs/ - they are project memory.
RULE: Every skill updates STATE.md.
RULE: /s:compound saves learnings after each feature.
Show useful tips for effective usage:
TIPS:
═════
1. Always start with /s:new for a new project
2. /s:compound after every feature - learnings compound over time
3. /s:status when you're lost - it reads STATE.md + git log
4. /s:resume at the start of each new session
5. /s:quick for small tasks - still enforces TDD
6. /s:do when you're not sure which skill to use
7. /s:debug instead of guessing at bug fixes
8. /s:map to understand an unfamiliar codebase
9. Agents are dispatched automatically by skills when needed
10. Split-pane teammates for parallel work (not subagents)
npx claudepluginhub bdarbaz/claude-stack-pluginLists all available Groundwork skills and agents with descriptions, grouped by purpose, showing invocation methods (user slash vs model auto).
Loads skills efficiently using a 3-layer progressive disclosure system: lightweight index always loaded, summaries on demand, full skills only during execution to minimize token usage.
Discovers and invokes agent skills by mapping tasks to engineering workflows. Use at session start or to find the right skill for current work.