@namch/agent-assistant 1.0.1 → 1.0.2
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 +81 -33
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,12 +16,12 @@ Transform one AI into a coordinated team of 20 specialist agents with structured
|
|
|
16
16
|
|
|
17
17
|
## Why Agent Assistant?
|
|
18
18
|
|
|
19
|
-
| 🎯 Feature
|
|
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**
|
|
23
|
-
| **Multi-Platform Support**
|
|
24
|
-
| **Matrix Skill Discovery**
|
|
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. |
|
|
25
25
|
|
|
26
26
|
### The Goal
|
|
27
27
|
|
|
@@ -31,16 +31,32 @@ Transform one AI into a coordinated team of 20 specialist agents with structured
|
|
|
31
31
|
|
|
32
32
|
## Quick Results
|
|
33
33
|
|
|
34
|
-
| Metric
|
|
35
|
-
|
|
36
|
-
| ⏰ Time-to-Production | **70% faster**
|
|
37
|
-
| 🐛 Bug Rate
|
|
38
|
-
| 💰 Token Cost
|
|
34
|
+
| Metric | Improvement |
|
|
35
|
+
| --------------------- | ----------------- |
|
|
36
|
+
| ⏰ Time-to-Production | **70% faster** |
|
|
37
|
+
| 🐛 Bug Rate | **70% reduction** |
|
|
38
|
+
| 💰 Token Cost | **85% savings** |
|
|
39
39
|
|
|
40
40
|
---
|
|
41
41
|
|
|
42
42
|
## Installation
|
|
43
43
|
|
|
44
|
+
### Global Package (Recommended)
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install -g @namch/agent-assistant
|
|
48
|
+
|
|
49
|
+
# After installing globally, run:
|
|
50
|
+
|
|
51
|
+
agent-assistant install cursor # Setup for Cursor
|
|
52
|
+
agent-assistant install claude # Setup for Claude Code
|
|
53
|
+
agent-assistant install copilot # Setup for GitHub Copilot
|
|
54
|
+
agent-assistant install antigravity # Setup for Antigravity/Gemini
|
|
55
|
+
agent-assistant install --all # Setup for ALL tools
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### From Source
|
|
59
|
+
|
|
44
60
|
```bash
|
|
45
61
|
# Clone
|
|
46
62
|
git clone https://github.com/hainamchung/agent-assistant.git
|
|
@@ -56,6 +72,38 @@ node cli/install.js install --all # All tools
|
|
|
56
72
|
|
|
57
73
|
That's it. The framework installs globally and works across all your projects.
|
|
58
74
|
|
|
75
|
+
## Uninstall
|
|
76
|
+
|
|
77
|
+
### Remove configurations
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
agent-assistant uninstall cursor # Remove from Cursor
|
|
81
|
+
agent-assistant uninstall claude # Remove from Claude Code
|
|
82
|
+
agent-assistant uninstall copilot # Remove from GitHub Copilot
|
|
83
|
+
agent-assistant uninstall antigravity # Remove from Antigravity/Gemini
|
|
84
|
+
agent-assistant uninstall --all # Remove from ALL tools
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Remove global package
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npm uninstall -g @namch/agent-assistant
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### From Source
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
cd agent-assistant
|
|
97
|
+
node cli/install.js uninstall cursor # Remove from Cursor
|
|
98
|
+
node cli/install.js uninstall claude # Remove from Claude Code
|
|
99
|
+
node cli/install.js uninstall copilot # Remove from GitHub Copilot
|
|
100
|
+
node cli/install.js uninstall antigravity # Remove from Antigravity/Gemini
|
|
101
|
+
node cli/install.js uninstall --all # Remove from all tools
|
|
102
|
+
# Then remove the directory
|
|
103
|
+
cd ..
|
|
104
|
+
rm -rf agent-assistant
|
|
105
|
+
```
|
|
106
|
+
|
|
59
107
|
---
|
|
60
108
|
|
|
61
109
|
## Quick Start
|
|
@@ -82,34 +130,34 @@ Creates `./documents/` files that agents reference. Without docs, agents work ge
|
|
|
82
130
|
|
|
83
131
|
### Variants
|
|
84
132
|
|
|
85
|
-
| Variant | Use For
|
|
86
|
-
|
|
87
|
-
| `:fast` | Simple tasks
|
|
133
|
+
| Variant | Use For | Agents |
|
|
134
|
+
| ------- | ---------------- | -------------------------- |
|
|
135
|
+
| `:fast` | Simple tasks | 2-3 agents |
|
|
88
136
|
| `:hard` | Complex features | 5-8 agents + quality gates |
|
|
89
137
|
|
|
90
138
|
---
|
|
91
139
|
|
|
92
140
|
## Commands Reference
|
|
93
141
|
|
|
94
|
-
| Category
|
|
95
|
-
|
|
96
|
-
| **Build**
|
|
97
|
-
| **Quality** | `/test`, `/review`, `/debug`
|
|
98
|
-
| **Plan**
|
|
99
|
-
| **Docs**
|
|
100
|
-
| **Deploy**
|
|
142
|
+
| Category | Commands |
|
|
143
|
+
| ----------- | -------------------------------------------------------- |
|
|
144
|
+
| **Build** | `/cook`, `/code`, `/fix` |
|
|
145
|
+
| **Quality** | `/test`, `/review`, `/debug` |
|
|
146
|
+
| **Plan** | `/plan`, `/brainstorm`, `/design` |
|
|
147
|
+
| **Docs** | `/docs:core`, `/docs:business`, `/docs:audit` |
|
|
148
|
+
| **Deploy** | `/deploy:check`, `/deploy:preview`, `/deploy:production` |
|
|
101
149
|
|
|
102
150
|
---
|
|
103
151
|
|
|
104
152
|
## 20 Specialist Agents
|
|
105
153
|
|
|
106
|
-
| Domain
|
|
107
|
-
|
|
108
|
-
| **Implementation** | backend-engineer, frontend-engineer, mobile-engineer, game-engineer
|
|
109
|
-
| **Architecture**
|
|
110
|
-
| **Quality**
|
|
111
|
-
| **Planning**
|
|
112
|
-
| **Support**
|
|
154
|
+
| Domain | Agents |
|
|
155
|
+
| ------------------ | --------------------------------------------------------------------------------------------------- |
|
|
156
|
+
| **Implementation** | backend-engineer, frontend-engineer, mobile-engineer, game-engineer |
|
|
157
|
+
| **Architecture** | tech-lead, database-architect |
|
|
158
|
+
| **Quality** | tester, reviewer, debugger, security-engineer |
|
|
159
|
+
| **Planning** | planner, brainstormer, business-analyst |
|
|
160
|
+
| **Support** | designer, devops-engineer, docs-manager, performance-engineer, researcher, scouter, project-manager |
|
|
113
161
|
|
|
114
162
|
---
|
|
115
163
|
|
|
@@ -144,12 +192,12 @@ agent-assistant/
|
|
|
144
192
|
|
|
145
193
|
## Supported Tools
|
|
146
194
|
|
|
147
|
-
| Tool
|
|
148
|
-
|
|
149
|
-
| Cursor
|
|
150
|
-
| Claude Code
|
|
195
|
+
| Tool | Status | Install Path |
|
|
196
|
+
| -------------- | ------- | ------------- |
|
|
197
|
+
| Cursor | ✅ Full | `~/.cursor/` |
|
|
198
|
+
| Claude Code | ✅ Full | `~/.claude/` |
|
|
151
199
|
| GitHub Copilot | ✅ Full | `~/.copilot/` |
|
|
152
|
-
| Antigravity
|
|
200
|
+
| Antigravity | ✅ Full | `~/.gemini/` |
|
|
153
201
|
|
|
154
202
|
---
|
|
155
203
|
|
package/package.json
CHANGED