oh-my-agent 2.12.0 → 4.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.
Files changed (3) hide show
  1. package/README.md +24 -23
  2. package/bin/cli.js +289 -280
  3. 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-agent]
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-agent]
47
- BE[backend-agent]
48
- DB[db-agent]
49
- MB[mobile-agent]
50
- TF[tf-infra-agent]
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-agent]
56
- DBG[debug-agent]
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-impl, frontend-impl, mobile-impl, db-impl, qa-reviewer, debug-investigator, pm-planner)
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-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.
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
 
@@ -103,6 +103,7 @@ Domain skills (backend-agent, frontend-agent, etc.) remain as symlinks from `.ag
103
103
 
104
104
  - Skills live in `.agents/skills/<skill-name>/SKILL.md`
105
105
  - Shared resources live in `.agents/skills/_shared/`
106
+ and are grouped into `core/`, `conditional/`, and `runtime/`
106
107
  - Workflows live in `.agents/workflows/*.md`
107
108
  - Project config lives in `.agents/config/`
108
109
  - CLI metadata and packaging stay aligned through generated manifests
@@ -118,7 +119,7 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
118
119
  | **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
119
120
  | **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
120
121
  | **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
121
- | **Backend Agent** | FastAPI, PostgreSQL, JWT authentication | "API", "database", "authentication" |
122
+ | **Backend Agent** | Backend (Python, Node.js, Rust, ...) | "API", "database", "authentication" |
122
123
  | **DB Agent** | SQL/NoSQL modeling, normalization, integrity, backup, capacity | "ERD", "schema", "database design", "index tuning" |
123
124
  | **Mobile Agent** | Flutter cross-platform development | "mobile app", "iOS/Android" |
124
125
  | **QA Agent** | OWASP Top 10 security, performance, accessibility | "review security", "audit", "check performance" |
@@ -159,11 +160,11 @@ Select your project type and skills will be installed to `.agents/skills/`, with
159
160
  | Preset | Skills |
160
161
  |--------|--------|
161
162
  | ✨ 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 |
163
+ | 🌐 Fullstack | oma-brainstorm, oma-frontend, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
164
+ | 🎨 Frontend | oma-brainstorm, oma-frontend, oma-pm, oma-qa, oma-debug, oma-commit |
165
+ | ⚙️ Backend | oma-brainstorm, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
166
+ | 📱 Mobile | oma-brainstorm, oma-mobile, oma-pm, oma-qa, oma-debug, oma-commit |
167
+ | 🚀 DevOps | oma-brainstorm, oma-tf-infra, oma-dev-workflow, oma-pm, oma-qa, oma-debug, oma-commit |
167
168
 
168
169
  ### Option 3: Global Installation (For Orchestrator)
169
170
 
@@ -177,10 +178,10 @@ You'll also need at least one CLI tool:
177
178
 
178
179
  | CLI | Install | Auth |
179
180
  |-----|---------|------|
180
- | Gemini | `bun install --global @google/gemini-cli` | `gemini auth` |
181
- | Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | `claude auth` |
182
- | Codex | `bun install --global @openai/codex` | `codex auth` |
183
- | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
181
+ | Gemini | `bun install --global @google/gemini-cli` | Auto on first `gemini` run |
182
+ | Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | Auto on first `claude` run |
183
+ | Codex | `bun install --global @openai/codex` | `codex login` |
184
+ | Qwen | `bun install --global @qwen-code/qwen-code` | `/auth` inside CLI |
184
185
 
185
186
  ### 2. Chat
186
187
 
@@ -202,7 +203,7 @@ You'll also need at least one CLI tool:
202
203
 
203
204
  ```
204
205
  "Create a login form with Tailwind CSS and form validation"
205
- → frontend-agent activates
206
+ oma-frontend activates
206
207
  ```
207
208
 
208
209
  **Commit changes** (conventional commits):