oh-my-agent 2.2.0 → 2.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.
Files changed (3) hide show
  1. package/README.md +219 -0
  2. package/bin/cli.js +247 -246
  3. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,219 @@
1
+ # oh-my-agent: Multi-Agent Harness
2
+
3
+ [![npm version](https://img.shields.io/npm/v/oh-my-agent?color=cb3837&logo=npm)](https://www.npmjs.com/package/oh-my-agent) [![npm downloads](https://img.shields.io/npm/dm/oh-my-agent?color=cb3837&logo=npm)](https://www.npmjs.com/package/oh-my-agent) [![GitHub stars](https://img.shields.io/github/stars/first-fluke/oh-my-agent?style=flat&logo=github)](https://github.com/first-fluke/oh-my-agent) [![License](https://img.shields.io/github/license/first-fluke/oh-my-agent)](https://github.com/first-fluke/oh-my-agent/blob/main/LICENSE) [![Last Updated](https://img.shields.io/github/last-commit/first-fluke/oh-my-agent?label=updated&logo=git)](https://github.com/first-fluke/oh-my-agent/commits/main)
4
+
5
+ [한국어](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.ko.md) | [中文](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.zh.md) | [Português](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.pt.md) | [日本語](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.ja.md) | [Français](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.fr.md) | [Español](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.es.md) | [Nederlands](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.nl.md) | [Polski](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.pl.md) | [Українська](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.uk.md) | [Русский](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.ru.md) | [Deutsch](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.de.md)
6
+
7
+ The Ultimate Agent Orchestrator for agentic coding.
8
+
9
+ Orchestrate 10 specialized domain agents (PM, Frontend, Backend, DB, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform) via **Serena Memory**. Features parallel CLI execution, real-time observability dashboards, and zero-config progressive skill loading. The batteries-included solution for agentic coding.
10
+
11
+ ## Table of Contents
12
+
13
+ - [Architecture](#architecture)
14
+ - [What Is This?](#what-is-this)
15
+ - [Quick Start](#quick-start)
16
+ - [Sponsors](#sponsors)
17
+ - [License](#license)
18
+
19
+ ## Architecture
20
+
21
+ ```mermaid
22
+ flowchart TD
23
+ subgraph Workflows["Workflows"]
24
+ direction TB
25
+ W0["/brainstorm"]
26
+ W1["/coordinate"]
27
+ W1b["/coordinate-pro"]
28
+ W2["/orchestrate"]
29
+ W3["/plan"]
30
+ W4["/review"]
31
+ W5["/debug"]
32
+ end
33
+
34
+ subgraph Orchestration["Orchestration"]
35
+ direction TB
36
+ PM[pm-agent]
37
+ WF[workflow-guide]
38
+ ORC[orchestrator]
39
+ end
40
+
41
+ subgraph Domain["Domain Agents"]
42
+ direction TB
43
+ FE[frontend-agent]
44
+ BE[backend-agent]
45
+ DB[db-agent]
46
+ MB[mobile-agent]
47
+ TF[tf-infra-agent]
48
+ end
49
+
50
+ subgraph Quality["Quality"]
51
+ direction TB
52
+ QA[qa-agent]
53
+ DBG[debug-agent]
54
+ end
55
+
56
+ Workflows --> Orchestration
57
+ Orchestration --> Domain
58
+ Domain --> Quality
59
+ Quality --> CMT([commit])
60
+ ```
61
+
62
+ ## What Is This?
63
+
64
+ A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents:
65
+
66
+ | Agent | Specialization | Triggers |
67
+ |-------|---------------|----------|
68
+ | **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
69
+ | **Workflow Guide** | Coordinates complex multi-agent projects | "multi-domain", "complex project" |
70
+ | **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
71
+ | **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
72
+ | **Backend Agent** | FastAPI, PostgreSQL, JWT authentication | "API", "database", "authentication" |
73
+ | **DB Agent** | SQL/NoSQL modeling, normalization, integrity, backup, capacity | "ERD", "schema", "database design", "index tuning" |
74
+ | **Mobile Agent** | Flutter cross-platform development | "mobile app", "iOS/Android" |
75
+ | **QA Agent** | OWASP Top 10 security, performance, accessibility | "review security", "audit", "check performance" |
76
+ | **Debug Agent** | Bug diagnosis, root cause analysis, regression tests | "bug", "error", "crash" |
77
+ | **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
78
+ | **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
79
+ | **Orchestrator** | CLI-based parallel agent execution with Serena Memory | "spawn agent", "parallel execution" |
80
+ | **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
81
+
82
+ ## Quick Start
83
+
84
+ ### Prerequisites
85
+
86
+ - **AI IDE** (Antigravity, Claude Code, Codex, Gemini, etc.)
87
+ - **Bun** (for CLI and dashboards)
88
+ - **uv** (for Serena setup)
89
+
90
+ ### Option 1: Interactive CLI (Recommended)
91
+
92
+ ```bash
93
+ # Install bun if you don't have it:
94
+ # curl -fsSL https://bun.sh/install | bash
95
+
96
+ # Install uv if you don't have it:
97
+ # curl -LsSf https://astral.sh/uv/install.sh | sh
98
+
99
+ bunx oh-my-agent
100
+ ```
101
+
102
+ Select your project type and skills will be installed to `.agents/skills/`, with compatibility symlinks created under `.agents/skills/` and `.claude/skills/`.
103
+
104
+ | Preset | Skills |
105
+ |--------|--------|
106
+ | ✨ All | Everything |
107
+ | 🌐 Fullstack | brainstorm, frontend, backend, db, pm, qa, debug, commit |
108
+ | 🎨 Frontend | brainstorm, frontend, pm, qa, debug, commit |
109
+ | ⚙️ Backend | brainstorm, backend, db, pm, qa, debug, commit |
110
+ | 📱 Mobile | brainstorm, mobile, pm, qa, debug, commit |
111
+ | 🚀 DevOps | brainstorm, tf-infra, dev-workflow, pm, qa, debug, commit |
112
+
113
+ ### Option 2: Global Installation (For Orchestrator)
114
+
115
+ To use the core tools globally or run the SubAgent Orchestrator:
116
+
117
+ ```bash
118
+ bun install --global oh-my-agent
119
+ ```
120
+
121
+ You'll also need at least one CLI tool:
122
+
123
+ | CLI | Install | Auth |
124
+ |-----|---------|------|
125
+ | Gemini | `bun install --global @google/gemini-cli` | `gemini auth` |
126
+ | Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | `claude auth` |
127
+ | Codex | `bun install --global @openai/codex` | `codex auth` |
128
+ | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
129
+
130
+ ### Option 3: Integrate into Existing Project
131
+
132
+ **Recommended (CLI):**
133
+
134
+ Run the following command in your project root to automatically install/update skills and workflows:
135
+
136
+ ```bash
137
+ bunx oh-my-agent
138
+ ```
139
+
140
+ > **Tip:** Run `bunx oh-my-agent doctor` after installation to verify everything is set up correctly (including global workflows).
141
+
142
+
143
+
144
+ ### 2. Chat
145
+
146
+ **Explicit coordination** (user-triggered workflow):
147
+
148
+ ```
149
+ /coordinate
150
+ → Step-by-step: PM planning → agent spawning → QA review
151
+ ```
152
+
153
+ **Complex project** (workflow-guide coordinates):
154
+
155
+ ```
156
+ "Build a TODO app with user authentication"
157
+ → workflow-guide → PM Agent plans → agents spawned in Agent Manager
158
+ ```
159
+
160
+ **Simple task** (single agent auto-activates):
161
+
162
+ ```
163
+ "Create a login form with Tailwind CSS and form validation"
164
+ → frontend-agent activates
165
+ ```
166
+
167
+ **Commit changes** (conventional commits):
168
+
169
+ ```
170
+ /commit
171
+ → Analyze changes, suggest commit type/scope, create commit with Co-Author
172
+ ```
173
+
174
+ ### 3. Monitor with Dashboards
175
+
176
+ 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).
177
+
178
+ ## Sponsors
179
+
180
+ This project is maintained thanks to our generous sponsors.
181
+
182
+ > **Like this project?** Give it a star!
183
+ >
184
+ > ```bash
185
+ > gh api --method PUT /user/starred/first-fluke/oh-my-agent
186
+ > ```
187
+ >
188
+ > Try our optimized starter template: [fullstack-starter](https://github.com/first-fluke/fullstack-starter)
189
+
190
+ <a href="https://github.com/sponsors/first-fluke">
191
+ <img src="https://img.shields.io/badge/Sponsor-♥-ea4aaa?style=for-the-badge" alt="Sponsor" />
192
+ </a>
193
+ <a href="https://buymeacoffee.com/firstfluke">
194
+ <img src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-☕-FFDD00?style=for-the-badge" alt="Buy Me a Coffee" />
195
+ </a>
196
+
197
+ ### 🚀 Champion
198
+
199
+ <!-- Champion tier ($100/mo) logos here -->
200
+
201
+ ### 🛸 Booster
202
+
203
+ <!-- Booster tier ($30/mo) logos here -->
204
+
205
+ ### ☕ Contributor
206
+
207
+ <!-- Contributor tier ($10/mo) names here -->
208
+
209
+ [Become a sponsor →](https://github.com/sponsors/first-fluke)
210
+
211
+ See [SPONSORS.md](https://github.com/first-fluke/oh-my-agent/blob/main/SPONSORS.md) for a full list of supporters.
212
+
213
+ ## Star History
214
+
215
+ [![Star History Chart](https://api.star-history.com/svg?repos=first-fluke/oh-my-agent&type=date&legend=bottom-right)](https://www.star-history.com/#first-fluke/oh-my-agent&type=date&legend=bottom-right)
216
+
217
+ ## License
218
+
219
+ MIT