oh-my-agent 4.27.1 → 4.28.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 +15 -12
  2. package/bin/cli.js +340 -344
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Ever wished your AI assistant had coworkers? That's what oh-my-agent does.
8
8
 
9
- Instead of one AI doing everything (and getting confused halfway through), oh-my-agent splits work across **specialized agents** — frontend, backend, QA, PM, DB, mobile, infra, debug, design, and more. Each one knows its domain deeply, has its own tools and checklists, and stays in its lane.
9
+ Instead of one AI doing everything (and getting confused halfway through), oh-my-agent splits work across **specialized agents** — frontend, backend, architecture, QA, PM, DB, mobile, infra, debug, design, and more. Each one knows its domain deeply, has its own tools and checklists, and stays in its lane.
10
10
 
11
11
  Works with all major AI IDEs: Antigravity, Claude Code, Cursor, Gemini CLI, Codex CLI, OpenCode, and more.
12
12
 
@@ -27,17 +27,18 @@ Pick a preset and you're ready:
27
27
  | Preset | What You Get |
28
28
  |--------|-------------|
29
29
  | ✨ All | Every agent and skill |
30
- | 🌐 Fullstack | frontend + backend + db + pm + qa + debug + brainstorm + commit |
31
- | 🎨 Frontend | frontend + pm + qa + debug + brainstorm + commit |
32
- | ⚙️ Backend | backend + db + pm + qa + debug + brainstorm + commit |
33
- | 📱 Mobile | mobile + pm + qa + debug + brainstorm + commit |
34
- | 🚀 DevOps | tf-infra + dev-workflow + pm + qa + debug + brainstorm + commit |
30
+ | 🌐 Fullstack | architecture + frontend + backend + db + pm + qa + debug + brainstorm + commit |
31
+ | 🎨 Frontend | architecture + frontend + pm + qa + debug + brainstorm + commit |
32
+ | ⚙️ Backend | architecture + backend + db + pm + qa + debug + brainstorm + commit |
33
+ | 📱 Mobile | architecture + mobile + pm + qa + debug + brainstorm + commit |
34
+ | 🚀 DevOps | architecture + tf-infra + dev-workflow + pm + qa + debug + brainstorm + commit |
35
35
 
36
36
  ## Your Agent Team
37
37
 
38
38
  | Agent | What They Do |
39
39
  |-------|-------------|
40
40
  | **oma-backend** | APIs in Python, Node.js, or Rust |
41
+ | **oma-architecture** | Architectural tradeoffs, boundaries, ADR/ATAM/CBAM-aware analysis |
41
42
  | **oma-brainstorm** | Explores ideas before you commit to building |
42
43
  | **oma-commit** | Clean conventional commits |
43
44
  | **oma-db** | Schema design, migrations, indexing, vector DB |
@@ -71,6 +72,7 @@ Or use slash commands for structured workflows:
71
72
 
72
73
  | Command | What It Does |
73
74
  |---------|-------------|
75
+ | `/architecture` | Software architecture review, tradeoffs, ADR/ATAM/CBAM-style analysis |
74
76
  | `/plan` | PM breaks down your feature into tasks |
75
77
  | `/work` | Step-by-step multi-agent execution |
76
78
  | `/orchestrate` | Automated parallel agent spawning |
@@ -81,7 +83,7 @@ Or use slash commands for structured workflows:
81
83
  | `/brainstorm` | Free-form ideation |
82
84
  | `/commit` | Conventional commit with type/scope analysis |
83
85
 
84
- **Auto-detection**: You don't even need slash commands — keywords like "plan", "review", "debug" in your message (in 11 languages!) auto-activate the right workflow.
86
+ **Auto-detection**: You don't even need slash commands — keywords like "architecture", "plan", "review", and "debug" in your message (in 11 languages!) auto-activate the right workflow.
85
87
 
86
88
  ## CLI
87
89
 
@@ -117,11 +119,12 @@ flowchart TD
117
119
  W1["/work"]
118
120
  W1b["/ultrawork"]
119
121
  W2["/orchestrate"]
120
- W3["/plan"]
121
- W4["/review"]
122
- W5["/debug"]
123
- W6["/deepinit"]
124
- W7["/design"]
122
+ W3["/architecture"]
123
+ W4["/plan"]
124
+ W5["/review"]
125
+ W6["/debug"]
126
+ W7["/deepinit"]
127
+ W8["/design"]
125
128
  end
126
129
 
127
130
  subgraph Orchestration["Orchestration"]