oh-my-agent 5.3.0 → 5.4.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 +12 -0
- package/bin/cli.js +436 -411
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -10,6 +10,13 @@ Instead of one AI doing everything (and getting confused halfway through), oh-my
|
|
|
10
10
|
|
|
11
11
|
Works with all major AI IDEs: Antigravity, Claude Code, Cursor, Gemini CLI, Codex CLI, OpenCode, and more.
|
|
12
12
|
|
|
13
|
+
Vendor-native subagents are generated from `.agents/agents/`:
|
|
14
|
+
- Claude Code uses `.claude/agents/*.md`
|
|
15
|
+
- Codex CLI uses `.codex/agents/*.toml`
|
|
16
|
+
- Gemini CLI uses `.gemini/agents/*.md`
|
|
17
|
+
|
|
18
|
+
When a workflow resolves an agent to the same vendor as the current runtime, it should use that vendor's native subagent path first. Cross-vendor tasks fall back to `oma agent:spawn`.
|
|
19
|
+
|
|
13
20
|
## Quick Start
|
|
14
21
|
|
|
15
22
|
```bash
|
|
@@ -95,10 +102,15 @@ bun install --global oh-my-agent # or: brew install oh-my-agent
|
|
|
95
102
|
# Use anywhere
|
|
96
103
|
oma doctor # Health check
|
|
97
104
|
oma dashboard # Real-time agent monitoring
|
|
105
|
+
oma link # Regenerate .claude/.codex/.gemini/etc. from .agents/
|
|
98
106
|
oma agent:spawn backend "Build auth API" session-01
|
|
99
107
|
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
|
|
100
108
|
```
|
|
101
109
|
|
|
110
|
+
Model selection follows two layers:
|
|
111
|
+
- Same-vendor native dispatch uses the generated vendor agent definition in `.claude/agents/`, `.codex/agents/`, or `.gemini/agents/`.
|
|
112
|
+
- Cross-vendor or fallback CLI dispatch uses the vendor defaults in `.agents/skills/oma-orchestrator/config/cli-config.yaml`.
|
|
113
|
+
|
|
102
114
|
## Why oh-my-agent?
|
|
103
115
|
|
|
104
116
|
> [Read why →](https://github.com/first-fluke/oh-my-agent/issues/155#issuecomment-4142133589)
|