oh-my-agent 2.4.2 → 2.5.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 +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ flowchart TD
|
|
|
77
77
|
| Tool / IDE | Skills Source | Interop Mode | Notes |
|
|
78
78
|
|------------|---------------|--------------|-------|
|
|
79
79
|
| Antigravity | `.agents/skills/` | Native | Primary source-of-truth layout |
|
|
80
|
-
| Claude Code | `.claude/skills/`
|
|
80
|
+
| Claude Code | `.claude/skills/` + `.claude/agents/` | Native + Adapter | Symlinks for domain skills + native workflow skills, subagents, and CLAUDE.md |
|
|
81
81
|
| OpenCode | `.agents/skills/` | Native-compatible | Uses the same project-level skill source |
|
|
82
82
|
| Amp | `.agents/skills/` | Native-compatible | Shares the same project-level source |
|
|
83
83
|
| Codex CLI | `.agents/skills/` | Native-compatible | Works from the same project skill source |
|
|
@@ -86,6 +86,17 @@ flowchart TD
|
|
|
86
86
|
|
|
87
87
|
See [SUPPORTED_AGENTS.md](https://github.com/first-fluke/oh-my-agent/blob/main/docs/SUPPORTED_AGENTS.md) for the current support matrix and interoperability notes.
|
|
88
88
|
|
|
89
|
+
### Claude Code Native Integration
|
|
90
|
+
|
|
91
|
+
Claude Code has first-class native integration beyond symlinks:
|
|
92
|
+
|
|
93
|
+
- **`CLAUDE.md`** — project identity, architecture, and rules (auto-loaded by Claude Code)
|
|
94
|
+
- **`.claude/skills/`** — 12 workflow skills mapped from `.agents/workflows/` (e.g., `/orchestrate`, `/coordinate`, `/ultrawork`)
|
|
95
|
+
- **`.claude/agents/`** — 7 subagent definitions spawned via Task tool (backend-impl, frontend-impl, mobile-impl, db-impl, qa-reviewer, debug-investigator, pm-planner)
|
|
96
|
+
- **Native loop patterns** — Review Loop, Issue Remediation Loop, and Phase Gate Loop using synchronous Task tool results instead of CLI polling
|
|
97
|
+
|
|
98
|
+
Domain skills (backend-agent, frontend-agent, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are native SKILL.md files that reference the original `.agents/workflows/*.md` as the source of truth.
|
|
99
|
+
|
|
89
100
|
## The `.agents` Spec
|
|
90
101
|
|
|
91
102
|
`oh-my-agent` treats `.agents/` as a portable project convention for agent skills, workflows, and shared context.
|
package/package.json
CHANGED