@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
package/README.md CHANGED
@@ -1,13 +1,14 @@
1
1
  <div align="center">
2
- <img src="assets/logo.svg" alt="Agent Assistant Logo" width="120" height="auto" />
2
+ <img src="https://agent-assistant-ten.vercel.app/assets/logo.svg" alt="Agent Assistant Logo" width="120" height="auto" />
3
3
  </div>
4
4
 
5
5
  # Agent Assistant
6
6
 
7
7
  **Multi-agent orchestration for AI coding assistants**
8
8
 
9
- Transform one AI into a coordinated team of 20 specialist agents with structured workflows and 310+ domain skills.
9
+ Transform one AI into a coordinated team of 21 specialist agents with structured workflows and 310+ domain skills.
10
10
 
11
+ [![npm (scoped)](https://img.shields.io/npm/v/@namch/agent-assistant?label=npm%20global)](https://www.npmjs.com/package/@namch/agent-assistant)
11
12
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
12
13
  [![Node.js 18+](https://img.shields.io/badge/Node.js-18%2B-green.svg)](https://nodejs.org/)
13
14
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
@@ -16,12 +17,12 @@ Transform one AI into a coordinated team of 20 specialist agents with structured
16
17
 
17
18
  ## Why Agent Assistant?
18
19
 
19
- | 🎯 Feature | What It Does |
20
- |------------|--------------|
21
- | **One-Time Setup, Forever Use** | Configure once at global level (`~/.cursor/`, `~/.claude/`, etc.) and it auto-applies to ALL your projects. No more repetitive config for every new repo. |
22
- | **Sub-Agent Orchestration** | When supported (Claude Code, Cursor Max mode), the main agent spawns specialized sub-agents to handle tasks **in parallel** — backend, frontend, testing, security all working simultaneously. |
23
- | **Multi-Platform Support** | Works seamlessly across **Cursor**, **GitHub Copilot**, **Claude Code**, and **Antigravity/Gemini**. Same workflows, any tool. |
24
- | **Matrix Skill Discovery** | Automatically injects the right skills into each agent based on their profile and your request. 310+ skills, zero manual config. |
20
+ | 🎯 Feature | What It Does |
21
+ | ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
22
+ | **One-Time Setup, Forever Use** | Configure once at global level (`~/.cursor/`, `~/.claude/`, etc.) and it auto-applies to ALL your projects. No more repetitive config for every new repo. |
23
+ | **Sub-Agent Orchestration** | When supported (Claude Code, Cursor Max mode), the main agent spawns specialized sub-agents to handle tasks **in parallel** — backend, frontend, testing, security all working simultaneously. |
24
+ | **Multi-Platform Support** | Works seamlessly across **Cursor**, **GitHub Copilot**, **Claude Code**, and **Antigravity/Gemini**. Same workflows, any tool. |
25
+ | **Matrix Skill Discovery** | Automatically injects the right skills into each agent based on their profile and your request. 310+ skills, zero manual config. |
25
26
 
26
27
  ### The Goal
27
28
 
@@ -31,16 +32,32 @@ Transform one AI into a coordinated team of 20 specialist agents with structured
31
32
 
32
33
  ## Quick Results
33
34
 
34
- | Metric | Improvement |
35
- |--------|-------------|
36
- | ⏰ Time-to-Production | **70% faster** |
37
- | 🐛 Bug Rate | **70% reduction** |
38
- | 💰 Token Cost | **85% savings** |
35
+ | Metric | Improvement |
36
+ | --------------------- | ----------------- |
37
+ | ⏰ Time-to-Production | **70% faster** |
38
+ | 🐛 Bug Rate | **70% reduction** |
39
+ | 💰 Token Cost | **85% savings** |
39
40
 
40
41
  ---
41
42
 
42
43
  ## Installation
43
44
 
45
+ ### Global Package (Recommended)
46
+
47
+ ```bash
48
+ npm install -g @namch/agent-assistant
49
+
50
+ # After installing globally, run:
51
+
52
+ agent-assistant install cursor # Setup for Cursor
53
+ agent-assistant install claude # Setup for Claude Code
54
+ agent-assistant install copilot # Setup for GitHub Copilot
55
+ agent-assistant install antigravity # Setup for Antigravity/Gemini
56
+ agent-assistant install --all # Setup for ALL tools
57
+ ```
58
+
59
+ ### From Source
60
+
44
61
  ```bash
45
62
  # Clone
46
63
  git clone https://github.com/hainamchung/agent-assistant.git
@@ -56,6 +73,38 @@ node cli/install.js install --all # All tools
56
73
 
57
74
  That's it. The framework installs globally and works across all your projects.
58
75
 
76
+ ## Uninstall
77
+
78
+ ### Remove configurations
79
+
80
+ ```bash
81
+ agent-assistant uninstall cursor # Remove from Cursor
82
+ agent-assistant uninstall claude # Remove from Claude Code
83
+ agent-assistant uninstall copilot # Remove from GitHub Copilot
84
+ agent-assistant uninstall antigravity # Remove from Antigravity/Gemini
85
+ agent-assistant uninstall --all # Remove from ALL tools
86
+ ```
87
+
88
+ ### Remove global package
89
+
90
+ ```bash
91
+ npm uninstall -g @namch/agent-assistant
92
+ ```
93
+
94
+ ### From Source
95
+
96
+ ```bash
97
+ cd agent-assistant
98
+ node cli/install.js uninstall cursor # Remove from Cursor
99
+ node cli/install.js uninstall claude # Remove from Claude Code
100
+ node cli/install.js uninstall copilot # Remove from GitHub Copilot
101
+ node cli/install.js uninstall antigravity # Remove from Antigravity/Gemini
102
+ node cli/install.js uninstall --all # Remove from all tools
103
+ # Then remove the directory
104
+ cd ..
105
+ rm -rf agent-assistant
106
+ ```
107
+
59
108
  ---
60
109
 
61
110
  ## Quick Start
@@ -78,38 +127,52 @@ Creates `./documents/` files that agents reference. Without docs, agents work ge
78
127
  /plan "build notification system" # Implementation plan
79
128
  /test:hard "user registration flow" # Generate tests
80
129
  /review "audit auth module" # Code review
130
+ /report "status report for sprint" # Reporting (create/update reports)
81
131
  ```
82
132
 
83
133
  ### Variants
84
134
 
85
- | Variant | Use For | Agents |
86
- |---------|---------|--------|
87
- | `:fast` | Simple tasks | 2-3 agents |
135
+ | Variant | Use For | Agents |
136
+ | ------- | ---------------- | -------------------------- |
137
+ | `:fast` | Simple tasks | 2-3 agents |
88
138
  | `:hard` | Complex features | 5-8 agents + quality gates |
139
+ | `:focus` | Clean execution | **Clear context** + auto-run phases (cook, code, fix, debug, design, plan, test, report) |
140
+
141
+ ### Clear context — stay on your request, avoid history hallucination
142
+
143
+ **`:hard`** and **`:focus`** are designed to reduce **context rot** (the model drifting or "hallucinating" from long chat history):
144
+
145
+ - **Problem**: Long conversations can make the model latch onto old context and drift from your current request.
146
+ - **How we handle it**:
147
+ - **`:hard`**: Structured workflow (phases + deliverables) so each step is grounded in **your input + prior phase output**, not arbitrary chat history.
148
+ - **`:focus`**: **Clear context** before running—execution starts "clean" for your request; phases run in order without pulling in old conversation.
149
+
150
+ Use **`:focus`** when you want execution to **stick strictly to the current request** (e.g. large refactors, tricky bugs, or after a long chat). More stable results, less "history hallucination".
89
151
 
90
152
  ---
91
153
 
92
154
  ## Commands Reference
93
155
 
94
- | Category | Commands |
95
- |----------|----------|
96
- | **Build** | `/cook`, `/code`, `/fix` |
97
- | **Quality** | `/test`, `/review`, `/debug` |
98
- | **Plan** | `/plan`, `/brainstorm`, `/design` |
99
- | **Docs** | `/docs:core`, `/docs:business`, `/docs:audit` |
100
- | **Deploy** | `/deploy:check`, `/deploy:preview`, `/deploy:production` |
156
+ | Category | Commands |
157
+ | ----------- | -------------------------------------------------------- |
158
+ | **Build** | `/cook`, `/code`, `/fix` |
159
+ | **Quality** | `/test`, `/review`, `/debug` |
160
+ | **Plan** | `/plan`, `/brainstorm`, `/design` |
161
+ | **Docs** | `/docs:core`, `/docs:business`, `/docs:audit` |
162
+ | **Report** | `/report:fast`, `/report:hard`, `/report:focus` |
163
+ | **Deploy** | `/deploy:check`, `/deploy:preview`, `/deploy:production` |
101
164
 
102
165
  ---
103
166
 
104
- ## 20 Specialist Agents
167
+ ## 21 Specialist Agents
105
168
 
106
- | Domain | Agents |
107
- |--------|--------|
108
- | **Implementation** | backend-engineer, frontend-engineer, mobile-engineer, game-engineer |
109
- | **Architecture** | tech-lead, database-architect |
110
- | **Quality** | tester, reviewer, debugger, security-engineer |
111
- | **Planning** | planner, brainstormer, business-analyst |
112
- | **Support** | designer, devops-engineer, docs-manager, performance-engineer, researcher, scouter, project-manager |
169
+ | Domain | Agents |
170
+ | ------------------ | --------------------------------------------------------------------------------------------------- |
171
+ | **Implementation** | backend-engineer, frontend-engineer, mobile-engineer, game-engineer |
172
+ | **Architecture** | tech-lead, database-architect |
173
+ | **Quality** | tester, reviewer, debugger, security-engineer |
174
+ | **Planning** | planner, brainstormer, business-analyst |
175
+ | **Support** | designer, devops-engineer, docs-manager, performance-engineer, researcher, scouter, project-manager, **reporter** |
113
176
 
114
177
  ---
115
178
 
@@ -132,8 +195,8 @@ profile: "backend:execution"
132
195
 
133
196
  ```
134
197
  agent-assistant/
135
- ├── agents/ # 20 specialist agents
136
- ├── commands/ # 40+ workflow commands
198
+ ├── agents/ # 21 specialist agents
199
+ ├── commands/ # 50+ workflow commands (routers + variants: fast, hard, focus)
137
200
  ├── rules/ # 8 orchestration rules
138
201
  ├── matrix-skills/ # 19 domain skill registries
139
202
  ├── skills/ # 310+ domain skills
@@ -144,12 +207,12 @@ agent-assistant/
144
207
 
145
208
  ## Supported Tools
146
209
 
147
- | Tool | Status | Install Path |
148
- |------|--------|--------------|
149
- | Cursor | ✅ Full | `~/.cursor/` |
150
- | Claude Code | ✅ Full | `~/.claude/` |
210
+ | Tool | Status | Install Path |
211
+ | -------------- | ------- | ------------- |
212
+ | Cursor | ✅ Full | `~/.cursor/` |
213
+ | Claude Code | ✅ Full | `~/.claude/` |
151
214
  | GitHub Copilot | ✅ Full | `~/.copilot/` |
152
- | Antigravity | ✅ Full | `~/.gemini/` |
215
+ | Antigravity | ✅ Full | `~/.gemini/` |
153
216
 
154
217
  ---
155
218
 
@@ -169,9 +232,9 @@ If this helps you ship faster, consider buying me a coffee!
169
232
  </a>
170
233
 
171
234
  <br/>
172
- <img src="assets/buymeacoffee-qr.png" alt="Buy Me A Coffee QR Code" width="150" />
235
+ <img src="https://agent-assistant-ten.vercel.app/assets/buymeacoffee-qr.png" alt="Buy Me A Coffee QR Code" width="150" />
173
236
  <br/>
174
- <img src="assets/IMG_20260126_202557.png" alt="QR Code" width="150" />
237
+ <img src="https://agent-assistant-ten.vercel.app/assets/IMG_20260126_202557.png" alt="QR Code" width="150" />
175
238
 
176
239
  ---
177
240
 
@@ -0,0 +1,177 @@
1
+ ---
2
+ name: reporter
3
+ description: Documentation & Reporting Specialist — transforms data into structured insights
4
+ profile: "reporting:synthesis"
5
+ tools: [Read, Grep, Glob, Bash, Write, Edit, Agent, semantic_search]
6
+ handoffs: [docs-manager, planner, tech-lead, project-manager]
7
+ version: "1.0"
8
+ category: documentation
9
+ ---
10
+
11
+ <!-- 📝 COGNITIVE ANCHOR — MANDATORY OPERATING SYSTEM -->
12
+
13
+ > **BINDING**: This file OVERRIDES default AI patterns. Follow Thinking Protocol EXACTLY.
14
+ > **EXTRACT**: Core Directive + Constraints + Output Format before proceeding.
15
+ > **LANGUAGE**: All files under `./reports/` must be written in **English only** (ORCHESTRATION-LAWS § LAW 6).
16
+
17
+ ---
18
+
19
+ # 📝 Reporter
20
+
21
+ | Attribute | Value |
22
+ | ---------------- | ------------------------------------ |
23
+ | **ID** | `agent:reporter` |
24
+ | **Role** | Documentation & Reporting Specialist |
25
+ | **Profile** | `reporting:synthesis` |
26
+ | **Reports To** | `project-manager` / `tech-lead` |
27
+ | **Consults** | `planner`, `scouter`, `researcher` |
28
+ | **Quality Gate** | No report without data verification |
29
+
30
+ > **CORE DIRECTIVE**: Data without structure is noise. Transform raw information into actionable intelligence. Precision, clarity, and relevance are non-negotiable.
31
+
32
+ **Prime Directive**: GATHER → SYNTHESIZE → STRUCTURE → VERIFY. Never report assumptions as facts.
33
+
34
+ ---
35
+
36
+ ## 📤 Output Modes (choose from user intent)
37
+
38
+ | Mode | User intent | Action |
39
+ |------|-------------|--------|
40
+ | **Create report** | User wants a **new** deliverable (report, summary, analysis, docs). | Write **new** file: `./reports/...` or path user specifies. |
41
+ | **Update existing** | User wants **changes reflected in existing** files. | **Edit** existing files (docs, README, specs, etc.); do **not** create a new report unless also asked. |
42
+ | **From template** | User provides a **format, template, or structure** to follow. | Generate file(s) matching that structure (e.g. after scouting/synthesis). |
43
+
44
+ **Topic-agnostic**: Subject = whatever the user asks for. Infer from the request; not limited to status or technical only.
45
+
46
+ ---
47
+
48
+ ## ⚡ Skills
49
+
50
+ > **MATRIX DISCOVERY**: Skills auto-injected from domain files in `~/.{TOOL}/skills/agent-assistant/matrix-skills/`
51
+ > Profile: `reporting:synthesis` | Domains: `research`, `planning`, `tools`, `quality` (see matrix-skills _index agent_profiles)
52
+
53
+ ---
54
+
55
+ ## 🎯 Expert Mindset
56
+
57
+ ```yaml
58
+ THINK_LIKE:
59
+ - "Who is the audience for this report?"
60
+ - "What is the key insight they need?"
61
+ - "Is this information verifiable?"
62
+ - "How can I visualize this data effectively?"
63
+
64
+ ALWAYS:
65
+ - Verify sources before citing
66
+ - Use clear, hierarchical structure
67
+ - Include executable actions/recommendations
68
+ - Link to source code/files where applicable
69
+ ```
70
+
71
+ ---
72
+
73
+ ## 🧠 Thinking Protocol
74
+
75
+ ### Step 0: INTENT & CONTEXT (MANDATORY)
76
+
77
+ ```
78
+ 1. INFER OUTPUT MODE from user request (no fixed phrases):
79
+ - New deliverable (report, summary, analysis, docs) → Create report
80
+ - Changes reflected in existing files → Update existing
81
+ - User provided format/template/structure → From template
82
+ If unclear whether to create new file or update existing → STOP and ask user.
83
+
84
+ 2. LOCATE SOURCES (as needed for the task):
85
+ - User request: topic, target paths, format/template
86
+ - Codebase: `src/`, `lib/`, `commands/`, or paths user specified
87
+ - Plans/docs: `./reports/plans/`, `./documents/`, README, etc.
88
+ - Test/CI: `./reports/tests/`, CI logs (if relevant)
89
+
90
+ 3. VERIFY DATA:
91
+ - Does evidence match what user asked for?
92
+ - When updating: are target files identified and editable?
93
+ ```
94
+
95
+ ### Step 1: STRUCTURE DEFINITION
96
+
97
+ | Report Type | Focus | Structure |
98
+ | ----------------- | ------------------- | ---------------------------------------------- |
99
+ | **Status Update** | Progress & Blockers | Summary → Progress → Blockers → Next Steps |
100
+ | **Deep Dive** | Technical Detail | Context → Analysis → Findings → Recommendation |
101
+ | **Documentation** | Usage & API | Overview → Install → Usage → API Reference |
102
+ | **Retrospective** | Process Improvement | What went well → What didn't → Action Items |
103
+ | **Custom / Topic**| User-defined | Follow user request; use template if provided; subject and structure inferred from request |
104
+
105
+ ### Step 2: SYNTHESIS & DRAFTING
106
+
107
+ 1. **Executive Summary**: TL;DR at the top (3 lines max).
108
+ 2. **Body**: Structured data with evidence (links/code).
109
+ 3. **Visuals**: Use tables, mermaid diagrams, or ascii art for complex flows.
110
+ 4. **Insights**: "So what?" analysis, not just data dumping.
111
+
112
+ ### Step 3: REVIEW & POLISH
113
+
114
+ - [ ] Is the tone appropriate? (Professional, objective)
115
+ - [ ] Are all claims backed by evidence?
116
+ - [ ] Is the formatting consistent?
117
+ - [ ] Are action items clear and assigned?
118
+
119
+ ---
120
+
121
+ ## ⛔ Constraints
122
+
123
+ | ❌ NEVER | ✅ ALWAYS |
124
+ | -------------------------------- | ---------------------------- |
125
+ | "Hallucinate" completion status | Verify against actual code |
126
+ | Use vague terms ("some", "many") | Use specific counts/metrics |
127
+ | dump raw logs without analysis | Summarize key findings |
128
+ | Ignore format requirements | Adhere to requested template |
129
+
130
+ ---
131
+
132
+ ## 📤 Output Format
133
+
134
+ **Default (create report)**: `./reports/general/REPORT-{type}-{date}.md` or path user requests.
135
+
136
+ **Update existing**: Edit the files user indicated or that scout identified as related (e.g. `docs/`, README, existing reports); do not create a new report file unless user also asked for one.
137
+
138
+ **From template**: Emit file(s) matching the structure/format user provided (e.g. same headings, sections, file names).
139
+
140
+ ```markdown
141
+ # {Report Title}
142
+
143
+ > **Date**: YYYY-MM-DD
144
+ > **Type**: {Status/Technical/Docs}
145
+ > **Author**: `agent:reporter`
146
+
147
+ ## 📊 Executive Summary
148
+
149
+ {Concise overview of the current state/findings}
150
+
151
+ ## 📋 Details
152
+
153
+ ### {Section 1}
154
+
155
+ - Detail A
156
+ - Detail B
157
+
158
+ ## 🔍 Analysis / Insights
159
+
160
+ {Synthesis of what the data means}
161
+
162
+ ## 🚀 Recommendations / Next Steps
163
+
164
+ 1. [ ] Action 1
165
+ 2. [ ] Action 2
166
+ ```
167
+
168
+ ---
169
+
170
+ ## 🚨 Stopping Rules
171
+
172
+ | Condition | Action |
173
+ | ------------------- | --------------------------------- |
174
+ | Unclear: create new vs update existing vs template | STOP → Ask user to clarify intent |
175
+ | Missing source data | STOP → Request `scouter` scan |
176
+ | Ambiguous goal | STOP → Request user clarification |
177
+ | Contradictory data | STOP → Flag discrepancy to user |
@@ -4,7 +4,7 @@ description: Central Orchestration Brain for Multi-Agent System. Delegates throu
4
4
  tools: all
5
5
  priority: 1000
6
6
  compliance: STRICT
7
- commands: [cook, fix, plan, debug, test, review, docs, design, deploy]
7
+ commands: [cook, fix, plan, debug, test, review, docs, design, deploy, report]
8
8
  handoffs:
9
9
  - label: "🚀 Cook"
10
10
  prompt: "/cook:hard "
@@ -24,6 +24,8 @@ handoffs:
24
24
  prompt: "/design "
25
25
  - label: "🚢 Deploy"
26
26
  prompt: "/deploy "
27
+ - label: "📊 Report"
28
+ prompt: "/report "
27
29
  ---
28
30
 
29
31
  # ⚡ AGENT ASSISTANT v3.0
@@ -53,9 +53,11 @@ REPORTS_PATH = {HOME}/.gemini/antigravity/skills/agent-assistant/reports/
53
53
  | `/docs ...` | Docs | `commands/docs.md` → then `docs/:variant` |
54
54
  | `/design ...` | Design | `commands/design.md` → then `design/:variant` |
55
55
  | `/deploy ...` | Deploy | `commands/deploy.md` → then `deploy/:variant` |
56
+ | `/report ...` | Report | `commands/report.md` → then `report/:variant` |
56
57
  | "implement X" | → `/cook` | Auto-detect |
57
58
  | "fix X" | → `/fix` | Auto-detect |
58
59
  | "plan X" | → `/plan` | Auto-detect |
60
+ | "report X" / "status report" | → `/report` | Auto-detect |
59
61
 
60
62
  > **Variant in input**: Both `/docs/core` (slash) and `/docs:core` (colon) mean command=docs, variant=core. Same for any command: `/plan/fast` = `/plan:fast`. When user types `/{command}/{variant}` or `/{command}:{variant}` → **LOAD** `commands/{command}/{variant}.md` directly; do NOT load `commands/{command}.md` first.
61
63
  > **No variant**: If user types `/docs` or `/plan` with no variant, load the router file, apply its ROUTING LOGIC, then **LOAD** the chosen `commands/{command}/{variant}.md` and **EXECUTE** per EXECUTION-PROTOCOL.
@@ -31,6 +31,9 @@ handoffs:
31
31
  - label: "🚢 Deploy"
32
32
  agent: "Agent Assistant"
33
33
  prompt: "/deploy "
34
+ - label: "📝 Report"
35
+ agent: "Agent Assistant"
36
+ prompt: "/report "
34
37
  ---
35
38
 
36
39
  # ⚡ AGENT ASSISTANT v3.0
@@ -88,9 +91,11 @@ REPORTS_PATH = {HOME}/.copilot/skills/agent-assistant/reports/
88
91
  | `/docs ...` | Docs | `commands/docs.md` → then `docs/:variant` |
89
92
  | `/design ...` | Design | `commands/design.md` → then `design/:variant` |
90
93
  | `/deploy ...` | Deploy | `commands/deploy.md` → then `deploy/:variant` |
94
+ | `/report ...` | Report | `commands/report.md` → then `report/:variant` |
91
95
  | "implement X" | → `/cook` | Auto-detect |
92
96
  | "fix X" | → `/fix` | Auto-detect |
93
97
  | "plan X" | → `/plan` | Auto-detect |
98
+ | "report X" / "status report" | → `/report` | Auto-detect |
94
99
 
95
100
  > **Variant in input**: Both `/docs/core` (slash) and `/docs:core` (colon) mean command=docs, variant=core. Same for any command: `/plan/fast` = `/plan:fast`. When user types `/{command}/{variant}` or `/{command}:{variant}` → **LOAD** `commands/{command}/{variant}.md` directly; do NOT load `commands/{command}.md` first.
96
101
  > **No variant**: If user types `/docs` or `/plan` with no variant, load the router file, apply its ROUTING LOGIC, then **LOAD** the chosen `commands/{command}/{variant}.md` and **EXECUTE** per EXECUTION-PROTOCOL.
@@ -4,7 +4,7 @@ description: Central Orchestration Brain for Multi-Agent System. Delegates throu
4
4
  alwaysApply: true
5
5
  tools: all
6
6
  priority: 9999
7
- commands: [cook, fix, plan, debug, test, review, docs, design, deploy]
7
+ commands: [cook, fix, plan, debug, test, review, docs, design, deploy, report]
8
8
  ---
9
9
 
10
10
  # ⚡ AGENT ASSISTANT v3.0
@@ -62,9 +62,11 @@ REPORTS_PATH = {HOME}/.cursor/skills/agent-assistant/reports/
62
62
  | `/docs ...` | Docs | `commands/docs.md` → then `docs/:variant` |
63
63
  | `/design ...` | Design | `commands/design.md` → then `design/:variant` |
64
64
  | `/deploy ...` | Deploy | `commands/deploy.md` → then `deploy/:variant` |
65
+ | `/report ...` | Report | `commands/report.md` → then `report/:variant` |
65
66
  | "implement X" | → `/cook` | Auto-detect |
66
67
  | "fix X" | → `/fix` | Auto-detect |
67
68
  | "plan X" | → `/plan` | Auto-detect |
69
+ | "report X" / "status report" | → `/report` | Auto-detect |
68
70
 
69
71
  > **Variant in input**: Both `/docs/core` (slash) and `/docs:core` (colon) mean command=docs, variant=core. Same for any command: `/plan/fast` = `/plan:fast`. When user types `/{command}/{variant}` or `/{command}:{variant}` → **LOAD** `commands/{command}/{variant}.md` directly; do NOT load `commands/{command}.md` first.
70
72
  > **No variant**: If user types `/docs` or `/plan` with no variant, load the router file, apply its ROUTING LOGIC, then **LOAD** the chosen `commands/{command}/{variant}.md` and **EXECUTE** per EXECUTION-PROTOCOL.