oh-my-agent 11.9.2 → 11.10.1

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 +14 -3
  2. package/bin/cli.js +892 -890
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -4,6 +4,9 @@
4
4
 
5
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.ru.md) | [Deutsch](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.de.md) | [Tiếng Việt](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.vi.md) | [ภาษาไทย](https://github.com/first-fluke/oh-my-agent/blob/main/docs/README.th.md)
6
6
 
7
+ **The hardcore multi-agent orchestrator for production-grade software.**
8
+ Not just another chat wrapper—oh-my-agent is a professional harness that gives your AI assistant an entire engineering team.
9
+
7
10
  Ever wished your AI assistant had coworkers? That's what oh-my-agent does.
8
11
 
9
12
  Instead of one AI doing everything (and getting confused halfway through), oh-my-agent splits work across **specialized agents** — frontend, backend, architecture, 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.
@@ -29,10 +32,18 @@ irm https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.p
29
32
  bunx oh-my-agent@latest
30
33
  ```
31
34
 
32
- ### Install via Agent Package Manager
35
+ ### Install as an Agent Plugin
36
+
37
+ oma exports a portable [Agent Plugins](https://agent-plugins.org) 1.0.0 package — the open packaging standard backed by AWS, Cursor, Microsoft, OpenAI, and Vercel:
38
+
39
+ ```bash
40
+ oma emit --target agent-plugin # writes generated/agent-plugin/
41
+ ```
42
+
43
+ Point any conformant client (Kiro, AWS Agent Toolkit, and more as clients roll out support) at that directory. Conformant clients load the skills and MCP servers; workflows, rules, and `oma-config.yaml` ride along under the `com.firstfluke.oma` extension namespace for oma-aware installs. Hooks and `oma agent:spawn` still need the full `bunx oh-my-agent@latest` install.
33
44
 
34
45
  <details>
35
- <summary>Microsoft's <a href="https://github.com/microsoft/apm">Agent Package Manager</a> (APM) skills-only distribution. Click to expand.</summary>
46
+ <summary>Or install skills with Microsoft's <a href="https://github.com/microsoft/apm">Agent Package Manager</a> (APM), a package manager for the same ecosystem. Click to expand.</summary>
36
47
 
37
48
  > Not to be confused with `oma-observability`'s APM (Application Performance Monitoring).
38
49
 
@@ -45,7 +56,7 @@ apm install first-fluke/oh-my-agent
45
56
  apm install first-fluke/oh-my-agent/.agents/skills/oma-frontend
46
57
  ```
47
58
 
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.
59
+ Agent Plugins is the package format; APM is an installer that 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.
49
60
 
50
61
  </details>
51
62