oh-my-ag 2.0.8 → 2.3.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/LICENSE +21 -0
- package/README.md +6 -3
- package/bin/cli.js +251 -248
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Eunkwang Shin, Gahyun Kim
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# oh-my-agent: Multi-Agent
|
|
1
|
+
# oh-my-agent: Multi-Agent Harness
|
|
2
|
+
|
|
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)
|
|
2
4
|
|
|
3
5
|
[한국어](./docs/README.ko.md) | [中文](./docs/README.zh.md) | [Português](./docs/README.pt.md) | [日本語](./docs/README.ja.md) | [Français](./docs/README.fr.md) | [Español](./docs/README.es.md) | [Nederlands](./docs/README.nl.md) | [Polski](./docs/README.pl.md) | [Українська](./docs/README.uk.md) | [Русский](./docs/README.ru.md) | [Deutsch](./docs/README.de.md)
|
|
4
6
|
|
|
5
|
-
The Ultimate
|
|
7
|
+
The Ultimate Agent Orchestrator for agentic coding.
|
|
6
8
|
|
|
7
9
|
Orchestrate 9 specialized domain agents (PM, Frontend, Backend, Mobile, QA, Debug, Brainstorm, DevWorkflow, Terraform) via **Serena Memory**. Features parallel CLI execution, real-time observability dashboards, and zero-config progressive skill loading. The batteries-included solution for agentic coding.
|
|
8
10
|
|
|
@@ -104,6 +106,7 @@ Select your project type and skills will be installed to `.agents/skills/`, with
|
|
|
104
106
|
| 🎨 Frontend | brainstorm, frontend, pm, qa, debug, commit |
|
|
105
107
|
| ⚙️ Backend | brainstorm, backend, pm, qa, debug, commit |
|
|
106
108
|
| 📱 Mobile | brainstorm, mobile, pm, qa, debug, commit |
|
|
109
|
+
| 🚀 DevOps | brainstorm, tf-infra, dev-workflow, pm, qa, debug, commit |
|
|
107
110
|
|
|
108
111
|
### Option 2: Global Installation (For Orchestrator)
|
|
109
112
|
|
|
@@ -118,7 +121,7 @@ You'll also need at least one CLI tool:
|
|
|
118
121
|
| CLI | Install | Auth |
|
|
119
122
|
|-----|---------|------|
|
|
120
123
|
| Gemini | `bun install --global @google/gemini-cli` | `gemini auth` |
|
|
121
|
-
| Claude | `curl -fsSL https://claude.ai/install.sh
|
|
124
|
+
| Claude | `curl -fsSL https://claude.ai/install.sh \| bash` | `claude auth` |
|
|
122
125
|
| Codex | `bun install --global @openai/codex` | `codex auth` |
|
|
123
126
|
| Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
|
|
124
127
|
|