oh-my-agent 4.28.0 → 4.30.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 +10 -9
- package/bin/cli.js +362 -369
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,20 +27,20 @@ Pick a preset and you're ready:
|
|
|
27
27
|
| Preset | What You Get |
|
|
28
28
|
|--------|-------------|
|
|
29
29
|
| ✨ All | Every agent and skill |
|
|
30
|
-
| 🌐 Fullstack | architecture + frontend + backend + db + pm + qa + debug + brainstorm +
|
|
31
|
-
| 🎨 Frontend | architecture + frontend + pm + qa + debug + brainstorm +
|
|
32
|
-
| ⚙️ Backend | architecture + backend + db + pm + qa + debug + brainstorm +
|
|
33
|
-
| 📱 Mobile | architecture + mobile + pm + qa + debug + brainstorm +
|
|
34
|
-
| 🚀 DevOps | architecture + tf-infra + dev-workflow + pm + qa + debug + brainstorm +
|
|
30
|
+
| 🌐 Fullstack | architecture + frontend + backend + db + pm + qa + debug + brainstorm + scm |
|
|
31
|
+
| 🎨 Frontend | architecture + frontend + pm + qa + debug + brainstorm + scm |
|
|
32
|
+
| ⚙️ Backend | architecture + backend + db + pm + qa + debug + brainstorm + scm |
|
|
33
|
+
| 📱 Mobile | architecture + mobile + pm + qa + debug + brainstorm + scm |
|
|
34
|
+
| 🚀 DevOps | architecture + tf-infra + dev-workflow + pm + qa + debug + brainstorm + scm |
|
|
35
35
|
|
|
36
36
|
## Your Agent Team
|
|
37
37
|
|
|
38
38
|
| Agent | What They Do |
|
|
39
39
|
|-------|-------------|
|
|
40
|
-
| **oma-backend** | APIs in Python, Node.js, or Rust |
|
|
41
40
|
| **oma-architecture** | Architectural tradeoffs, boundaries, ADR/ATAM/CBAM-aware analysis |
|
|
41
|
+
| **oma-backend** | APIs in Python, Node.js, or Rust |
|
|
42
42
|
| **oma-brainstorm** | Explores ideas before you commit to building |
|
|
43
|
-
| **oma-
|
|
43
|
+
| **oma-scm** | SCM (software configuration management) — branching, merges, worktrees, baselines; Conventional Commits |
|
|
44
44
|
| **oma-db** | Schema design, migrations, indexing, vector DB |
|
|
45
45
|
| **oma-debug** | Root cause analysis, fixes, regression tests |
|
|
46
46
|
| **oma-design** | Design systems, tokens, accessibility, responsive |
|
|
@@ -81,7 +81,7 @@ Or use slash commands for structured workflows:
|
|
|
81
81
|
| `/debug` | Structured root-cause debugging |
|
|
82
82
|
| `/design` | 7-phase design system workflow |
|
|
83
83
|
| `/brainstorm` | Free-form ideation |
|
|
84
|
-
| `/
|
|
84
|
+
| `/scm` | SCM + Git workflow and Conventional Commit support |
|
|
85
85
|
|
|
86
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.
|
|
87
87
|
|
|
@@ -135,6 +135,7 @@ flowchart TD
|
|
|
135
135
|
|
|
136
136
|
subgraph Domain["Domain Agents"]
|
|
137
137
|
direction TB
|
|
138
|
+
ARC[oma-architecture]
|
|
138
139
|
FE[oma-frontend]
|
|
139
140
|
BE[oma-backend]
|
|
140
141
|
DB[oma-db]
|
|
@@ -152,7 +153,7 @@ flowchart TD
|
|
|
152
153
|
Workflows --> Orchestration
|
|
153
154
|
Orchestration --> Domain
|
|
154
155
|
Domain --> Quality
|
|
155
|
-
Quality -->
|
|
156
|
+
Quality --> SCM([oma-scm])
|
|
156
157
|
```
|
|
157
158
|
|
|
158
159
|
## Learn More
|