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.
Files changed (3) hide show
  1. package/README.md +15 -14
  2. package/bin/cli.js +863 -867
  3. 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` | Bootstrap an existing codebase (AGENTS.md, ARCHITECTURE.md, `docs/`) |
197
- | 1 | `/brainstorm` | Free-form ideation |
198
- | 2 | `/architecture` | Software architecture review, tradeoffs, ADR/ATAM/CBAM-style analysis |
199
- | 2 | `/design` | 7-phase design system workflow |
200
- | 2 | `/plan` | PM breaks down your feature into tasks |
201
- | 3 | `/work` | Step-by-step multi-agent execution |
202
- | 3 | `/orchestrate` | Automated parallel agent spawning |
203
- | 3 | `/ultrawork` | 5-phase quality workflow with 11 review gates |
204
- | 3 | `/ralph` | Wraps `/ultrawork` in an independent verifier loop until criteria pass |
205
- | 4 | `/review` | Security + performance + accessibility audit |
206
- | 4 | `/deepsec` | Deep agent-powered security scan |
207
- | 5 | `/debug` | Structured root-cause debugging |
208
- | 5 | `/docs` | Documentation drift verify + sync |
209
- | 6 | `/scm` | SCM + Git workflow and Conventional Commit support |
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