oh-my-agent 5.2.2 → 5.4.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 +13 -0
- package/bin/cli.js +386 -381
- package/package.json +1 -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
|
|
@@ -50,6 +57,7 @@ Pick a preset and you're ready:
|
|
|
50
57
|
| **oma-pdf** | PDF to Markdown conversion |
|
|
51
58
|
| **oma-pm** | Plans tasks, breaks down requirements, defines API contracts |
|
|
52
59
|
| **oma-qa** | OWASP security, performance, accessibility review |
|
|
60
|
+
| **oma-recap** | Conversation history recap and themed work summaries |
|
|
53
61
|
| **oma-scm** | SCM (software configuration management) — branching, merges, worktrees, baselines; Conventional Commits |
|
|
54
62
|
| **oma-tf-infra** | Multi-cloud Terraform IaC (Infrastructure as Code) |
|
|
55
63
|
| **oma-translator** | Natural multilingual translation |
|
|
@@ -94,10 +102,15 @@ bun install --global oh-my-agent # or: brew install oh-my-agent
|
|
|
94
102
|
# Use anywhere
|
|
95
103
|
oma doctor # Health check
|
|
96
104
|
oma dashboard # Real-time agent monitoring
|
|
105
|
+
oma link # Regenerate .claude/.codex/.gemini/etc. from .agents/
|
|
97
106
|
oma agent:spawn backend "Build auth API" session-01
|
|
98
107
|
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
|
|
99
108
|
```
|
|
100
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
|
+
|
|
101
114
|
## Why oh-my-agent?
|
|
102
115
|
|
|
103
116
|
> [Read why →](https://github.com/first-fluke/oh-my-agent/issues/155#issuecomment-4142133589)
|