oh-my-agent 4.1.0 → 4.2.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 +68 -101
- package/bin/cli.js +261 -254
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,110 +6,17 @@
|
|
|
6
6
|
|
|
7
7
|
The portable, role-based agent harness for serious AI-assisted engineering.
|
|
8
8
|
|
|
9
|
-
Orchestrate 10 specialized domain agents (PM, Frontend, Backend, DB, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform)
|
|
9
|
+
Orchestrate 10 specialized domain agents (PM, Frontend, Backend, DB, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform). `oh-my-agent` works with all major AI IDEs including Antigravity, Claude Code, Cursor, Gemini, OpenCode, and more. It combines role-based agents, explicit workflows, real-time observability, and standards-aware guidance for teams that want less AI slop and more disciplined execution.
|
|
10
10
|
|
|
11
11
|
## Table of Contents
|
|
12
12
|
|
|
13
|
-
- [Architecture](#architecture)
|
|
14
|
-
- [Why Different](#why-different)
|
|
15
|
-
- [Compatibility](#compatibility)
|
|
16
|
-
- [The `.agents` Spec](#the-agents-spec)
|
|
17
13
|
- [What Is This?](#what-is-this)
|
|
14
|
+
- [Why Different](#why-different)
|
|
18
15
|
- [Quick Start](#quick-start)
|
|
16
|
+
- [Architecture](#architecture)
|
|
19
17
|
- [Sponsors](#sponsors)
|
|
20
18
|
- [License](#license)
|
|
21
19
|
|
|
22
|
-
## Architecture
|
|
23
|
-
|
|
24
|
-
```mermaid
|
|
25
|
-
flowchart TD
|
|
26
|
-
subgraph Workflows["Workflows"]
|
|
27
|
-
direction TB
|
|
28
|
-
W0["/brainstorm"]
|
|
29
|
-
W1["/coordinate"]
|
|
30
|
-
W1b["/ultrawork"]
|
|
31
|
-
W2["/orchestrate"]
|
|
32
|
-
W3["/plan"]
|
|
33
|
-
W4["/review"]
|
|
34
|
-
W5["/debug"]
|
|
35
|
-
W6["/deepinit"]
|
|
36
|
-
end
|
|
37
|
-
|
|
38
|
-
subgraph Orchestration["Orchestration"]
|
|
39
|
-
direction TB
|
|
40
|
-
PM[oma-pm]
|
|
41
|
-
ORC[oma-orchestrator]
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
subgraph Domain["Domain Agents"]
|
|
45
|
-
direction TB
|
|
46
|
-
FE[oma-frontend]
|
|
47
|
-
BE[oma-backend]
|
|
48
|
-
DB[oma-db]
|
|
49
|
-
MB[oma-mobile]
|
|
50
|
-
TF[oma-tf-infra]
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
subgraph Quality["Quality"]
|
|
54
|
-
direction TB
|
|
55
|
-
QA[oma-qa]
|
|
56
|
-
DBG[oma-debug]
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
Workflows --> Orchestration
|
|
60
|
-
Orchestration --> Domain
|
|
61
|
-
Domain --> Quality
|
|
62
|
-
Quality --> CMT([oma-commit])
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
## Why Different
|
|
66
|
-
|
|
67
|
-
- **`.agents/` is the source of truth**: skills, workflows, shared resources, and config live in one portable project structure instead of being trapped inside one IDE plugin.
|
|
68
|
-
- **Role-shaped agent teams**: PM, QA, DB, Infra, Frontend, Backend, Mobile, Debug, and Workflow agents are modeled like an engineering org, not just a pile of prompts.
|
|
69
|
-
- **Workflow-first orchestration**: planning, review, debug, and coordinated execution are first-class workflows, not afterthoughts.
|
|
70
|
-
- **Standards-aware by design**: agents now carry focused guidance for ISO-driven planning, QA, database continuity/security, and infrastructure governance.
|
|
71
|
-
- **Built for verification**: dashboards, manifest generation, shared execution protocols, and structured outputs favor traceability over vibe-only generation.
|
|
72
|
-
|
|
73
|
-
## Compatibility
|
|
74
|
-
|
|
75
|
-
`oh-my-agent` is designed around `.agents/` and then bridges to other tool-specific skill folders when needed.
|
|
76
|
-
|
|
77
|
-
| Tool / IDE | Skills Source | Interop Mode | Notes |
|
|
78
|
-
|------------|---------------|--------------|-------|
|
|
79
|
-
| Antigravity | `.agents/skills/` | Native | Primary source-of-truth layout |
|
|
80
|
-
| Claude Code | `.claude/skills/` + `.claude/agents/` | Native + Adapter | Symlinks for domain skills + native workflow skills, subagents, and CLAUDE.md |
|
|
81
|
-
| OpenCode | `.agents/skills/` | Native-compatible | Uses the same project-level skill source |
|
|
82
|
-
| 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
|
-
| Cursor | `.agents/skills/` | Native-compatible | Can consume the same project-level skill source |
|
|
85
|
-
| GitHub Copilot | `.github/skills/` | Optional symlink | Installed when selected during setup |
|
|
86
|
-
|
|
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
|
-
|
|
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-engineer, frontend-engineer, mobile-engineer, db-engineer, 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 (oma-backend, oma-frontend, etc.) remain as symlinks from `.agents/skills/`. Workflow skills are native SKILL.md files that reference the corresponding `.agents/workflows/*.md` source of truth.
|
|
99
|
-
|
|
100
|
-
## The `.agents` Spec
|
|
101
|
-
|
|
102
|
-
`oh-my-agent` treats `.agents/` as a portable project convention for agent skills, workflows, and shared context.
|
|
103
|
-
|
|
104
|
-
- Skills live in `.agents/skills/<skill-name>/SKILL.md`
|
|
105
|
-
- Shared resources live in `.agents/skills/_shared/`
|
|
106
|
-
and are grouped into `core/`, `conditional/`, and `runtime/`
|
|
107
|
-
- Workflows live in `.agents/workflows/*.md`
|
|
108
|
-
- Project config lives in `.agents/config/`
|
|
109
|
-
- CLI metadata and packaging stay aligned through generated manifests
|
|
110
|
-
|
|
111
|
-
See [AGENTS_SPEC.md](https://github.com/first-fluke/oh-my-agent/blob/main/docs/AGENTS_SPEC.md) for the project layout, required files, interoperability rules, and source-of-truth model.
|
|
112
|
-
|
|
113
20
|
## What Is This?
|
|
114
21
|
|
|
115
22
|
A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents with explicit roles, workflows, and verification boundaries:
|
|
@@ -126,9 +33,23 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
126
33
|
| **Debug Agent** | Bug diagnosis, root cause analysis, regression tests | "bug", "error", "crash" |
|
|
127
34
|
| **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
|
|
128
35
|
| **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
|
|
129
|
-
| **Orchestrator** | CLI-based parallel agent execution
|
|
36
|
+
| **Orchestrator** | CLI-based parallel agent execution | "spawn agent", "parallel execution" |
|
|
130
37
|
| **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
|
|
131
38
|
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Why Different
|
|
42
|
+
|
|
43
|
+
- **`.agents/` is the source of truth**: skills, workflows, shared resources, and config live in one portable project structure instead of being trapped inside one IDE plugin.
|
|
44
|
+
- **Role-shaped agent teams**: PM, QA, DB, Infra, Frontend, Backend, Mobile, Debug, and Workflow agents are modeled like an engineering org, not just a pile of prompts.
|
|
45
|
+
- **Workflow-first orchestration**: planning, review, debug, and coordinated execution are first-class workflows, not afterthoughts.
|
|
46
|
+
- **Standards-aware by design**: agents now carry focused guidance for ISO-driven planning, QA, database continuity/security, and infrastructure governance.
|
|
47
|
+
- **Built for verification**: dashboards, manifest generation, shared execution protocols, and structured outputs favor traceability over vibe-only generation.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
132
53
|
## Quick Start
|
|
133
54
|
|
|
134
55
|
### Prerequisites
|
|
@@ -199,11 +120,11 @@ You'll also need at least one CLI tool:
|
|
|
199
120
|
→ /ultrawork → Independent tasks execute in parallel across agents
|
|
200
121
|
```
|
|
201
122
|
|
|
202
|
-
**Simple task** (
|
|
123
|
+
**Simple task** (invoke a domain skill directly):
|
|
203
124
|
|
|
204
125
|
```
|
|
205
126
|
"Create a login form with Tailwind CSS and form validation"
|
|
206
|
-
→ oma-frontend
|
|
127
|
+
→ oma-frontend skill
|
|
207
128
|
```
|
|
208
129
|
|
|
209
130
|
**Commit changes** (conventional commits):
|
|
@@ -217,6 +138,53 @@ You'll also need at least one CLI tool:
|
|
|
217
138
|
|
|
218
139
|
For dashboard setup and usage details, see [`web/content/en/guide/usage.md`](https://github.com/first-fluke/oh-my-agent/blob/main/web/content/en/guide/usage.md#real-time-dashboards).
|
|
219
140
|
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
## Architecture
|
|
144
|
+
|
|
145
|
+
```mermaid
|
|
146
|
+
flowchart TD
|
|
147
|
+
subgraph Workflows["Workflows"]
|
|
148
|
+
direction TB
|
|
149
|
+
W0["/brainstorm"]
|
|
150
|
+
W1["/coordinate"]
|
|
151
|
+
W1b["/ultrawork"]
|
|
152
|
+
W2["/orchestrate"]
|
|
153
|
+
W3["/plan"]
|
|
154
|
+
W4["/review"]
|
|
155
|
+
W5["/debug"]
|
|
156
|
+
W6["/deepinit"]
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
subgraph Orchestration["Orchestration"]
|
|
160
|
+
direction TB
|
|
161
|
+
PM[oma-pm]
|
|
162
|
+
ORC[oma-orchestrator]
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
subgraph Domain["Domain Agents"]
|
|
166
|
+
direction TB
|
|
167
|
+
FE[oma-frontend]
|
|
168
|
+
BE[oma-backend]
|
|
169
|
+
DB[oma-db]
|
|
170
|
+
MB[oma-mobile]
|
|
171
|
+
TF[oma-tf-infra]
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
subgraph Quality["Quality"]
|
|
175
|
+
direction TB
|
|
176
|
+
QA[oma-qa]
|
|
177
|
+
DBG[oma-debug]
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
Workflows --> Orchestration
|
|
181
|
+
Orchestration --> Domain
|
|
182
|
+
Domain --> Quality
|
|
183
|
+
Quality --> CMT([oma-commit])
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
220
188
|
## Sponsors
|
|
221
189
|
|
|
222
190
|
This project is maintained thanks to our generous sponsors.
|
|
@@ -252,10 +220,9 @@ This project is maintained thanks to our generous sponsors.
|
|
|
252
220
|
|
|
253
221
|
See [SPONSORS.md](https://github.com/first-fluke/oh-my-agent/blob/main/SPONSORS.md) for a full list of supporters.
|
|
254
222
|
|
|
255
|
-
## Star History
|
|
256
223
|
|
|
257
|
-
[](https://www.star-history.com/#first-fluke/oh-my-agent&type=date&legend=bottom-right)
|
|
258
224
|
|
|
259
225
|
## License
|
|
260
226
|
|
|
261
227
|
MIT
|
|
228
|
+
|