@namch/agent-assistant 1.0.2 → 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.
- package/README.md +24 -9
- package/agents/reporter.md +177 -0
- package/code-assistants/antigravity-assistant/AntigravityGlobal.agent.md +3 -1
- package/code-assistants/antigravity-assistant/GEMINI.md +2 -0
- package/code-assistants/copilot-assistant/agent-assistant.agent.md +5 -0
- package/code-assistants/cursor-assistant/rules/agent-assistant.mdc +3 -1
- package/commands/code/focus.md +323 -0
- package/commands/code/hard.md +59 -0
- package/commands/code.md +13 -7
- package/commands/cook/focus.md +262 -0
- package/commands/cook/hard.md +59 -0
- package/commands/cook.md +13 -7
- package/commands/debug/focus.md +155 -0
- package/commands/debug/hard.md +53 -0
- package/commands/debug.md +9 -4
- package/commands/design/focus.md +267 -0
- package/commands/design/hard.md +53 -0
- package/commands/design.md +13 -7
- package/commands/fix/focus.md +175 -0
- package/commands/fix/hard.md +57 -0
- package/commands/fix.md +13 -7
- package/commands/plan/focus.md +190 -0
- package/commands/plan/hard.md +56 -0
- package/commands/plan.md +13 -7
- package/commands/report/fast.md +71 -0
- package/commands/report/focus.md +156 -0
- package/commands/report/hard.md +112 -0
- package/commands/report.md +89 -0
- package/commands/test/focus.md +165 -0
- package/commands/test/hard.md +53 -0
- package/commands/test.md +9 -4
- package/documents/business/business-features.md +1 -1
- package/documents/business/business-glossary.md +9 -8
- package/documents/business/business-prd.md +8 -8
- package/documents/knowledge-architecture.md +1 -1
- package/documents/knowledge-domain.md +5 -4
- package/documents/knowledge-overview.md +7 -6
- package/documents/knowledge-source-base.md +9 -9
- package/package.json +1 -1
- package/rules/AGENT-RULES.md +2 -1
- package/rules/BOOTSTRAP.md +3 -0
- package/rules/QUICK-REFERENCE.md +8 -0
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
```
|
|
10
10
|
agent-assistant/ # Project root
|
|
11
|
-
├── agents/ # 🤖
|
|
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/ # 📋
|
|
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
|
|
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
|
|
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
|
|
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,
|
|
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: #
|
|
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 |
|
|
548
|
-
| Command Files |
|
|
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
package/rules/AGENT-RULES.md
CHANGED
|
@@ -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
|
|
package/rules/BOOTSTRAP.md
CHANGED
|
@@ -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
|
|
package/rules/QUICK-REFERENCE.md
CHANGED
|
@@ -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` |
|