oh-my-agent 2.2.0 → 2.3.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 +217 -0
  2. package/bin/cli.js +247 -246
  3. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,217 @@
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 9 specialized domain agents (PM, Frontend, Backend, 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
+ MB[mobile-agent]
46
+ TF[tf-infra-agent]
47
+ end
48
+
49
+ subgraph Quality["Quality"]
50
+ direction TB
51
+ QA[qa-agent]
52
+ DBG[debug-agent]
53
+ end
54
+
55
+ Workflows --> Orchestration
56
+ Orchestration --> Domain
57
+ Domain --> Quality
58
+ Quality --> CMT([commit])
59
+ ```
60
+
61
+ ## What Is This?
62
+
63
+ A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents:
64
+
65
+ | Agent | Specialization | Triggers |
66
+ |-------|---------------|----------|
67
+ | **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
68
+ | **Workflow Guide** | Coordinates complex multi-agent projects | "multi-domain", "complex project" |
69
+ | **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
70
+ | **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
71
+ | **Backend Agent** | FastAPI, PostgreSQL, JWT authentication | "API", "database", "authentication" |
72
+ | **Mobile Agent** | Flutter cross-platform development | "mobile app", "iOS/Android" |
73
+ | **QA Agent** | OWASP Top 10 security, performance, accessibility | "review security", "audit", "check performance" |
74
+ | **Debug Agent** | Bug diagnosis, root cause analysis, regression tests | "bug", "error", "crash" |
75
+ | **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
76
+ | **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
77
+ | **Orchestrator** | CLI-based parallel agent execution with Serena Memory | "spawn agent", "parallel execution" |
78
+ | **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
79
+
80
+ ## Quick Start
81
+
82
+ ### Prerequisites
83
+
84
+ - **AI IDE** (Antigravity, Claude Code, Codex, Gemini, etc.)
85
+ - **Bun** (for CLI and dashboards)
86
+ - **uv** (for Serena setup)
87
+
88
+ ### Option 1: Interactive CLI (Recommended)
89
+
90
+ ```bash
91
+ # Install bun if you don't have it:
92
+ # curl -fsSL https://bun.sh/install | bash
93
+
94
+ # Install uv if you don't have it:
95
+ # curl -LsSf https://astral.sh/uv/install.sh | sh
96
+
97
+ bunx oh-my-agent
98
+ ```
99
+
100
+ Select your project type and skills will be installed to `.agents/skills/`, with compatibility symlinks created under `.agents/skills/` and `.claude/skills/`.
101
+
102
+ | Preset | Skills |
103
+ |--------|--------|
104
+ | ✨ All | Everything |
105
+ | 🌐 Fullstack | brainstorm, frontend, backend, pm, qa, debug, commit |
106
+ | 🎨 Frontend | brainstorm, frontend, pm, qa, debug, commit |
107
+ | ⚙️ Backend | brainstorm, backend, pm, qa, debug, commit |
108
+ | 📱 Mobile | brainstorm, mobile, pm, qa, debug, commit |
109
+ | 🚀 DevOps | brainstorm, tf-infra, dev-workflow, pm, qa, debug, commit |
110
+
111
+ ### Option 2: Global Installation (For Orchestrator)
112
+
113
+ To use the core tools globally or run the SubAgent Orchestrator:
114
+
115
+ ```bash
116
+ bun install --global oh-my-agent
117
+ ```
118
+
119
+ You'll also need at least one CLI tool:
120
+
121
+ | CLI | Install | Auth |
122
+ |-----|---------|------|
123
+ | Gemini | `bun install --global @google/gemini-cli` | `gemini auth` |
124
+ | Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | `claude auth` |
125
+ | Codex | `bun install --global @openai/codex` | `codex auth` |
126
+ | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
127
+
128
+ ### Option 3: Integrate into Existing Project
129
+
130
+ **Recommended (CLI):**
131
+
132
+ Run the following command in your project root to automatically install/update skills and workflows:
133
+
134
+ ```bash
135
+ bunx oh-my-agent
136
+ ```
137
+
138
+ > **Tip:** Run `bunx oh-my-agent doctor` after installation to verify everything is set up correctly (including global workflows).
139
+
140
+
141
+
142
+ ### 2. Chat
143
+
144
+ **Explicit coordination** (user-triggered workflow):
145
+
146
+ ```
147
+ /coordinate
148
+ → Step-by-step: PM planning → agent spawning → QA review
149
+ ```
150
+
151
+ **Complex project** (workflow-guide coordinates):
152
+
153
+ ```
154
+ "Build a TODO app with user authentication"
155
+ → workflow-guide → PM Agent plans → agents spawned in Agent Manager
156
+ ```
157
+
158
+ **Simple task** (single agent auto-activates):
159
+
160
+ ```
161
+ "Create a login form with Tailwind CSS and form validation"
162
+ → frontend-agent activates
163
+ ```
164
+
165
+ **Commit changes** (conventional commits):
166
+
167
+ ```
168
+ /commit
169
+ → Analyze changes, suggest commit type/scope, create commit with Co-Author
170
+ ```
171
+
172
+ ### 3. Monitor with Dashboards
173
+
174
+ 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).
175
+
176
+ ## Sponsors
177
+
178
+ This project is maintained thanks to our generous sponsors.
179
+
180
+ > **Like this project?** Give it a star!
181
+ >
182
+ > ```bash
183
+ > gh api --method PUT /user/starred/first-fluke/oh-my-agent
184
+ > ```
185
+ >
186
+ > Try our optimized starter template: [fullstack-starter](https://github.com/first-fluke/fullstack-starter)
187
+
188
+ <a href="https://github.com/sponsors/first-fluke">
189
+ <img src="https://img.shields.io/badge/Sponsor-♥-ea4aaa?style=for-the-badge" alt="Sponsor" />
190
+ </a>
191
+ <a href="https://buymeacoffee.com/firstfluke">
192
+ <img src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-☕-FFDD00?style=for-the-badge" alt="Buy Me a Coffee" />
193
+ </a>
194
+
195
+ ### 🚀 Champion
196
+
197
+ <!-- Champion tier ($100/mo) logos here -->
198
+
199
+ ### 🛸 Booster
200
+
201
+ <!-- Booster tier ($30/mo) logos here -->
202
+
203
+ ### ☕ Contributor
204
+
205
+ <!-- Contributor tier ($10/mo) names here -->
206
+
207
+ [Become a sponsor →](https://github.com/sponsors/first-fluke)
208
+
209
+ See [SPONSORS.md](https://github.com/first-fluke/oh-my-agent/blob/main/SPONSORS.md) for a full list of supporters.
210
+
211
+ ## Star History
212
+
213
+ [![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)
214
+
215
+ ## License
216
+
217
+ MIT