oh-my-agent 4.29.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 +8 -8
- package/bin/cli.js +235 -235
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,11 +27,11 @@ 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
|
|
|
@@ -40,7 +40,7 @@ Pick a preset and you're ready:
|
|
|
40
40
|
| **oma-architecture** | Architectural tradeoffs, boundaries, ADR/ATAM/CBAM-aware analysis |
|
|
41
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
|
|
|
@@ -153,7 +153,7 @@ flowchart TD
|
|
|
153
153
|
Workflows --> Orchestration
|
|
154
154
|
Orchestration --> Domain
|
|
155
155
|
Domain --> Quality
|
|
156
|
-
Quality -->
|
|
156
|
+
Quality --> SCM([oma-scm])
|
|
157
157
|
```
|
|
158
158
|
|
|
159
159
|
## Learn More
|