@namch/agent-assistant 1.0.2 → 1.0.4

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 (43) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/README.md +24 -9
  3. package/agents/reporter.md +177 -0
  4. package/code-assistants/antigravity-assistant/AntigravityGlobal.agent.md +3 -1
  5. package/code-assistants/antigravity-assistant/GEMINI.md +2 -0
  6. package/code-assistants/copilot-assistant/agent-assistant.agent.md +5 -0
  7. package/code-assistants/cursor-assistant/rules/agent-assistant.mdc +3 -1
  8. package/commands/code/focus.md +343 -0
  9. package/commands/code/hard.md +79 -0
  10. package/commands/code.md +16 -7
  11. package/commands/cook/focus.md +262 -0
  12. package/commands/cook/hard.md +59 -0
  13. package/commands/cook.md +13 -7
  14. package/commands/debug/focus.md +155 -0
  15. package/commands/debug/hard.md +53 -0
  16. package/commands/debug.md +9 -4
  17. package/commands/design/focus.md +267 -0
  18. package/commands/design/hard.md +53 -0
  19. package/commands/design.md +13 -7
  20. package/commands/fix/focus.md +175 -0
  21. package/commands/fix/hard.md +57 -0
  22. package/commands/fix.md +13 -7
  23. package/commands/plan/focus.md +190 -0
  24. package/commands/plan/hard.md +56 -0
  25. package/commands/plan.md +13 -7
  26. package/commands/report/fast.md +71 -0
  27. package/commands/report/focus.md +156 -0
  28. package/commands/report/hard.md +112 -0
  29. package/commands/report.md +89 -0
  30. package/commands/test/focus.md +165 -0
  31. package/commands/test/hard.md +53 -0
  32. package/commands/test.md +9 -4
  33. package/documents/business/business-features.md +1 -1
  34. package/documents/business/business-glossary.md +9 -8
  35. package/documents/business/business-prd.md +8 -8
  36. package/documents/knowledge-architecture.md +1 -1
  37. package/documents/knowledge-domain.md +5 -4
  38. package/documents/knowledge-overview.md +7 -6
  39. package/documents/knowledge-source-base.md +9 -9
  40. package/package.json +4 -2
  41. package/rules/AGENT-RULES.md +2 -1
  42. package/rules/BOOTSTRAP.md +3 -0
  43. package/rules/QUICK-REFERENCE.md +8 -0
@@ -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` |