oh-my-agent 6.20.0 → 7.1.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 +373 -377
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,6 +119,7 @@ Or use slash commands for structured workflows:
|
|
|
119
119
|
| 3 | `/ralph` | Wraps `/ultrawork` in an independent verifier loop until criteria pass |
|
|
120
120
|
| 4 | `/review` | Security + performance + accessibility audit |
|
|
121
121
|
| 5 | `/debug` | Structured root-cause debugging |
|
|
122
|
+
| 5 | `/docs` | Documentation drift verify + sync via `oma-docs` |
|
|
122
123
|
| 6 | `/scm` | SCM + Git workflow and Conventional Commit support |
|
|
123
124
|
|
|
124
125
|
**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.
|
|
@@ -129,18 +130,17 @@ Or use slash commands for structured workflows:
|
|
|
129
130
|
# Install globally
|
|
130
131
|
bun install --global oh-my-agent # or: brew install oh-my-agent
|
|
131
132
|
|
|
132
|
-
# Use anywhere
|
|
133
|
-
oma
|
|
133
|
+
# Use anywhere (sorted alphabetically)
|
|
134
|
+
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
|
|
135
|
+
oma agent:spawn backend "Build auth API" session-01
|
|
134
136
|
oma dashboard # Real-time agent monitoring
|
|
137
|
+
oma doctor # Health check
|
|
138
|
+
oma image generate "cat" # Multi-vendor AI image generation
|
|
135
139
|
oma link # Regenerate .claude/.codex/.gemini/etc. from .agents/
|
|
136
|
-
oma
|
|
137
|
-
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
|
|
138
|
-
oma retro 7d --compare # Engineering retrospective with metrics + trends
|
|
140
|
+
oma model:check # Detect drift between registered models and live vendor lists
|
|
139
141
|
oma recap --window 1d # Cross-tool conversation history recap
|
|
142
|
+
oma retro 7d --compare # Engineering retrospective with metrics + trends
|
|
140
143
|
oma search fetch <url> # Mechanical search with auto-escalating strategies
|
|
141
|
-
oma image generate "cat" # Multi-vendor AI image generation
|
|
142
|
-
oma export cursor # Project skills as `.cursor/rules` for external IDEs
|
|
143
|
-
oma model:check # Detect drift between registered models and live vendor lists
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
Model selection follows two layers:
|