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.
Files changed (3) hide show
  1. package/README.md +84 -125
  2. package/bin/cli.js +238 -241
  3. 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
- The portable, role-based agent harness for serious AI-assisted engineering.
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
- Select your project type and skills will be installed to `.agents/skills/`, with compatibility symlinks created under `.agents/skills/` and `.claude/skills/`.
80
-
81
- | Preset | Skills |
82
- |--------|--------|
83
- | ✨ All | Everything |
84
- | 🌐 Fullstack | oma-brainstorm, oma-frontend, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
85
- | 🎨 Frontend | oma-brainstorm, oma-frontend, oma-pm, oma-qa, oma-debug, oma-commit |
86
- | ⚙️ Backend | oma-brainstorm, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
87
- | 📱 Mobile | oma-brainstorm, oma-mobile, oma-pm, oma-qa, oma-debug, oma-commit |
88
- | 🚀 DevOps | oma-brainstorm, oma-tf-infra, oma-dev-workflow, oma-pm, oma-qa, oma-debug, oma-commit |
89
-
90
- ### Option 3: Global Installation (For Orchestrator)
91
-
92
- To use the core tools globally or run the SubAgent Orchestrator:
93
-
94
- ```bash
95
- # Homebrew (macOS/Linux)
96
- brew install oh-my-agent
97
-
98
- # npm/bun
99
- bun install --global oh-my-agent
100
- ```
101
-
102
- You'll also need at least one CLI tool:
103
-
104
- | CLI | Install | Auth |
105
- |-----|---------|------|
106
- | Gemini | `bun install --global @google/gemini-cli` | Auto on first `gemini` run |
107
- | Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | Auto on first `claude` run |
108
- | Codex | `bun install --global @openai/codex` | `codex login` |
109
- | Qwen | `bun install --global @qwen-code/qwen-code` | `/auth` inside CLI |
110
-
111
- ### 2. Chat
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
- "Refactor auth module, add API tests, and update docs"
124
- /ultrawork Independent tasks execute in parallel across agents
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
- **Simple task** (invoke a domain skill directly):
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
- **Commit changes** (conventional commits):
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
- **Design system** (DESIGN.md + anti-patterns + optional Stitch MCP):
83
+ ## CLI
142
84
 
143
- ```
144
- /design
145
- 7-phase workflow: Setup Extract → Enhance → Propose → Generate → Audit → Handoff
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
- ### 3. Monitor with Dashboards
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
+ [![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)
196
+
197
+
238
198
  ## License
239
199
 
240
200
  MIT
241
-