oh-my-agent 9.10.0 → 10.0.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 +15 -14
- package/bin/cli.js +863 -867
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -193,20 +193,21 @@ Or use slash commands for structured workflows:
|
|
|
193
193
|
|
|
194
194
|
| Step | Command | What It Does |
|
|
195
195
|
|------|---------|-------------|
|
|
196
|
-
| 0 | `/deepinit` |
|
|
197
|
-
| 1 | `/brainstorm` |
|
|
198
|
-
| 2 | `/architecture` |
|
|
199
|
-
| 2 | `/design` |
|
|
200
|
-
| 2 | `/plan` |
|
|
201
|
-
| 3 | `/work` |
|
|
202
|
-
| 3 | `/orchestrate` |
|
|
203
|
-
| 3 | `/ultrawork` |
|
|
204
|
-
| 3 | `/ralph` |
|
|
205
|
-
| 4 | `/review` |
|
|
206
|
-
| 4 | `/deepsec` |
|
|
207
|
-
| 5 | `/debug` |
|
|
208
|
-
| 5 | `/docs` |
|
|
209
|
-
| 6 | `/scm` |
|
|
196
|
+
| 0 | `/deepinit` | Maps your existing codebase into AGENTS.md, ARCHITECTURE.md, and docs |
|
|
197
|
+
| 1 | `/brainstorm` | Explores ideas with you before you commit to building |
|
|
198
|
+
| 2 | `/architecture` | Weighs your design tradeoffs and draws clean module boundaries |
|
|
199
|
+
| 2 | `/design` | Builds your design system with tokens, accessibility, and responsive layouts |
|
|
200
|
+
| 2 | `/plan` | Breaks your feature down into prioritized tasks |
|
|
201
|
+
| 3 | `/work` | Builds your feature step by step across multiple agents |
|
|
202
|
+
| 3 | `/orchestrate` | Runs multiple agents in parallel to build your feature faster |
|
|
203
|
+
| 3 | `/ultrawork` | Builds your feature through five quality phases and eleven review gates |
|
|
204
|
+
| 3 | `/ralph` | Repeats `/ultrawork` until an independent verifier passes every criterion |
|
|
205
|
+
| 4 | `/review` | Reviews your code for security, performance, and accessibility issues |
|
|
206
|
+
| 4 | `/deepsec` | Runs a deep security scan and blocks risky pull requests |
|
|
207
|
+
| 5 | `/debug` | Finds the root cause, fixes the bug, and writes a regression test |
|
|
208
|
+
| 5 | `/docs` | Checks your docs for broken references and patches the ones your code changes touched |
|
|
209
|
+
| 6 | `/scm` | Manages your branches, merges, and Conventional Commits |
|
|
210
|
+
| - | `/schedule` | Schedules an agent job to run on a recurring interval |
|
|
210
211
|
|
|
211
212
|
**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.
|
|
212
213
|
|