oh-my-agent 10.16.0 → 10.17.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 +14 -8
- package/bin/cli.js +671 -671
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -146,7 +146,6 @@ Pick a preset and you're ready:
|
|
|
146
146
|
| **oma-architecture** | Weighs architecture tradeoffs and draws module boundaries, with ADR/ATAM/CBAM analysis. |
|
|
147
147
|
| **oma-backend** | Builds and secures your APIs in Python, Node.js, or Rust. |
|
|
148
148
|
| **oma-brainstorm** | Explores ideas with you before you commit to building. |
|
|
149
|
-
| **oma-coordination** | Guides manual step-by-step coordination of PM, frontend, backend, mobile, and QA agents. |
|
|
150
149
|
| **oma-db** | Designs your schema, migrations, indexes, and vector stores. |
|
|
151
150
|
| **oma-debug** | Finds the root cause, fixes the bug, and writes a regression test. |
|
|
152
151
|
| **oma-deepsec** | Scans your code for security holes and blocks risky pull requests. |
|
|
@@ -168,13 +167,22 @@ Pick a preset and you're ready:
|
|
|
168
167
|
| **oma-scholar** | Searches academic literature and helps you run peer review. |
|
|
169
168
|
| **oma-scm** | Manages your branches, merges, worktrees, and Conventional Commits. |
|
|
170
169
|
| **oma-search** | Routes each query to the best source and scores how much you can trust the result. |
|
|
171
|
-
| **oma-skill-creator** | Writes and audits new OMA skills in the SSL-lite format. |
|
|
172
170
|
| **oma-slide** | Generates distinctive, animation-rich HTML presentation decks and exports to PDF/PNG/PPTX. |
|
|
173
171
|
| **oma-tf-infra** | Provisions multi-cloud infrastructure with Terraform. |
|
|
174
172
|
| **oma-translator** | Translates between languages so it reads like a native wrote it. |
|
|
175
173
|
| **oma-video** | Generates short-form, explainer, and demo videos through a key-optional Remotion pipeline. |
|
|
176
174
|
| **oma-voice** | Generates voiceovers and transcribes audio on-device, no cloud needed. |
|
|
177
175
|
|
|
176
|
+
<details>
|
|
177
|
+
<summary>Internal & meta tools</summary>
|
|
178
|
+
|
|
179
|
+
| Agent | What They Do |
|
|
180
|
+
|-------|-------------|
|
|
181
|
+
| **oma-coordination** | Guides manual step-by-step coordination of PM, frontend, backend, mobile, and QA agents. |
|
|
182
|
+
| **oma-skill-creator** | Writes and audits new OMA skills in the SSL-lite format. |
|
|
183
|
+
|
|
184
|
+
</details>
|
|
185
|
+
|
|
178
186
|
## How It Works
|
|
179
187
|
|
|
180
188
|
Just chat. Describe what you want and oh-my-agent figures out which agents to use.
|
|
@@ -200,7 +208,7 @@ Or use slash commands for structured workflows:
|
|
|
200
208
|
| 2 | `/plan` | Breaks your feature down into prioritized tasks |
|
|
201
209
|
| 3 | `/work` | Builds your feature step by step across multiple agents |
|
|
202
210
|
| 3 | `/orchestrate` | Runs multiple agents in parallel to build your feature faster |
|
|
203
|
-
| 3 | `/ultrawork` | Builds your feature through five quality phases
|
|
211
|
+
| 3 | `/ultrawork` | Builds your feature through five gated quality phases; every review runs in a fresh, isolated reviewer session (cross-context review) |
|
|
204
212
|
| 3 | `/ralph` | Repeats `/ultrawork` until an independent verifier passes every criterion |
|
|
205
213
|
| 4 | `/review` | Reviews your code for security, performance, and accessibility issues |
|
|
206
214
|
| 4 | `/deepsec` | Runs a deep security scan and blocks risky pull requests |
|
|
@@ -209,7 +217,7 @@ Or use slash commands for structured workflows:
|
|
|
209
217
|
| 6 | `/scm` | Manages your branches, merges, and Conventional Commits |
|
|
210
218
|
| - | `/schedule` | Schedules an agent job to run on a recurring interval |
|
|
211
219
|
|
|
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.
|
|
220
|
+
**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. Detection accuracy is measured, not assumed: `oma verify triggers` scores the detector against a labeled 171-prompt corpus (currently **0% missed-fire**, under 10% false-fire) and gates CI on it.
|
|
213
221
|
|
|
214
222
|
### Per-Agent Models
|
|
215
223
|
|
|
@@ -229,11 +237,9 @@ agents:
|
|
|
229
237
|
|
|
230
238
|
## Why oh-my-agent?
|
|
231
239
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
- **Portable** — `.agents/` travels with your project, not trapped in one IDE
|
|
240
|
+
- **Portable** — `.agents/` travels with your project, not trapped in one IDE. `oma emit` projects the same SSOT into open-standard artifacts — [Agent Skills](https://agentskills.io/specification)-conformant skill folders, a `.claude-plugin/marketplace.json`, and `AGENTS.md` — so oma skills work in any tool that reads the open spec, with a drift check in CI keeping the generated output honest
|
|
235
241
|
- **Role-based** — Agents modeled like a real engineering team, not a pile of prompts
|
|
236
|
-
- **Token-efficient** — Two-layer skill design saves ~75% of tokens
|
|
242
|
+
- **Token-efficient** — Two-layer skill design saves ~75% of tokens ([how it works](https://github.com/first-fluke/oh-my-agent/blob/main/web/docs/guide/usage.md))
|
|
237
243
|
- **Quality-first** — Charter preflight, quality gates, and review workflows built in:
|
|
238
244
|
- `oma verify <agent>` — a deterministic check battery per agent type: a shared core (scope violation, charter alignment, hardcoded secrets, TODO scan, declared outputs) plus type-specific checks (TypeScript strict, tests, raw SQL, Flutter analyze, inline styles, …)
|
|
239
245
|
- `session.quota_cap` — per-session token / spawn / per-vendor budget caps in `oma-config.yaml`; `orchestrate` Step 5 blocks the next spawn when exceeded
|