oh-my-agent 4.29.0 → 4.30.1
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 +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,6 @@ 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-commit** | Clean conventional commits |
|
|
44
43
|
| **oma-db** | Schema design, migrations, indexing, vector DB |
|
|
45
44
|
| **oma-debug** | Root cause analysis, fixes, regression tests |
|
|
46
45
|
| **oma-design** | Design systems, tokens, accessibility, responsive |
|
|
@@ -51,7 +50,8 @@ Pick a preset and you're ready:
|
|
|
51
50
|
| **oma-pdf** | PDF to Markdown conversion |
|
|
52
51
|
| **oma-pm** | Plans tasks, breaks down requirements, defines API contracts |
|
|
53
52
|
| **oma-qa** | OWASP security, performance, accessibility review |
|
|
54
|
-
| **oma-
|
|
53
|
+
| **oma-scm** | SCM (software configuration management) — branching, merges, worktrees, baselines; Conventional Commits |
|
|
54
|
+
| **oma-tf-infra** | Multi-cloud Terraform IaC (Infrastructure as Code) |
|
|
55
55
|
| **oma-translator** | Natural multilingual translation |
|
|
56
56
|
|
|
57
57
|
## How It Works
|
|
@@ -70,18 +70,18 @@ You: "Build a TODO app with user authentication"
|
|
|
70
70
|
|
|
71
71
|
Or use slash commands for structured workflows:
|
|
72
72
|
|
|
73
|
-
| Command | What It Does |
|
|
74
|
-
|
|
75
|
-
| `/
|
|
76
|
-
| `/
|
|
77
|
-
| `/
|
|
78
|
-
| `/
|
|
79
|
-
| `/
|
|
80
|
-
| `/
|
|
81
|
-
| `/
|
|
82
|
-
| `/
|
|
83
|
-
| `/
|
|
84
|
-
| `/
|
|
73
|
+
| Step | Command | What It Does |
|
|
74
|
+
|------|---------|-------------|
|
|
75
|
+
| 1 | `/brainstorm` | Free-form ideation |
|
|
76
|
+
| 2 | `/architecture` | Software architecture review, tradeoffs, ADR/ATAM/CBAM-style analysis |
|
|
77
|
+
| 3 | `/design` | 7-phase design system workflow |
|
|
78
|
+
| 4 | `/plan` | PM breaks down your feature into tasks |
|
|
79
|
+
| 5 | `/work` | Step-by-step multi-agent execution |
|
|
80
|
+
| 5 | `/orchestrate` | Automated parallel agent spawning |
|
|
81
|
+
| 5 | `/ultrawork` | 5-phase quality workflow with 11 review gates |
|
|
82
|
+
| 6 | `/review` | Security + performance + accessibility audit |
|
|
83
|
+
| 7 | `/debug` | Structured root-cause debugging |
|
|
84
|
+
| 8 | `/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
|