oh-my-agent 10.0.0 → 10.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.
Files changed (3) hide show
  1. package/README.md +17 -16
  2. package/bin/cli.js +832 -832
  3. package/package.json +1 -1
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
 
@@ -216,7 +217,7 @@ Set `model_preset` in `.agents/oma-config.yaml` to choose which AI models each a
216
217
 
217
218
  ```yaml
218
219
  language: en
219
- model_preset: mixed # antigravity | claude | codex | cursor | grok | mixed | qwen
220
+ model_preset: mixed # antigravity | claude | codex | cursor | kiro | mixed | qwen
220
221
 
221
222
  # Optional per-agent overrides
222
223
  agents:
@@ -239,7 +240,7 @@ agents:
239
240
  - `ralph` workflow — independent JUDGE re-verifies every criterion each iteration to catch silent regressions; heavy-test caching for >30s suites
240
241
  - Exploration Loop — after 2 retries, `orchestrate` spawns hypothesis variants in parallel and keeps the highest-scoring result
241
242
  - Monorepo auto-routing — `detectWorkspace` reads pnpm / nx / turbo / lerna and routes each agent to its workspace
242
- - **Multi-vendor** — Mix Claude, Codex, Cursor, and Qwen per agent type
243
+ - **Multi-vendor** — Mix Antigravity, Claude, Codex, Cursor, Kiro, and Qwen per agent type
243
244
  - **Observable** — Terminal and web dashboards for real-time monitoring
244
245
 
245
246
  ## Architecture