oh-my-agent 2.4.0 → 2.4.2
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 +44 -5
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
# oh-my-agent: Multi-Agent Harness
|
|
1
|
+
# oh-my-agent: Portable Multi-Agent Harness
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/oh-my-agent) [](https://www.npmjs.com/package/oh-my-agent) [](https://github.com/first-fluke/oh-my-agent) [](https://github.com/first-fluke/oh-my-agent/blob/main/LICENSE) [](https://github.com/first-fluke/oh-my-agent/commits/main)
|
|
4
4
|
|
|
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) | [
|
|
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)
|
|
6
6
|
|
|
7
|
-
The
|
|
7
|
+
The portable, role-based agent harness for serious AI-assisted engineering.
|
|
8
8
|
|
|
9
|
-
Orchestrate 10 specialized domain agents (PM, Frontend, Backend, DB, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform) via **Serena Memory**.
|
|
9
|
+
Orchestrate 10 specialized domain agents (PM, Frontend, Backend, DB, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform) via **Serena Memory**. `oh-my-agent` uses `.agents/` as the source of truth for portable skills and workflows, then projects compatibility to other AI IDEs and CLIs. 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
10
|
|
|
11
11
|
## Table of Contents
|
|
12
12
|
|
|
13
13
|
- [Architecture](#architecture)
|
|
14
|
+
- [Why Different](#why-different)
|
|
15
|
+
- [Compatibility](#compatibility)
|
|
16
|
+
- [The `.agents` Spec](#the-agents-spec)
|
|
14
17
|
- [What Is This?](#what-is-this)
|
|
15
18
|
- [Quick Start](#quick-start)
|
|
16
19
|
- [Sponsors](#sponsors)
|
|
@@ -59,9 +62,45 @@ flowchart TD
|
|
|
59
62
|
Quality --> CMT([commit])
|
|
60
63
|
```
|
|
61
64
|
|
|
65
|
+
## Why Different
|
|
66
|
+
|
|
67
|
+
- **`.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.
|
|
68
|
+
- **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.
|
|
69
|
+
- **Workflow-first orchestration**: planning, review, debug, and coordinated execution are first-class workflows, not afterthoughts.
|
|
70
|
+
- **Standards-aware by design**: agents now carry focused guidance for ISO-driven planning, QA, database continuity/security, and infrastructure governance.
|
|
71
|
+
- **Built for verification**: dashboards, manifest generation, shared execution protocols, and structured outputs favor traceability over vibe-only generation.
|
|
72
|
+
|
|
73
|
+
## Compatibility
|
|
74
|
+
|
|
75
|
+
`oh-my-agent` is designed around `.agents/` and then bridges to other tool-specific skill folders when needed.
|
|
76
|
+
|
|
77
|
+
| Tool / IDE | Skills Source | Interop Mode | Notes |
|
|
78
|
+
|------------|---------------|--------------|-------|
|
|
79
|
+
| Antigravity | `.agents/skills/` | Native | Primary source-of-truth layout |
|
|
80
|
+
| Claude Code | `.claude/skills/` | Symlink to `.agents/skills/` | Managed by installer |
|
|
81
|
+
| OpenCode | `.agents/skills/` | Native-compatible | Uses the same project-level skill source |
|
|
82
|
+
| Amp | `.agents/skills/` | Native-compatible | Shares the same project-level source |
|
|
83
|
+
| Codex CLI | `.agents/skills/` | Native-compatible | Works from the same project skill source |
|
|
84
|
+
| Cursor | `.agents/skills/` | Native-compatible | Can consume the same project-level skill source |
|
|
85
|
+
| GitHub Copilot | `.github/skills/` | Optional symlink | Installed when selected during setup |
|
|
86
|
+
|
|
87
|
+
See [SUPPORTED_AGENTS.md](https://github.com/first-fluke/oh-my-agent/blob/main/docs/SUPPORTED_AGENTS.md) for the current support matrix and interoperability notes.
|
|
88
|
+
|
|
89
|
+
## The `.agents` Spec
|
|
90
|
+
|
|
91
|
+
`oh-my-agent` treats `.agents/` as a portable project convention for agent skills, workflows, and shared context.
|
|
92
|
+
|
|
93
|
+
- Skills live in `.agents/skills/<skill-name>/SKILL.md`
|
|
94
|
+
- Shared resources live in `.agents/skills/_shared/`
|
|
95
|
+
- Workflows live in `.agents/workflows/*.md`
|
|
96
|
+
- Project config lives in `.agents/config/`
|
|
97
|
+
- CLI metadata and packaging stay aligned through generated manifests
|
|
98
|
+
|
|
99
|
+
See [AGENTS_SPEC.md](https://github.com/first-fluke/oh-my-agent/blob/main/docs/AGENTS_SPEC.md) for the project layout, required files, interoperability rules, and source-of-truth model.
|
|
100
|
+
|
|
62
101
|
## What Is This?
|
|
63
102
|
|
|
64
|
-
A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents:
|
|
103
|
+
A collection of **Agent Skills** enabling collaborative multi-agent development. Work is distributed across expert agents with explicit roles, workflows, and verification boundaries:
|
|
65
104
|
|
|
66
105
|
| Agent | Specialization | Triggers |
|
|
67
106
|
|-------|---------------|----------|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-agent",
|
|
3
|
-
"version": "2.4.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.4.2",
|
|
4
|
+
"description": "Portable multi-agent harness for .agents-based skills and workflows across Antigravity, Claude Code, Codex, OpenCode, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oh-my-ag": "./bin/cli.js",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"keywords": [
|
|
14
14
|
"oh-my-agent",
|
|
15
15
|
"antigravity",
|
|
16
|
+
".agents",
|
|
16
17
|
"agent",
|
|
17
18
|
"skills",
|
|
18
19
|
"agent-skills",
|
|
@@ -21,6 +22,8 @@
|
|
|
21
22
|
"claude",
|
|
22
23
|
"claude-code",
|
|
23
24
|
"codex",
|
|
25
|
+
"opencode",
|
|
26
|
+
"copilot",
|
|
24
27
|
"cursor",
|
|
25
28
|
"chatgpt",
|
|
26
29
|
"pm",
|
|
@@ -29,6 +32,9 @@
|
|
|
29
32
|
"mobile",
|
|
30
33
|
"qa",
|
|
31
34
|
"debug",
|
|
35
|
+
"terraform",
|
|
36
|
+
"database",
|
|
37
|
+
"workflow",
|
|
32
38
|
"bug-fixing",
|
|
33
39
|
"gemini"
|
|
34
40
|
],
|
|
@@ -87,10 +93,14 @@
|
|
|
87
93
|
"pm-agent",
|
|
88
94
|
"frontend-agent",
|
|
89
95
|
"backend-agent",
|
|
96
|
+
"db-agent",
|
|
90
97
|
"mobile-agent",
|
|
91
98
|
"qa-agent",
|
|
92
99
|
"debug-agent",
|
|
93
|
-
"orchestrator"
|
|
100
|
+
"orchestrator",
|
|
101
|
+
"dev-workflow",
|
|
102
|
+
"tf-infra-agent",
|
|
103
|
+
"commit"
|
|
94
104
|
]
|
|
95
105
|
}
|
|
96
106
|
}
|