oh-my-agent 3.0.0 → 4.0.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 +13 -12
- package/bin/cli.js +290 -281
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,6 +103,7 @@ Domain skills (oma-backend, oma-frontend, etc.) remain as symlinks from `.agents
|
|
|
103
103
|
|
|
104
104
|
- Skills live in `.agents/skills/<skill-name>/SKILL.md`
|
|
105
105
|
- Shared resources live in `.agents/skills/_shared/`
|
|
106
|
+
and are grouped into `core/`, `conditional/`, and `runtime/`
|
|
106
107
|
- Workflows live in `.agents/workflows/*.md`
|
|
107
108
|
- Project config lives in `.agents/config/`
|
|
108
109
|
- CLI metadata and packaging stay aligned through generated manifests
|
|
@@ -115,10 +116,10 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
115
116
|
|
|
116
117
|
| Agent | Specialization | Triggers |
|
|
117
118
|
|-------|---------------|----------|
|
|
118
|
-
| **Brainstorm** | Design-first ideation before planning | "
|
|
119
|
+
| **Brainstorm** | Design-first ideation before planning | "brainstorm", "ideate", "explore idea" |
|
|
119
120
|
| **PM Agent** | Requirements analysis, task decomposition, architecture | "plan", "break down", "what should we build" |
|
|
120
121
|
| **Frontend Agent** | React/Next.js, TypeScript, Tailwind CSS | "UI", "component", "styling" |
|
|
121
|
-
| **Backend Agent** |
|
|
122
|
+
| **Backend Agent** | Backend (Python, Node.js, Rust, ...) | "API", "database", "authentication" |
|
|
122
123
|
| **DB Agent** | SQL/NoSQL modeling, normalization, integrity, backup, capacity | "ERD", "schema", "database design", "index tuning" |
|
|
123
124
|
| **Mobile Agent** | Flutter cross-platform development | "mobile app", "iOS/Android" |
|
|
124
125
|
| **QA Agent** | OWASP Top 10 security, performance, accessibility | "review security", "audit", "check performance" |
|
|
@@ -126,7 +127,7 @@ A collection of **Agent Skills** enabling collaborative multi-agent development.
|
|
|
126
127
|
| **Developer Workflow** | Monorepo task automation, mise tasks, CI/CD, migrations, release | "dev workflow", "mise tasks", "CI/CD pipeline" |
|
|
127
128
|
| **TF Infra Agent** | Multi-cloud IaC provisioning (AWS, GCP, Azure, OCI) | "infrastructure", "terraform", "cloud setup" |
|
|
128
129
|
| **Orchestrator** | CLI-based parallel agent execution with Serena Memory | "spawn agent", "parallel execution" |
|
|
129
|
-
| **Commit** | Conventional Commits with project-specific rules | "
|
|
130
|
+
| **Commit** | Conventional Commits with project-specific rules | "commit", "save changes" |
|
|
130
131
|
|
|
131
132
|
## Quick Start
|
|
132
133
|
|
|
@@ -159,11 +160,11 @@ Select your project type and skills will be installed to `.agents/skills/`, with
|
|
|
159
160
|
| Preset | Skills |
|
|
160
161
|
|--------|--------|
|
|
161
162
|
| ✨ All | Everything |
|
|
162
|
-
| 🌐 Fullstack | oma-brainstorm, frontend, backend, db, pm, qa, debug, oma-commit |
|
|
163
|
-
| 🎨 Frontend | oma-brainstorm, frontend, pm, qa, debug, oma-commit |
|
|
164
|
-
| ⚙️ Backend | oma-brainstorm, backend, db, pm, qa, debug, oma-commit |
|
|
165
|
-
| 📱 Mobile | oma-brainstorm, mobile, pm, qa, debug, oma-commit |
|
|
166
|
-
| 🚀 DevOps | oma-brainstorm, tf-infra, oma-dev-workflow, pm, qa, debug, oma-commit |
|
|
163
|
+
| 🌐 Fullstack | oma-brainstorm, oma-frontend, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
|
|
164
|
+
| 🎨 Frontend | oma-brainstorm, oma-frontend, oma-pm, oma-qa, oma-debug, oma-commit |
|
|
165
|
+
| ⚙️ Backend | oma-brainstorm, oma-backend, oma-db, oma-pm, oma-qa, oma-debug, oma-commit |
|
|
166
|
+
| 📱 Mobile | oma-brainstorm, oma-mobile, oma-pm, oma-qa, oma-debug, oma-commit |
|
|
167
|
+
| 🚀 DevOps | oma-brainstorm, oma-tf-infra, oma-dev-workflow, oma-pm, oma-qa, oma-debug, oma-commit |
|
|
167
168
|
|
|
168
169
|
### Option 3: Global Installation (For Orchestrator)
|
|
169
170
|
|
|
@@ -177,10 +178,10 @@ You'll also need at least one CLI tool:
|
|
|
177
178
|
|
|
178
179
|
| CLI | Install | Auth |
|
|
179
180
|
|-----|---------|------|
|
|
180
|
-
| Gemini | `bun install --global @google/gemini-cli` | `gemini
|
|
181
|
-
| Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | `claude
|
|
182
|
-
| Codex | `bun install --global @openai/codex` | `codex
|
|
183
|
-
| Qwen | `bun install --global @qwen-code/qwen` |
|
|
181
|
+
| Gemini | `bun install --global @google/gemini-cli` | Auto on first `gemini` run |
|
|
182
|
+
| Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | Auto on first `claude` run |
|
|
183
|
+
| Codex | `bun install --global @openai/codex` | `codex login` |
|
|
184
|
+
| Qwen | `bun install --global @qwen-code/qwen-code` | `/auth` inside CLI |
|
|
184
185
|
|
|
185
186
|
### 2. Chat
|
|
186
187
|
|