oh-my-ag 4.8.0 → 4.9.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 +84 -125
- package/bin/cli.js +238 -241
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,152 +4,103 @@
|
|
|
4
4
|
|
|
5
5
|
[한국어](./docs/README.ko.md) | [中文](./docs/README.zh.md) | [Português](./docs/README.pt.md) | [日本語](./docs/README.ja.md) | [Français](./docs/README.fr.md) | [Español](./docs/README.es.md) | [Nederlands](./docs/README.nl.md) | [Polski](./docs/README.pl.md) | [Русский](./docs/README.ru.md) | [Deutsch](./docs/README.de.md)
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
11
|
-
## Table of Contents
|
|
12
|
-
|
|
13
|
-
- [What Is This?](#what-is-this)
|
|
14
|
-
- [Why Different](#why-different)
|
|
15
|
-
- [Quick Start](#quick-start)
|
|
16
|
-
- [Architecture](#architecture)
|
|
17
|
-
- [Sponsors](#sponsors)
|
|
18
|
-
- [License](#license)
|
|
19
|
-
|
|
20
|
-
## What Is This?
|
|
21
|
-
|
|
22
|
-
A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents with explicit roles, workflows, and verification boundaries:
|
|
23
|
-
|
|
24
|
-
| Agent | Specialization | Triggers |
|
|
25
|
-
|-------|---------------|----------|
|
|
26
|
-
| **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
|
|
27
|
-
| **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
|
|
28
|
-
| **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
|
|
29
|
-
| **Backend Agent** | Backend (Python, Node.js, Rust, ...) | "API", "database", "authentication" |
|
|
30
|
-
| **DB Agent** | SQL/NoSQL modeling, normalization, integrity, backup, capacity | "ERD", "schema", "database design", "index tuning" |
|
|
31
|
-
| **Mobile Agent** | Flutter cross-platform development | "mobile app", "iOS/Android" |
|
|
32
|
-
| **QA Agent** | OWASP Top 10 security, performance, accessibility | "review security", "audit", "check performance" |
|
|
33
|
-
| **Debug Agent** | Bug diagnosis, root cause analysis, regression tests | "bug", "error", "crash" |
|
|
34
|
-
| **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
|
|
35
|
-
| **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
|
|
36
|
-
| **Orchestrator** | CLI-based parallel agent execution | "spawn agent", "parallel execution" |
|
|
37
|
-
| **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
|
|
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
|
-
|
|
7
|
+
Ever wished your AI assistant had coworkers? That's what oh-my-agent does.
|
|
50
8
|
|
|
9
|
+
Instead of one AI doing everything (and getting confused halfway through), oh-my-agent splits work across **specialized agents** — frontend, backend, QA, PM, DB, mobile, infra, debug, design, and more. Each one knows its domain deeply, has its own tools and checklists, and stays in its lane.
|
|
51
10
|
|
|
11
|
+
Works with all major AI IDEs: Antigravity, Claude Code, Cursor, Gemini CLI, Codex CLI, OpenCode, and more.
|
|
52
12
|
|
|
53
13
|
## Quick Start
|
|
54
14
|
|
|
55
|
-
### Prerequisites
|
|
56
|
-
|
|
57
|
-
- **AI IDE** (Antigravity, Claude Code, Codex, Gemini, etc.)
|
|
58
|
-
|
|
59
|
-
### Option 1: One-Line Install (Recommended)
|
|
60
|
-
|
|
61
15
|
```bash
|
|
16
|
+
# One-liner (auto-installs bun & uv if missing)
|
|
62
17
|
curl -fsSL https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.sh | bash
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
Automatically detects and installs missing dependencies (bun, uv), then launches the interactive setup.
|
|
66
|
-
|
|
67
|
-
### Option 2: Manual Install
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
# Install bun if you don't have it:
|
|
71
|
-
# curl -fsSL https://bun.sh/install | bash
|
|
72
|
-
|
|
73
|
-
# Install uv if you don't have it:
|
|
74
|
-
# curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
75
18
|
|
|
19
|
+
# Or manual
|
|
76
20
|
bunx oh-my-agent
|
|
77
21
|
```
|
|
78
22
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
| Preset |
|
|
82
|
-
|
|
83
|
-
| ✨ All |
|
|
84
|
-
| 🌐 Fullstack |
|
|
85
|
-
| 🎨 Frontend |
|
|
86
|
-
| ⚙️ Backend |
|
|
87
|
-
| 📱 Mobile |
|
|
88
|
-
| 🚀 DevOps |
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
|
105
|
-
|
|
106
|
-
|
|
|
107
|
-
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
**Complex project** (/coordinate workflow):
|
|
114
|
-
|
|
115
|
-
```
|
|
116
|
-
"Build a TODO app with user authentication"
|
|
117
|
-
→ /coordinate → PM Agent plans → agents spawned in Agent Manager
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
**Maximum deployment** (/ultrawork workflow):
|
|
23
|
+
Pick a preset and you're ready:
|
|
24
|
+
|
|
25
|
+
| Preset | What You Get |
|
|
26
|
+
|--------|-------------|
|
|
27
|
+
| ✨ All | Every agent and skill |
|
|
28
|
+
| 🌐 Fullstack | frontend + backend + db + pm + qa + debug + brainstorm + commit |
|
|
29
|
+
| 🎨 Frontend | frontend + pm + qa + debug + brainstorm + commit |
|
|
30
|
+
| ⚙️ Backend | backend + db + pm + qa + debug + brainstorm + commit |
|
|
31
|
+
| 📱 Mobile | mobile + pm + qa + debug + brainstorm + commit |
|
|
32
|
+
| 🚀 DevOps | tf-infra + dev-workflow + pm + qa + debug + brainstorm + commit |
|
|
33
|
+
|
|
34
|
+
## Your Agent Team
|
|
35
|
+
|
|
36
|
+
| Agent | What They Do |
|
|
37
|
+
|-------|-------------|
|
|
38
|
+
| **oma-brainstorm** | Explores ideas before you commit to building |
|
|
39
|
+
| **oma-pm** | Plans tasks, breaks down requirements, defines API contracts |
|
|
40
|
+
| **oma-frontend** | React/Next.js, TypeScript, Tailwind CSS v4, shadcn/ui |
|
|
41
|
+
| **oma-backend** | APIs in Python, Node.js, or Rust |
|
|
42
|
+
| **oma-db** | Schema design, migrations, indexing, vector DB |
|
|
43
|
+
| **oma-mobile** | Flutter cross-platform apps |
|
|
44
|
+
| **oma-design** | Design systems, tokens, accessibility, responsive |
|
|
45
|
+
| **oma-qa** | OWASP security, performance, accessibility review |
|
|
46
|
+
| **oma-debug** | Root cause analysis, fixes, regression tests |
|
|
47
|
+
| **oma-tf-infra** | Multi-cloud Terraform IaC |
|
|
48
|
+
| **oma-dev-workflow** | CI/CD, releases, monorepo automation |
|
|
49
|
+
| **oma-translator** | Natural multilingual translation |
|
|
50
|
+
| **oma-orchestrator** | Parallel agent execution via CLI |
|
|
51
|
+
| **oma-commit** | Clean conventional commits |
|
|
52
|
+
|
|
53
|
+
## How It Works
|
|
54
|
+
|
|
55
|
+
Just chat. Describe what you want and oh-my-agent figures out which agents to use.
|
|
121
56
|
|
|
122
57
|
```
|
|
123
|
-
"
|
|
124
|
-
→
|
|
58
|
+
You: "Build a TODO app with user authentication"
|
|
59
|
+
→ PM plans the work
|
|
60
|
+
→ Backend builds auth API
|
|
61
|
+
→ Frontend builds React UI
|
|
62
|
+
→ DB designs schema
|
|
63
|
+
→ QA reviews everything
|
|
64
|
+
→ Done: coordinated, reviewed code
|
|
125
65
|
```
|
|
126
66
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
```
|
|
130
|
-
"Create a login form with Tailwind CSS and form validation"
|
|
131
|
-
→ oma-frontend skill
|
|
132
|
-
```
|
|
67
|
+
Or use slash commands for structured workflows:
|
|
133
68
|
|
|
134
|
-
|
|
69
|
+
| Command | What It Does |
|
|
70
|
+
|---------|-------------|
|
|
71
|
+
| `/plan` | PM breaks down your feature into tasks |
|
|
72
|
+
| `/coordinate` | Step-by-step multi-agent execution |
|
|
73
|
+
| `/orchestrate` | Automated parallel agent spawning |
|
|
74
|
+
| `/ultrawork` | 5-phase quality workflow with 11 review gates |
|
|
75
|
+
| `/review` | Security + performance + accessibility audit |
|
|
76
|
+
| `/debug` | Structured root-cause debugging |
|
|
77
|
+
| `/design` | 7-phase design system workflow |
|
|
78
|
+
| `/brainstorm` | Free-form ideation |
|
|
79
|
+
| `/commit` | Conventional commit with type/scope analysis |
|
|
135
80
|
|
|
136
|
-
|
|
137
|
-
/commit
|
|
138
|
-
→ Analyze changes, suggest commit type/scope, create commit with Co-Author
|
|
139
|
-
```
|
|
81
|
+
**Auto-detection**: You don't even need slash commands — keywords like "plan", "review", "debug" in your message (in 11 languages!) auto-activate the right workflow.
|
|
140
82
|
|
|
141
|
-
|
|
83
|
+
## CLI
|
|
142
84
|
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
|
|
85
|
+
```bash
|
|
86
|
+
# Install globally
|
|
87
|
+
bun install --global oh-my-agent # or: brew install oh-my-agent
|
|
88
|
+
|
|
89
|
+
# Use anywhere
|
|
90
|
+
oma doctor # Health check
|
|
91
|
+
oma dashboard # Real-time agent monitoring
|
|
92
|
+
oma agent:spawn backend "Build auth API" session-01
|
|
93
|
+
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
|
|
146
94
|
```
|
|
147
95
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
For dashboard setup and usage details, see [`web/content/en/guide/usage.md`](./web/content/en/guide/usage.md#real-time-dashboards).
|
|
151
|
-
|
|
96
|
+
## Why oh-my-agent?
|
|
152
97
|
|
|
98
|
+
- **Portable** — `.agents/` travels with your project, not trapped in one IDE
|
|
99
|
+
- **Role-based** — Agents modeled like a real engineering team, not a pile of prompts
|
|
100
|
+
- **Token-efficient** — Two-layer skill design saves ~75% of tokens
|
|
101
|
+
- **Quality-first** — Charter preflight, quality gates, and review workflows built in
|
|
102
|
+
- **Multi-vendor** — Mix Gemini, Claude, Codex, and Qwen per agent type
|
|
103
|
+
- **Observable** — Terminal and web dashboards for real-time monitoring
|
|
153
104
|
|
|
154
105
|
## Architecture
|
|
155
106
|
|
|
@@ -196,7 +147,11 @@ flowchart TD
|
|
|
196
147
|
Quality --> CMT([oma-commit])
|
|
197
148
|
```
|
|
198
149
|
|
|
150
|
+
## Learn More
|
|
199
151
|
|
|
152
|
+
- **[Detailed Documentation](./docs/AGENTS_SPEC.md)** — Full technical spec and architecture
|
|
153
|
+
- **[Supported Agents](./docs/SUPPORTED_AGENTS.md)** — Agent support matrix across IDEs
|
|
154
|
+
- **[Web Docs](https://oh-my-agent.dev)** — Guides, tutorials, and CLI reference
|
|
200
155
|
|
|
201
156
|
## Sponsors
|
|
202
157
|
|
|
@@ -235,7 +190,11 @@ See [SPONSORS.md](./SPONSORS.md) for a full list of supporters.
|
|
|
235
190
|
|
|
236
191
|
|
|
237
192
|
|
|
193
|
+
## Star History
|
|
194
|
+
|
|
195
|
+
[](https://www.star-history.com/#first-fluke/oh-my-agent&type=date&legend=bottom-right)
|
|
196
|
+
|
|
197
|
+
|
|
238
198
|
## License
|
|
239
199
|
|
|
240
200
|
MIT
|
|
241
|
-
|