oh-my-agent 13.3.0 → 14.0.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 +10 -3
- package/bin/cli.js +843 -842
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ apm install first-fluke/oh-my-agent
|
|
|
47
47
|
apm install first-fluke/oh-my-agent/.agents/skills/oma-frontend
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
APM ships skills only. For workflows, rules, `oma-config.yaml`, keyword-detection hooks, and the `oma agent
|
|
50
|
+
APM ships skills only. For workflows, rules, `oma-config.yaml`, keyword-detection hooks, and the `oma agent spawn` CLI, use `bunx oh-my-agent@latest`. Pick one distribution per project to avoid drift.
|
|
51
51
|
|
|
52
52
|
</details>
|
|
53
53
|
|
|
@@ -197,6 +197,13 @@ Separate from the engineering team, oma ships content and research pipelines bui
|
|
|
197
197
|
| **oma-video** | Generates short-form, explainer, and demo videos through a key-optional Remotion pipeline. |
|
|
198
198
|
| **oma-voice** | Generates voiceovers and transcribes audio on-device, no cloud needed. |
|
|
199
199
|
|
|
200
|
+
### Orca IDE
|
|
201
|
+
|
|
202
|
+
[OMA for Orca](integrations/orca/README.md) adds a sidebar panel and command-palette
|
|
203
|
+
actions for project setup, review, debugging, verification, and local results.
|
|
204
|
+
It uses your existing Orca agent terminal and project OMA installation. Requires
|
|
205
|
+
Orca 1.4.197+ with experimental plugins enabled.
|
|
206
|
+
|
|
200
207
|
## How It Works
|
|
201
208
|
|
|
202
209
|
Just chat. Describe what you want and oh-my-agent figures out which agents to use.
|
|
@@ -256,11 +263,11 @@ Each mechanism below is mechanical: a command exits 0 or it doesn't, a file is o
|
|
|
256
263
|
| Mechanism | What it mechanically checks | Where it lives |
|
|
257
264
|
|-----------|------------------------------|----------------|
|
|
258
265
|
| **Stop-hook gate** | Blocks session termination while a persistent workflow is active, and runs the configured gate script before allowing a stop. Only `typecheck`, `test`, and `lint` are executable — an agent that writes anything else into the state file gets it ignored, never run. Capped at 5 reinforcements so a permanently red gate can't trap you. | [`.agents/hooks/core/persistent-mode.ts`](https://github.com/first-fluke/oh-my-agent/blob/main/.agents/hooks/core/persistent-mode.ts) |
|
|
259
|
-
| **Anti-Circumvention Gate** | `oma ralph
|
|
266
|
+
| **Anti-Circumvention Gate** | `oma ralph verify --json` checks four artifacts a shortcut can't fake: ultrawork's phase records, the plan JSON, a **distinct QA agent's** result file, and a **distinct refactor agent's** result file. Missing artifacts mean the phase did not run, whatever the narration says. | [`.agents/workflows/ralph.md`](https://github.com/first-fluke/oh-my-agent/blob/main/.agents/workflows/ralph.md) |
|
|
260
267
|
| **Independent judge** | Spawned as a separate agent with fresh context, briefed on the criteria only — never on what the implementer claims it fixed. Re-verifies **every** criterion each iteration, including prior PASSes, because fixing C2 is how C1 silently regresses. | [`judge-protocol.md`](https://github.com/first-fluke/oh-my-agent/blob/main/.agents/workflows/ralph/resources/judge-protocol.md) |
|
|
261
268
|
| **Event-sourced state** | Every gate pass, gate failure, and decision appends one JSON line to `.agents/state/sessions/{sid}/events.jsonl`, stamped with vendor and runtime session id. Append-only, cross-vendor, auditable after the run. | [`event-spec.md`](https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/_shared/runtime/event-spec.md) |
|
|
262
269
|
| **Per-agent check battery** | `oma verify <agent>` runs 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). | `oma verify <agent>` |
|
|
263
|
-
| **Skill eval harness** | `oma
|
|
270
|
+
| **Skill eval harness** | `oma skill eval` measures utility lift on held-out tasks — treatment vs. baseline — instead of assuming a skill helps. `oma skill optimize` keeps only edits that improve the measured lift. | [skill-eval guide](https://github.com/first-fluke/oh-my-agent/blob/main/web/docs/guide/skill-eval.md) |
|
|
264
271
|
|
|
265
272
|
Budgets are enforced the same way. `session.quota_cap` caps tokens, spawn count, and per-vendor spend; the orchestrator refuses the next spawn when a dimension is exceeded. When the wall-clock budget runs out, the Stop hook stops honestly with partial status recorded on the event log, rather than pretending completion.
|
|
266
273
|
|