oh-my-agent 6.14.0 → 6.16.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 +4 -9
- package/bin/cli.js +572 -556
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -10,13 +10,6 @@ Instead of one AI doing everything (and getting confused halfway through), oh-my
|
|
|
10
10
|
|
|
11
11
|
Works with all major AI IDEs: Antigravity, Claude Code, Cursor, Gemini CLI, Codex CLI, OpenCode, and more.
|
|
12
12
|
|
|
13
|
-
Vendor-native subagents are generated from `.agents/agents/`:
|
|
14
|
-
- Claude Code uses `.claude/agents/*.md`
|
|
15
|
-
- Codex CLI uses `.codex/agents/*.toml`
|
|
16
|
-
- Gemini CLI uses `.gemini/agents/*.md`
|
|
17
|
-
|
|
18
|
-
When a workflow resolves an agent to the same vendor as the current runtime, it should use that vendor's native subagent path first. Cross-vendor tasks fall back to `oma agent:spawn`.
|
|
19
|
-
|
|
20
13
|
## Quick Start
|
|
21
14
|
|
|
22
15
|
```bash
|
|
@@ -42,7 +35,7 @@ bunx oh-my-agent@latest
|
|
|
42
35
|
> Not to be confused with `oma-observability`'s APM (Application Performance Monitoring).
|
|
43
36
|
|
|
44
37
|
```bash
|
|
45
|
-
#
|
|
38
|
+
# All skills, deployed to every detected runtime
|
|
46
39
|
# (.claude, .cursor, .codex, .opencode, .github, .agents)
|
|
47
40
|
apm install first-fluke/oh-my-agent
|
|
48
41
|
|
|
@@ -52,7 +45,7 @@ apm install first-fluke/oh-my-agent/.agents/skills/oma-frontend
|
|
|
52
45
|
|
|
53
46
|
APM reads `.claude-plugin/plugin.json`'s `skills: .agents/skills/` pointer, so the `.agents/` SSOT is the only source — no build step or mirror.
|
|
54
47
|
|
|
55
|
-
APM ships
|
|
48
|
+
APM ships skills only. For workflows, rules, `oma-config.yaml`, keyword-detection hooks, and the `oma agent:spawn` CLI, use `bunx oh-my-agent@latest`. Pick one distribution per project to avoid drift.
|
|
56
49
|
|
|
57
50
|
</details>
|
|
58
51
|
|
|
@@ -79,6 +72,7 @@ Pick a preset and you're ready:
|
|
|
79
72
|
| **oma-debug** | Root cause analysis, fixes, regression tests |
|
|
80
73
|
| **oma-design** | Design systems, tokens, accessibility, responsive |
|
|
81
74
|
| **oma-dev-workflow** | CI/CD, releases, monorepo automation |
|
|
75
|
+
| **oma-docs** | Documentation drift detection — verify code↔docs refs, sync diff-affected docs |
|
|
82
76
|
| **oma-frontend** | React/Next.js, TypeScript, Tailwind CSS v4, shadcn/ui |
|
|
83
77
|
| **oma-hwp** | HWP/HWPX/HWPML to Markdown conversion |
|
|
84
78
|
| **oma-image** | Multi-vendor AI image generation |
|
|
@@ -92,6 +86,7 @@ Pick a preset and you're ready:
|
|
|
92
86
|
| **oma-scholar** | Academic research companion — literature search, peer review |
|
|
93
87
|
| **oma-scm** | SCM (software configuration management) — branching, merges, worktrees, baselines; Conventional Commits |
|
|
94
88
|
| **oma-search** | Intent-based search router with trust scoring — docs, web, code, local |
|
|
89
|
+
| **oma-skill-creator** | Authors and audits OMA skills in the SSL-lite format |
|
|
95
90
|
| **oma-tf-infra** | Multi-cloud Terraform IaC (Infrastructure as Code) |
|
|
96
91
|
| **oma-translator** | Natural multilingual translation |
|
|
97
92
|
|