oh-my-agent 11.9.2 → 11.10.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 +11 -3
  2. package/bin/cli.js +892 -890
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -29,10 +29,18 @@ irm https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.p
29
29
  bunx oh-my-agent@latest
30
30
  ```
31
31
 
32
- ### Install via Agent Package Manager
32
+ ### Install as an Agent Plugin
33
+
34
+ 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:
35
+
36
+ ```bash
37
+ oma emit --target agent-plugin # writes generated/agent-plugin/
38
+ ```
39
+
40
+ 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
41
 
34
42
  <details>
35
- <summary>Microsoft's <a href="https://github.com/microsoft/apm">Agent Package Manager</a> (APM) skills-only distribution. Click to expand.</summary>
43
+ <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
44
 
37
45
  > Not to be confused with `oma-observability`'s APM (Application Performance Monitoring).
38
46
 
@@ -45,7 +53,7 @@ apm install first-fluke/oh-my-agent
45
53
  apm install first-fluke/oh-my-agent/.agents/skills/oma-frontend
46
54
  ```
47
55
 
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
+ 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
57
 
50
58
  </details>
51
59