oh-my-agent 4.1.0 → 4.2.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 -8
- package/bin/cli.js +261 -254
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,11 +76,12 @@ flowchart TD
|
|
|
76
76
|
|
|
77
77
|
| Tool / IDE | Skills Source | Interop Mode | Notes |
|
|
78
78
|
|------------|---------------|--------------|-------|
|
|
79
|
-
| Antigravity | `.agents/skills/` | Native | Primary source-of-truth layout |
|
|
80
|
-
| Claude Code | `.claude/skills/` + `.claude/agents/` | Native + Adapter | Symlinks for domain skills +
|
|
79
|
+
| Antigravity | `.agents/skills/` | Native | Primary source-of-truth layout; no custom subagent spawning |
|
|
80
|
+
| Claude Code | `.claude/skills/` + `.claude/agents/` | Native + Adapter | Symlinks for domain skills + thin router workflow skills, subagents generated from `.agents/agents/`, and CLAUDE.md |
|
|
81
|
+
| Codex CLI | `.codex/agents/` + `.agents/skills/` | Native + Adapter | Agent TOML generated from `.agents/agents/` (planned) |
|
|
82
|
+
| Gemini CLI | `.gemini/agents/` + `.agents/skills/` | Native + Adapter | Agent MD generated from `.agents/agents/` (planned) |
|
|
81
83
|
| OpenCode | `.agents/skills/` | Native-compatible | Uses the same project-level skill source |
|
|
82
84
|
| Amp | `.agents/skills/` | Native-compatible | Shares the same project-level source |
|
|
83
|
-
| Codex CLI | `.agents/skills/` | Native-compatible | Works from the same project skill source |
|
|
84
85
|
| Cursor | `.agents/skills/` | Native-compatible | Can consume the same project-level skill source |
|
|
85
86
|
| GitHub Copilot | `.github/skills/` | Optional symlink | Installed when selected during setup |
|
|
86
87
|
|
|
@@ -91,17 +92,18 @@ See [SUPPORTED_AGENTS.md](https://github.com/first-fluke/oh-my-agent/blob/main/d
|
|
|
91
92
|
Claude Code has first-class native integration beyond symlinks:
|
|
92
93
|
|
|
93
94
|
- **`CLAUDE.md`** — project identity, architecture, and rules (auto-loaded by Claude Code)
|
|
94
|
-
- **`.claude/skills/`** — 12
|
|
95
|
-
- **`.claude/agents/`** — 7 subagent definitions spawned via Task tool (backend-engineer, frontend-engineer, mobile-engineer, db-engineer, qa-reviewer, debug-investigator, pm-planner)
|
|
95
|
+
- **`.claude/skills/`** — 12 thin router SKILL.md files that delegate to `.agents/workflows/` (e.g., `/orchestrate`, `/coordinate`, `/ultrawork`). Skills are explicitly invoked via slash commands, not keyword-auto-activated.
|
|
96
|
+
- **`.claude/agents/`** — 7 subagent definitions generated from `.agents/agents/*.yaml`, spawned via Task tool (backend-engineer, frontend-engineer, mobile-engineer, db-engineer, qa-reviewer, debug-investigator, pm-planner)
|
|
96
97
|
- **Native loop patterns** — Review Loop, Issue Remediation Loop, and Phase Gate Loop using synchronous Task tool results instead of CLI polling
|
|
97
98
|
|
|
98
|
-
Domain skills (oma-backend, oma-frontend, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are
|
|
99
|
+
Domain skills (oma-backend, oma-frontend, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are thin router SKILL.md files that delegate to the corresponding `.agents/workflows/*.md` source of truth.
|
|
99
100
|
|
|
100
101
|
## The `.agents` Spec
|
|
101
102
|
|
|
102
103
|
`oh-my-agent` treats `.agents/` as a portable project convention for agent skills, workflows, and shared context.
|
|
103
104
|
|
|
104
105
|
- Skills live in `.agents/skills/<skill-name>/SKILL.md`
|
|
106
|
+
- Abstract agent definitions live in `.agents/agents/` (vendor-neutral SSOT; the CLI generates `.claude/agents/`, `.codex/agents/` (planned), `.gemini/agents/` (planned) from these)
|
|
105
107
|
- Shared resources live in `.agents/skills/_shared/`
|
|
106
108
|
and are grouped into `core/`, `conditional/`, and `runtime/`
|
|
107
109
|
- Workflows live in `.agents/workflows/*.md`
|
|
@@ -199,11 +201,11 @@ You'll also need at least one CLI tool:
|
|
|
199
201
|
→ /ultrawork → Independent tasks execute in parallel across agents
|
|
200
202
|
```
|
|
201
203
|
|
|
202
|
-
**Simple task** (
|
|
204
|
+
**Simple task** (invoke a domain skill directly):
|
|
203
205
|
|
|
204
206
|
```
|
|
205
207
|
"Create a login form with Tailwind CSS and form validation"
|
|
206
|
-
→ oma-frontend
|
|
208
|
+
→ oma-frontend skill
|
|
207
209
|
```
|
|
208
210
|
|
|
209
211
|
**Commit changes** (conventional commits):
|