oh-my-agent 2.5.0 → 2.7.0
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 +19 -28
- package/bin/cli.js +297 -282
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,17 +27,17 @@ flowchart TD
|
|
|
27
27
|
direction TB
|
|
28
28
|
W0["/brainstorm"]
|
|
29
29
|
W1["/coordinate"]
|
|
30
|
-
W1b["/
|
|
30
|
+
W1b["/ultrawork"]
|
|
31
31
|
W2["/orchestrate"]
|
|
32
32
|
W3["/plan"]
|
|
33
33
|
W4["/review"]
|
|
34
34
|
W5["/debug"]
|
|
35
|
+
W6["/deepinit"]
|
|
35
36
|
end
|
|
36
37
|
|
|
37
38
|
subgraph Orchestration["Orchestration"]
|
|
38
39
|
direction TB
|
|
39
40
|
PM[pm-agent]
|
|
40
|
-
WF[workflow-guide]
|
|
41
41
|
ORC[orchestrator]
|
|
42
42
|
end
|
|
43
43
|
|
|
@@ -95,7 +95,7 @@ Claude Code has first-class native integration beyond symlinks:
|
|
|
95
95
|
- **`.claude/agents/`** — 7 subagent definitions spawned via Task tool (backend-impl, frontend-impl, mobile-impl, db-impl, qa-reviewer, debug-investigator, pm-planner)
|
|
96
96
|
- **Native loop patterns** — Review Loop, Issue Remediation Loop, and Phase Gate Loop using synchronous Task tool results instead of CLI polling
|
|
97
97
|
|
|
98
|
-
Domain skills (backend-agent, frontend-agent, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are native SKILL.md files that reference the
|
|
98
|
+
Domain skills (backend-agent, frontend-agent, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are native SKILL.md files that reference the corresponding `.agents/workflows/*.md` source of truth.
|
|
99
99
|
|
|
100
100
|
## The `.agents` Spec
|
|
101
101
|
|
|
@@ -116,7 +116,6 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
116
116
|
| Agent | Specialization | Triggers |
|
|
117
117
|
|-------|---------------|----------|
|
|
118
118
|
| **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
|
|
119
|
-
| **Workflow Guide** | Coordinates complex multi-agent projects | "multi-domain", "complex project" |
|
|
120
119
|
| **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
|
|
121
120
|
| **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
|
|
122
121
|
| **Backend Agent** | FastAPI, PostgreSQL, JWT authentication | "API", "database", "authentication" |
|
|
@@ -134,10 +133,16 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
134
133
|
### Prerequisites
|
|
135
134
|
|
|
136
135
|
- **AI IDE** (Antigravity, Claude Code, Codex, Gemini, etc.)
|
|
137
|
-
- **Bun** (for CLI and dashboards)
|
|
138
|
-
- **uv** (for Serena setup)
|
|
139
136
|
|
|
140
|
-
### Option 1:
|
|
137
|
+
### Option 1: One-Line Install (Recommended)
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
curl -fsSL https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.sh | bash
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Automatically detects and installs missing dependencies (bun, uv), then launches the interactive setup.
|
|
144
|
+
|
|
145
|
+
### Option 2: Manual Install
|
|
141
146
|
|
|
142
147
|
```bash
|
|
143
148
|
# Install bun if you don't have it:
|
|
@@ -160,7 +165,7 @@ Select your project type and skills will be installed to `.agents/skills/`, with
|
|
|
160
165
|
| 📱 Mobile | brainstorm, mobile, pm, qa, debug, commit |
|
|
161
166
|
| 🚀 DevOps | brainstorm, tf-infra, dev-workflow, pm, qa, debug, commit |
|
|
162
167
|
|
|
163
|
-
### Option
|
|
168
|
+
### Option 3: Global Installation (For Orchestrator)
|
|
164
169
|
|
|
165
170
|
To use the core tools globally or run the SubAgent Orchestrator:
|
|
166
171
|
|
|
@@ -177,34 +182,20 @@ You'll also need at least one CLI tool:
|
|
|
177
182
|
| Codex | `bun install --global @openai/codex` | `codex auth` |
|
|
178
183
|
| Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
|
|
179
184
|
|
|
180
|
-
### Option 3: Integrate into Existing Project
|
|
181
|
-
|
|
182
|
-
**Recommended (CLI):**
|
|
183
|
-
|
|
184
|
-
Run the following command in your project root to automatically install/update skills and workflows:
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
bunx oh-my-agent
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
> **Tip:** Run `bunx oh-my-agent doctor` after installation to verify everything is set up correctly (including global workflows).
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
185
|
### 2. Chat
|
|
195
186
|
|
|
196
|
-
**
|
|
187
|
+
**Complex project** (/coordinate workflow):
|
|
197
188
|
|
|
198
189
|
```
|
|
199
|
-
|
|
200
|
-
→
|
|
190
|
+
"Build a TODO app with user authentication"
|
|
191
|
+
→ /coordinate → PM Agent plans → agents spawned in Agent Manager
|
|
201
192
|
```
|
|
202
193
|
|
|
203
|
-
**
|
|
194
|
+
**Maximum deployment** (/ultrawork workflow):
|
|
204
195
|
|
|
205
196
|
```
|
|
206
|
-
"
|
|
207
|
-
→
|
|
197
|
+
"Refactor auth module, add API tests, and update docs"
|
|
198
|
+
→ /ultrawork → Independent tasks execute in parallel across agents
|
|
208
199
|
```
|
|
209
200
|
|
|
210
201
|
**Simple task** (single agent auto-activates):
|