@@ -19,7 +19,7 @@ When you type `/` in Claude Code, you'll see two types of commands:
1919
2020| Type | Source | Examples |
2121| ---------------- | ---------------------------------- | --------------------------------------------------------------------------------- |
22- | ** Project Hubs** | This project (` .claude/commands/ ` ) | ` /dev ` , ` /testing ` , ` /workflow ` , ` /docs ` , etc. |
22+ | ** Project Hubs** | This project (` .claude/commands/ ` ) | ` /dev ` , ` /testing ` , ` /workflows ` , ` /plan ` , ` / docs` , etc. |
2323| ** Built-in** | Claude Code itself | ` /clear ` , ` /compact ` , ` /config ` , ` /cost ` , ` /doctor ` , ` /init ` , ` /model ` , ` /status ` |
2424
2525** This help covers the 9 Project Hubs below.** For built-in commands, see [ Claude Code documentation] ( https://docs.anthropic.com/claude-code ) .
@@ -32,7 +32,8 @@ When you type `/` in Claude Code, you'll see two types of commands:
3232| ------------ | -------------------- | ------------------------------------------ |
3333| ` /dev ` | ` /developer ` | Debugging, commits, PRs, code quality |
3434| ` /testing ` | ` /tests ` , ` /test-hub ` | Run tests, coverage, benchmarks |
35- | ` /workflow ` | ` /wf ` | Planning, TDD, code review, refactoring |
35+ | ` /workflows ` | ` /wf ` , ` /workflow ` | Run automated AI workflows (security, perf)|
36+ | ` /plan ` | ` /approach ` | Planning, TDD, code review, refactoring |
3637| ` /docs ` | ` /documentation ` | Explain code, manage docs, feature overview|
3738| ` /agent ` | ` /agents ` | Create and manage specialized agents |
3839| ` /context ` | ` /ctx ` | Save/restore state, memory, status |
@@ -46,12 +47,14 @@ When you type `/` in Claude Code, you'll see two types of commands:
4647# Run any hub for an interactive menu
4748/dev
4849/testing
49- /workflow
50+ /workflows
51+ /plan
5052
5153# Or provide context directly
5254/dev " debug login error"
5355/testing " run unit tests"
54- /workflow " plan new feature"
56+ /workflows run security-audit
57+ /plan " new feature"
5558```
5659
5760## Finding the Right Hub
@@ -65,8 +68,11 @@ Code & Git:
6568Testing:
6669 └─ Run tests, coverage, benchmarks → /testing
6770
71+ Automated Analysis:
72+ └─ Security audit, bug predict, perf audit → /workflows
73+
6874Development Process:
69- └─ Plan, TDD, review, refactor → /workflow
75+ └─ Plan, TDD, review, refactor → /plan
7076
7177Documentation:
7278 └─ Explain code, write docs → /docs
@@ -89,18 +95,20 @@ Setup:
8995
9096## Common Tasks Quick Reference
9197
92- | Task | Command |
93- | ------------------------ | -------------------------- |
94- | Debug an error | ` /dev "debug <error>" ` |
95- | Create a commit | ` /dev "commit" ` |
96- | Create a PR | ` /dev "create PR" ` |
97- | Run tests | ` /testing "run tests" ` |
98- | Check coverage | ` /testing "coverage" ` |
99- | Plan a feature | ` /workflow "plan <feat>" ` |
100- | Review code | ` /workflow "review" ` |
101- | Explain code | ` /docs "explain <file>" ` |
102- | Save session state | ` /context "save state" ` |
103- | Prepare release | ` /release "prep 1.0.0" ` |
98+ | Task | Command |
99+ | ------------------------ | ------------------------------- |
100+ | Debug an error | ` /dev "debug <error>" ` |
101+ | Create a commit | ` /dev "commit" ` |
102+ | Create a PR | ` /dev "create PR" ` |
103+ | Run tests | ` /testing "run tests" ` |
104+ | Check coverage | ` /testing "coverage" ` |
105+ | Security audit | ` /workflows run security-audit ` |
106+ | Bug prediction | ` /workflows run bug-predict ` |
107+ | Plan a feature | ` /plan "new feature" ` |
108+ | Review code | ` /plan "review" ` |
109+ | Explain code | ` /docs "explain <file>" ` |
110+ | Save session state | ` /context "save state" ` |
111+ | Prepare release | ` /release "prep 1.0.0" ` |
104112
105113## Hub Features
106114
0 commit comments