@namch/agent-assistant 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +103 -40
  2. package/agents/reporter.md +177 -0
  3. package/code-assistants/antigravity-assistant/AntigravityGlobal.agent.md +3 -1
  4. package/code-assistants/antigravity-assistant/GEMINI.md +2 -0
  5. package/code-assistants/copilot-assistant/agent-assistant.agent.md +5 -0
  6. package/code-assistants/cursor-assistant/rules/agent-assistant.mdc +3 -1
  7. package/commands/code/focus.md +323 -0
  8. package/commands/code/hard.md +59 -0
  9. package/commands/code.md +13 -7
  10. package/commands/cook/focus.md +262 -0
  11. package/commands/cook/hard.md +59 -0
  12. package/commands/cook.md +13 -7
  13. package/commands/debug/focus.md +155 -0
  14. package/commands/debug/hard.md +53 -0
  15. package/commands/debug.md +9 -4
  16. package/commands/design/focus.md +267 -0
  17. package/commands/design/hard.md +53 -0
  18. package/commands/design.md +13 -7
  19. package/commands/fix/focus.md +175 -0
  20. package/commands/fix/hard.md +57 -0
  21. package/commands/fix.md +13 -7
  22. package/commands/plan/focus.md +190 -0
  23. package/commands/plan/hard.md +56 -0
  24. package/commands/plan.md +13 -7
  25. package/commands/report/fast.md +71 -0
  26. package/commands/report/focus.md +156 -0
  27. package/commands/report/hard.md +112 -0
  28. package/commands/report.md +89 -0
  29. package/commands/test/focus.md +165 -0
  30. package/commands/test/hard.md +53 -0
  31. package/commands/test.md +9 -4
  32. package/documents/business/business-features.md +1 -1
  33. package/documents/business/business-glossary.md +9 -8
  34. package/documents/business/business-prd.md +8 -8
  35. package/documents/knowledge-architecture.md +1 -1
  36. package/documents/knowledge-domain.md +5 -4
  37. package/documents/knowledge-overview.md +7 -6
  38. package/documents/knowledge-source-base.md +9 -9
  39. package/package.json +1 -1
  40. package/rules/AGENT-RULES.md +2 -1
  41. package/rules/BOOTSTRAP.md +3 -0
  42. package/rules/QUICK-REFERENCE.md +8 -0
@@ -14,7 +14,7 @@ Agent Assistant provides a comprehensive feature set organized into six categori
14
14
  | Category | Feature Count | Description |
15
15
  |----------|---------------|-------------|
16
16
  | Specialist Agents | 20 | Domain expert personas |
17
- | Command Workflows | 40+ | Development workflow automations |
17
+ | Command Workflows | 50+ | Development workflow automations (incl. /report, focus variant) |
18
18
  | Domain Skills | 310+ | On-demand knowledge modules |
19
19
  | Quality Gates | 5 | Automated verification checkpoints |
20
20
  | Orchestration Rules | 8 | Governance and coordination protocols |
@@ -40,7 +40,7 @@ A **slash-prefixed workflow trigger** that initiates a structured development pr
40
40
  | With variant | `/cook:hard` |
41
41
  | With argument | `/cook:hard "implement OAuth"` |
42
42
 
43
- **Available Commands**: `/cook`, `/fix`, `/plan`, `/test`, `/review`, `/debug`, `/design`, `/docs`, `/deploy`, `/ask`, `/auto`, `/brainstorm`, `/code`
43
+ **Available Commands**: `/cook`, `/fix`, `/plan`, `/test`, `/review`, `/debug`, `/design`, `/docs`, `/report`, `/deploy`, `/ask`, `/auto`, `/brainstorm`, `/code`
44
44
 
45
45
  ---
46
46
 
@@ -477,16 +477,17 @@ A **document specifying** what a product should do, including features, requirem
477
477
 
478
478
  | Command | Purpose | Variants |
479
479
  |---------|---------|----------|
480
- | `/cook` | Implement features | `:fast`, `:hard` |
481
- | `/code` | Generate code snippets | `:fast`, `:hard` |
482
- | `/fix` | Fix bugs | `:fast`, `:hard` |
483
- | `/test` | Generate tests | `:fast`, `:hard` |
480
+ | `/cook` | Implement features | `:fast`, `:hard`, `:focus` |
481
+ | `/code` | Generate code snippets | `:fast`, `:hard`, `:focus` |
482
+ | `/fix` | Fix bugs | `:fast`, `:hard`, `:focus` |
483
+ | `/test` | Generate tests | `:fast`, `:hard`, `:focus` |
484
484
  | `/review` | Code review | `:fast`, `:hard` |
485
- | `/debug` | Debug issues | `:fast`, `:hard` |
486
- | `/plan` | Create implementation plans | `:fast`, `:hard` |
485
+ | `/debug` | Debug issues | `:fast`, `:hard`, `:focus` |
486
+ | `/plan` | Create implementation plans | `:fast`, `:hard`, `:focus` |
487
487
  | `/brainstorm` | Discover requirements | `:fast`, `:hard` |
488
- | `/design` | UI/UX design | `:fast`, `:hard` |
488
+ | `/design` | UI/UX design | `:fast`, `:hard`, `:focus` |
489
489
  | `/docs` | Generate documentation | `:core`, `:business`, `:audit` |
490
+ | `/report` | Create/update reports, summaries | `:fast`, `:hard`, `:focus` |
490
491
  | `/deploy` | Deployment operations | `:check`, `:preview`, `:production`, `:rollback` |
491
492
  | `/ask` | Q&A about codebase | `:fast`, `:hard` |
492
493
  | `/auto` | Auto-detect best command | — |
@@ -11,7 +11,7 @@
11
11
 
12
12
  ### 1.1 Product Overview
13
13
 
14
- **Agent Assistant** is an open-source multi-agent orchestration framework that transforms a single AI coding assistant into a coordinated team of 20 specialist agents. It provides structured workflows, quality gates, and 310+ domain skills for production-grade AI-assisted software development.
14
+ **Agent Assistant** is an open-source multi-agent orchestration framework that transforms a single AI coding assistant into a coordinated team of 21 specialist agents. It provides structured workflows, quality gates, and 310+ domain skills for production-grade AI-assisted software development.
15
15
 
16
16
  ### 1.2 Vision Statement
17
17
 
@@ -19,7 +19,7 @@
19
19
 
20
20
  ### 1.3 Mission Statement
21
21
 
22
- > **"To democratize software engineering excellence by orchestrating AI coding assistants into a cohesive team of 20 specialist agents, enabling developers to ship faster, safer, and more consistently through repeatable workflows and automated quality verification."**
22
+ > **"To democratize software engineering excellence by orchestrating AI coding assistants into a cohesive team of 21 specialist agents, enabling developers to ship faster, safer, and more consistently through repeatable workflows and automated quality verification."**
23
23
 
24
24
  ### 1.4 Key Metrics
25
25
 
@@ -135,7 +135,7 @@ AI coding assistants are powerful but unstructured. Developers use AI tools in a
135
135
 
136
136
  | ID | Requirement | Priority | Status |
137
137
  |----|-------------|----------|--------|
138
- | FR-001.1 | System SHALL support 20 specialist agents | Must-Have | ✅ Complete |
138
+ | FR-001.1 | System SHALL support 21 specialist agents | Must-Have | ✅ Complete |
139
139
  | FR-001.2 | System SHALL route tasks to appropriate agents | Must-Have | ✅ Complete |
140
140
  | FR-001.3 | System SHALL support tiered execution (sub-agent + embody) | Must-Have | ✅ Complete |
141
141
  | FR-001.4 | System SHALL enforce orchestration laws | Must-Have | ✅ Complete |
@@ -145,7 +145,7 @@ AI coding assistants are powerful but unstructured. Developers use AI tools in a
145
145
 
146
146
  | ID | Requirement | Priority | Status |
147
147
  |----|-------------|----------|--------|
148
- | FR-002.1 | System SHALL support 40+ command workflows | Must-Have | ✅ Complete |
148
+ | FR-002.1 | System SHALL support 50+ command workflows | Must-Have | ✅ Complete |
149
149
  | FR-002.2 | System SHALL support workflow variants (:fast, :hard) | Must-Have | ✅ Complete |
150
150
  | FR-002.3 | System SHALL execute phases sequentially | Must-Have | ✅ Complete |
151
151
  | FR-002.4 | System SHALL verify exit criteria before phase transition | Must-Have | ✅ Complete |
@@ -284,8 +284,8 @@ AI coding assistants are powerful but unstructured. Developers use AI tools in a
284
284
 
285
285
  | Feature | Description | Status |
286
286
  |---------|-------------|--------|
287
- | 20 Specialist Agents | Domain experts | ✅ Complete |
288
- | Core Command Workflows | /cook, /fix, /plan, etc. | ✅ Complete |
287
+ | 21 Specialist Agents | Domain experts | ✅ Complete |
288
+ | Core Command Workflows | /cook, /fix, /plan, /report, etc. | ✅ Complete |
289
289
  | Quality Gates | 5 automated gates | ✅ Complete |
290
290
  | Matrix Skill Discovery | 310+ skills | ✅ Complete |
291
291
  | Multi-Tool Support | 4 AI tools | ✅ Complete |
@@ -324,8 +324,8 @@ AI coding assistants are powerful but unstructured. Developers use AI tools in a
324
324
 
325
325
  | Feature | Status |
326
326
  |---------|--------|
327
- | 20 Specialist Agents | ✅ |
328
- | 40+ Command Workflows | ✅ |
327
+ | 21 Specialist Agents | ✅ |
328
+ | 50+ Command Workflows | ✅ |
329
329
  | 310+ Domain Skills | ✅ |
330
330
  | Matrix Skill Discovery | ✅ |
331
331
  | Multi-Tool Support | ✅ |
@@ -41,7 +41,7 @@ Agent Assistant is a **multi-agent orchestration framework** that transforms a s
41
41
  └─────────────────┬─────────────────┘
42
42
 
43
43
  ┌─────────────────────────────────────────────────────────────────────────────┐
44
- │ SPECIALIST AGENTS (20) │
44
+ │ SPECIALIST AGENTS (21) │
45
45
  │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
46
46
  │ │ tech-lead │ │ backend- │ │ frontend- │ │ security- │ ... │
47
47
  │ │ │ │ engineer │ │ engineer │ │ engineer │ │
@@ -11,7 +11,7 @@ Agent Assistant operates in the domain of **AI-assisted software development orc
11
11
  ```
12
12
  ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
13
13
  │ AGENTS │────▶│ COMMANDS │────▶│ SKILLS │
14
- │ (20 entities) │ │ (40+ entities) │ │ (310+ entities) │
14
+ │ (21 entities) │ │ (50+ entities) │ │ (310+ entities) │
15
15
  └─────────────────┘ └─────────────────┘ └─────────────────┘
16
16
  │ │ │
17
17
  ▼ ▼ ▼
@@ -123,13 +123,14 @@ execution-mode: string # "execute" | "router"
123
123
 
124
124
  | Command | Description | Variants | Category |
125
125
  |---------|-------------|----------|----------|
126
- | `/cook` | Implement features | `:fast`, `:hard` | development |
126
+ | `/cook` | Implement features | `:fast`, `:hard`, `:focus` | development |
127
127
  | `/code` | Write code snippets | `:fast`, `:hard` | development |
128
- | `/fix` | Fix bugs and refactor | `:fast`, `:hard` | development |
128
+ | `/fix` | Fix bugs and refactor | `:fast`, `:hard`, `:focus` | development |
129
129
  | `/test` | Generate tests | `:fast`, `:hard` | quality |
130
130
  | `/review` | Code review | `:fast`, `:hard` | quality |
131
131
  | `/debug` | Systematic debugging | `:fast`, `:hard` | quality |
132
- | `/plan` | Implementation planning | `:fast`, `:hard` | planning |
132
+ | `/plan` | Implementation planning | `:fast`, `:hard`, `:focus` | planning |
133
+ | `/report` | Create/update reports, summaries | `:fast`, `:hard`, `:focus` | documentation |
133
134
  | `/brainstorm` | Requirements discovery | `:fast`, `:hard` | planning |
134
135
  | `/design` | UI/UX design | `:fast`, `:hard` | planning |
135
136
  | `/docs` | Documentation | `:core`, `:business`, `:audit` | documentation |
@@ -19,7 +19,7 @@
19
19
 
20
20
  ## 2. Purpose and Mission
21
21
 
22
- Agent Assistant transforms a single AI coding assistant into a **coordinated team of 20 specialist agents** with structured workflows, quality gates, and 310+ domain skills.
22
+ Agent Assistant transforms a single AI coding assistant into a **coordinated team of 21 specialist agents** with structured workflows, quality gates, and 310+ domain skills.
23
23
 
24
24
  ### Core Value Proposition
25
25
 
@@ -35,7 +35,7 @@ With Agent Assistant:
35
35
 
36
36
  | Benefit | Description |
37
37
  | ------------------ | ----------------------------------------------------- |
38
- | **Specialization** | 20 domain expert agents instead of one generalist |
38
+ | **Specialization** | 21 domain expert agents instead of one generalist |
39
39
  | **Consistency** | Shared rules, skills, and conventions across all work |
40
40
  | **Quality** | Built-in test, review, and security workflows |
41
41
  | **Efficiency** | 85% token cost reduction through targeted expertise |
@@ -47,8 +47,8 @@ With Agent Assistant:
47
47
 
48
48
  | Metric | Count | Description |
49
49
  | ----------------- | ----- | ---------------------------------------------------------- |
50
- | Specialist Agents | 20 | Domain experts (backend, frontend, security, tester, etc.) |
51
- | Command Workflows | 40+ | Development workflows (/cook, /fix, /plan, /deploy, etc.) |
50
+ | Specialist Agents | 21 | Domain experts (backend, frontend, security, tester, reporter, etc.) |
51
+ | Command Workflows | 50+ | Development workflows (/cook, /fix, /plan, /report, /deploy, etc.; variants: fast, hard, focus) |
52
52
  | Domain Skills | 310 | On-demand knowledge (React, APIs, databases, DevOps, AI/ML, Security, etc.) |
53
53
  | Matrix Domains | 19 | Skill categories (backend, frontend, security, ai-ml, etc.) |
54
54
  | Quality Gates | 5 | Compile, lint, test, security, review |
@@ -200,7 +200,7 @@ Then try development commands:
200
200
 
201
201
  ## 7. Key Features
202
202
 
203
- ### 7.1 20 Specialist Agents
203
+ ### 7.1 21 Specialist Agents
204
204
 
205
205
  | Category | Agents |
206
206
  | ------------------ | ------------------------------------------------------------------- |
@@ -214,7 +214,7 @@ Then try development commands:
214
214
  | **Design** | designer |
215
215
  | **Management** | project-manager |
216
216
 
217
- ### 7.2 40+ Command Workflows
217
+ ### 7.2 50+ Command Workflows
218
218
 
219
219
  | Category | Commands |
220
220
  | ----------------- | ---------------------------------------------------------------------------- |
@@ -222,6 +222,7 @@ Then try development commands:
222
222
  | **Quality** | `/test`, `/review`, `/debug` |
223
223
  | **Planning** | `/plan`, `/brainstorm`, `/design` |
224
224
  | **Documentation** | `/docs:core`, `/docs:business`, `/docs:audit` |
225
+ | **Report** | `/report:fast`, `/report:hard`, `/report:focus` |
225
226
  | **Deployment** | `/deploy:check`, `/deploy:preview`, `/deploy:production`, `/deploy:rollback` |
226
227
  | **Utility** | `/ask`, `/auto` |
227
228
 
@@ -8,11 +8,11 @@
8
8
 
9
9
  ```
10
10
  agent-assistant/ # Project root
11
- ├── agents/ # 🤖 20 specialist agent definitions
11
+ ├── agents/ # 🤖 21 specialist agent definitions
12
12
  ├── assets/ # 🎨 Static assets (logo, images)
13
13
  ├── cli/ # 🔧 CLI installer system
14
14
  ├── code-assistants/ # 🔌 IDE-specific configurations
15
- ├── commands/ # 📋 40+ command workflow definitions
15
+ ├── commands/ # 📋 50+ command workflow definitions
16
16
  ├── documents/ # 📚 Generated documentation
17
17
  ├── matrix-skills/ # 🎯 Skill discovery matrix (19 domains)
18
18
  ├── rules/ # ⚖️ Orchestration rules and protocols
@@ -35,7 +35,7 @@ agent-assistant/ # Project root
35
35
 
36
36
  ### 2.1 `agents/` — Specialist Agent Definitions
37
37
 
38
- Contains 20 specialist agent definition files.
38
+ Contains 21 specialist agent definition files.
39
39
 
40
40
  ```
41
41
  agents/
@@ -73,7 +73,7 @@ agents/
73
73
 
74
74
  ### 2.2 `commands/` — Command Workflow Definitions
75
75
 
76
- Contains 40+ command workflow files organized by command and variant.
76
+ Contains 50+ command workflow files organized by command and variant (fast, hard, focus).
77
77
 
78
78
  ```
79
79
  commands/
@@ -158,11 +158,11 @@ rules/
158
158
 
159
159
  ### 2.4 `matrix-skills/` — Skill Discovery Matrix
160
160
 
161
- Contains 20 YAML files that define skill-to-agent mappings.
161
+ Contains 19 YAML domain files that define skill-to-agent mappings (plus _index.yaml).
162
162
 
163
163
  ```
164
164
  matrix-skills/
165
- ├── _index.yaml # Central registry (310 skills, 20 agents)
165
+ ├── _index.yaml # Central registry (310 skills, 21 agents)
166
166
  ├── ai-ml.yaml # 40 AI/ML skills (+27: agent development, LLM patterns, RAG, voice AI)
167
167
  ├── architecture.yaml # 9 architecture skills
168
168
  ├── backend.yaml # 32 backend skills (+12: job queues, payments, communications)
@@ -401,7 +401,7 @@ domains: # 19 domain registrations
401
401
  frontend: { file: "frontend.yaml", ... }
402
402
  # ...
403
403
 
404
- agent_profiles: # 20 agent-to-domain mappings
404
+ agent_profiles: # 21 agent-to-domain mappings
405
405
  backend-engineer:
406
406
  profile: "backend:execution"
407
407
  inherit_from: [backend, architecture, quality, data, languages]
@@ -544,8 +544,8 @@ REPORTS_PATH = ./reports/
544
544
 
545
545
  | Category | Count | Description |
546
546
  |----------|-------|-------------|
547
- | Agent Files | 20 | Specialist agent definitions |
548
- | Command Files | 40+ | Workflow definitions |
547
+ | Agent Files | 21 | Specialist agent definitions |
548
+ | Command Files | 50+ | Workflow definitions (routers + variants: fast, hard, focus) |
549
549
  | Rule Files | 8 | Orchestration protocols |
550
550
  | Matrix Files | 20 | Skill discovery config |
551
551
  | Skill Folders | 310+ | Domain skill definitions |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namch/agent-assistant",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Multi-agent orchestration framework for AI coding assistants (Cursor, Copilot, Antigravity, Claude Code).",
5
5
  "main": "cli/install.js",
6
6
  "bin": {
@@ -27,7 +27,7 @@ philosophy:
27
27
 
28
28
  ```
29
29
  agent-assistant/
30
- ├── agents/ # 21 Specialized Agents (~150-200 lines each)
30
+ ├── agents/ # 21 Specialized Agents (~150-200 lines each, including reporter)
31
31
  ├── commands/ # Command Workflows (router + variants)
32
32
  ├── rules/ # Orchestration Protocols
33
33
  │ ├── BOOTSTRAP.md # ⚡ ENTRY POINT - Load this first
@@ -194,6 +194,7 @@ execution-mode: execute
194
194
  | designer | `./reports/designs/DESIGN-{feature}.md` |
195
195
  | planner | `./reports/plans/PLAN-{feature}.md` |
196
196
  | debugger | `./reports/debugs/DEBUG-{issue}.md` |
197
+ | reporter | `./reports/` (create/update per task) |
197
198
 
198
199
  ---
199
200
 
@@ -72,6 +72,7 @@ echo $HOME # Capture result, e.g., /Users/jdoe
72
72
  | `/brainstorm ...` | Brainstorming | `~/.{TOOL}/skills/agent-assistant/commands/brainstorm.md` |
73
73
  | `/ask ...` | Q&A | `~/.{TOOL}/skills/agent-assistant/commands/ask.md` |
74
74
  | `/code ...` | Direct Coding | `~/.{TOOL}/skills/agent-assistant/commands/code.md` |
75
+ | `/report ...` | Reporting | `~/.{TOOL}/skills/agent-assistant/commands/report.md` → `report/:variant` |
75
76
 
76
77
  **Variant form**: Both `/{command}/{variant}` and `/{command}:{variant}` are valid (e.g. `/docs/core` = `/docs:core`). When a variant is present, **LOAD** `~/.{TOOL}/skills/agent-assistant/commands/{command}/{variant}.md` directly; do not load `~/.{TOOL}/skills/agent-assistant/commands/{command}.md` first.
77
78
 
@@ -88,6 +89,7 @@ echo $HOME # Capture result, e.g., /Users/jdoe
88
89
  | "document", "readme", "api docs" | Documentation | `/docs` |
89
90
  | "design", "UI", "UX", "mockup" | Design | `/design` |
90
91
  | "deploy", "release", "production" | Deployment | `/deploy` |
92
+ | "report", "status report", "summary", "documentation update" | Reporting | `/report` |
91
93
 
92
94
  **If unclear → Ask: "Should I treat this as /cook (implement) or /fix (bug fix)?"**
93
95
 
@@ -176,6 +178,7 @@ for_each_phase:
176
178
  | scouter | `./reports/scouts/SCOUT-{feature}.md` |
177
179
  | designer | `./reports/designs/DESIGN-{feature}.md` |
178
180
  | planner | `./reports/plans/PLAN-{feature}.md` |
181
+ | reporter | `./reports/` (create/update per task) |
179
182
 
180
183
  **Rule**: Subsequent phases MUST read prior deliverables as IMMUTABLE CONSTRAINTS.
181
184
 
@@ -24,6 +24,10 @@
24
24
  | `/brainstorm X` | `/brainstorm:auto` | `~/.{TOOL}/skills/agent-assistant/commands/brainstorm.md` |
25
25
  | `/ask X` | `/ask:auto` | `~/.{TOOL}/skills/agent-assistant/commands/ask.md` |
26
26
  | `/code X` | `/code:auto` | `~/.{TOOL}/skills/agent-assistant/commands/code.md` |
27
+ | `/report X` | `/report:auto` | `~/.{TOOL}/skills/agent-assistant/commands/report.md` |
28
+ | `/report:fast X` | `/report:fast` | `~/.{TOOL}/skills/agent-assistant/commands/report/fast.md` |
29
+ | `/report:hard X` | `/report:hard` | `~/.{TOOL}/skills/agent-assistant/commands/report/hard.md` |
30
+ | `/report:focus X` | `/report:focus` | `~/.{TOOL}/skills/agent-assistant/commands/report/focus.md` |
27
31
 
28
32
  ---
29
33
 
@@ -51,6 +55,7 @@
51
55
  | DevOps | `devops-engineer` | `~/.{TOOL}/skills/agent-assistant/agents/devops-engineer.md` | support |
52
56
  | Business | `business-analyst` | `~/.{TOOL}/skills/agent-assistant/agents/business-analyst.md` | support |
53
57
  | Project | `project-manager` | `~/.{TOOL}/skills/agent-assistant/agents/project-manager.md` | support |
58
+ | Reporting | `reporter` | `~/.{TOOL}/skills/agent-assistant/agents/reporter.md` | support |
54
59
 
55
60
  ---
56
61
 
@@ -78,6 +83,7 @@
78
83
  | AI/ML agents | `backend-engineer` | `tech-lead` |
79
84
  | Penetration test | `security-engineer` | — |
80
85
  | Workflow automation | `devops-engineer` | `backend-engineer` |
86
+ | Reports, status, documentation updates | `reporter` | `docs-manager` |
81
87
 
82
88
  ---
83
89
 
@@ -104,6 +110,7 @@ researcher: "./reports/researchers/RESEARCH-{feature}.md"
104
110
  scouter: "./reports/scouts/SCOUT-{feature}.md"
105
111
  designer: "./reports/designs/DESIGN-{feature}.md"
106
112
  planner: "./reports/plans/PLAN-{feature}.md"
113
+ reporter: "./reports/ (create/update per task)"
107
114
  ```
108
115
 
109
116
  ---
@@ -194,3 +201,4 @@ anti_lazy: ❌ TIER 2 when TIER 1 available
194
201
  | "design", "UI", "UX", "mockup" | `/design` |
195
202
  | "deploy", "release", "production" | `/deploy` |
196
203
  | "brainstorm", "ideas", "explore" | `/brainstorm` |
204
+ | "report", "status report", "summary", "documentation update" | `/report` |