oh-my-agent 2.11.3 → 3.0.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 +20 -20
- package/bin/cli.js +267 -266
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -37,29 +37,29 @@ flowchart TD
|
|
|
37
37
|
|
|
38
38
|
subgraph Orchestration["Orchestration"]
|
|
39
39
|
direction TB
|
|
40
|
-
PM[pm
|
|
41
|
-
ORC[orchestrator]
|
|
40
|
+
PM[oma-pm]
|
|
41
|
+
ORC[oma-orchestrator]
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
subgraph Domain["Domain Agents"]
|
|
45
45
|
direction TB
|
|
46
|
-
FE[frontend
|
|
47
|
-
BE[backend
|
|
48
|
-
DB[db
|
|
49
|
-
MB[mobile
|
|
50
|
-
TF[tf-infra
|
|
46
|
+
FE[oma-frontend]
|
|
47
|
+
BE[oma-backend]
|
|
48
|
+
DB[oma-db]
|
|
49
|
+
MB[oma-mobile]
|
|
50
|
+
TF[oma-tf-infra]
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
subgraph Quality["Quality"]
|
|
54
54
|
direction TB
|
|
55
|
-
QA[qa
|
|
56
|
-
DBG[debug
|
|
55
|
+
QA[oma-qa]
|
|
56
|
+
DBG[oma-debug]
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
Workflows --> Orchestration
|
|
60
60
|
Orchestration --> Domain
|
|
61
61
|
Domain --> Quality
|
|
62
|
-
Quality --> CMT([commit])
|
|
62
|
+
Quality --> CMT([oma-commit])
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
## Why Different
|
|
@@ -92,10 +92,10 @@ Claude Code has first-class native integration beyond symlinks:
|
|
|
92
92
|
|
|
93
93
|
- **`CLAUDE.md`** — project identity, architecture, and rules (auto-loaded by Claude Code)
|
|
94
94
|
- **`.claude/skills/`** — 12 workflow skills mapped from `.agents/workflows/` (e.g., `/orchestrate`, `/coordinate`, `/ultrawork`)
|
|
95
|
-
- **`.claude/agents/`** — 7 subagent definitions spawned via Task tool (backend-
|
|
95
|
+
- **`.claude/agents/`** — 7 subagent definitions spawned via Task tool (backend-engineer, frontend-engineer, mobile-engineer, db-engineer, 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
|
|
98
|
+
Domain skills (oma-backend, oma-frontend, 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
|
|
|
@@ -115,7 +115,7 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
115
115
|
|
|
116
116
|
| Agent | Specialization | Triggers |
|
|
117
117
|
|-------|---------------|----------|
|
|
118
|
-
| **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
|
|
118
|
+
| **Brainstorm** | Design-first ideation before planning | "oma-brainstorm", "ideate", "explore idea" |
|
|
119
119
|
| **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
|
|
120
120
|
| **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
|
|
121
121
|
| **Backend Agent** | FastAPI, PostgreSQL, JWT authentication | "API", "database", "authentication" |
|
|
@@ -126,7 +126,7 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
126
126
|
| **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
|
|
127
127
|
| **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
|
|
128
128
|
| **Orchestrator** | CLI-based parallel agent execution with Serena Memory | "spawn agent", "parallel execution" |
|
|
129
|
-
| **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
|
|
129
|
+
| **Commit** | Conventional Commits with project-specific rules | "oma-commit", "save changes" |
|
|
130
130
|
|
|
131
131
|
## Quick Start
|
|
132
132
|
|
|
@@ -159,11 +159,11 @@ Select your project type and skills will be installed to `.agents/skills/`, with
|
|
|
159
159
|
| Preset | Skills |
|
|
160
160
|
|--------|--------|
|
|
161
161
|
| ✨ All | Everything |
|
|
162
|
-
| 🌐 Fullstack | brainstorm, frontend, backend, db, pm, qa, debug, commit |
|
|
163
|
-
| 🎨 Frontend | brainstorm, frontend, pm, qa, debug, commit |
|
|
164
|
-
| ⚙️ Backend | brainstorm, backend, db, pm, qa, debug, commit |
|
|
165
|
-
| 📱 Mobile | brainstorm, mobile, pm, qa, debug, commit |
|
|
166
|
-
| 🚀 DevOps | brainstorm, tf-infra, dev-workflow, pm, qa, debug, commit |
|
|
162
|
+
| 🌐 Fullstack | oma-brainstorm, frontend, backend, db, pm, qa, debug, oma-commit |
|
|
163
|
+
| 🎨 Frontend | oma-brainstorm, frontend, pm, qa, debug, oma-commit |
|
|
164
|
+
| ⚙️ Backend | oma-brainstorm, backend, db, pm, qa, debug, oma-commit |
|
|
165
|
+
| 📱 Mobile | oma-brainstorm, mobile, pm, qa, debug, oma-commit |
|
|
166
|
+
| 🚀 DevOps | oma-brainstorm, tf-infra, oma-dev-workflow, pm, qa, debug, oma-commit |
|
|
167
167
|
|
|
168
168
|
### Option 3: Global Installation (For Orchestrator)
|
|
169
169
|
|
|
@@ -202,7 +202,7 @@ You'll also need at least one CLI tool:
|
|
|
202
202
|
|
|
203
203
|
```
|
|
204
204
|
"Create a login form with Tailwind CSS and form validation"
|
|
205
|
-
→ frontend
|
|
205
|
+
→ oma-frontend activates
|
|
206
206
|
```
|
|
207
207
|
|
|
208
208
|
**Commit changes** (conventional commits):
|