oh-my-codex 0.1.0__tar.gz
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.
- oh_my_codex-0.1.0/LICENSE +21 -0
- oh_my_codex-0.1.0/PKG-INFO +290 -0
- oh_my_codex-0.1.0/README.md +258 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/PKG-INFO +290 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/SOURCES.txt +26 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/dependency_links.txt +1 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/entry_points.txt +3 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/requires.txt +9 -0
- oh_my_codex-0.1.0/oh_my_codex.egg-info/top_level.txt +1 -0
- oh_my_codex-0.1.0/orchestrator/__init__.py +29 -0
- oh_my_codex-0.1.0/orchestrator/agents/__init__.py +19 -0
- oh_my_codex-0.1.0/orchestrator/agents/base.py +796 -0
- oh_my_codex-0.1.0/orchestrator/cli.py +239 -0
- oh_my_codex-0.1.0/orchestrator/constants.py +152 -0
- oh_my_codex-0.1.0/orchestrator/main.py +499 -0
- oh_my_codex-0.1.0/orchestrator/mcp.py +148 -0
- oh_my_codex-0.1.0/orchestrator/router.py +187 -0
- oh_my_codex-0.1.0/orchestrator/session.py +204 -0
- oh_my_codex-0.1.0/orchestrator/setup.py +208 -0
- oh_my_codex-0.1.0/orchestrator/tools.py +309 -0
- oh_my_codex-0.1.0/orchestrator/utils.py +305 -0
- oh_my_codex-0.1.0/pyproject.toml +65 -0
- oh_my_codex-0.1.0/setup.cfg +4 -0
- oh_my_codex-0.1.0/tests/test_cli.py +61 -0
- oh_my_codex-0.1.0/tests/test_constants.py +93 -0
- oh_my_codex-0.1.0/tests/test_router.py +146 -0
- oh_my_codex-0.1.0/tests/test_session.py +232 -0
- oh_my_codex-0.1.0/tests/test_tools.py +136 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 tarae
|
|
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.
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oh-my-codex
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Multi-agent orchestration for OpenAI Codex CLI - Turn Codex into a team of AI agents
|
|
5
|
+
Author-email: junghwaYang <junghwa@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/junghwaYang/oh-my-codex
|
|
8
|
+
Project-URL: Repository, https://github.com/junghwaYang/oh-my-codex
|
|
9
|
+
Project-URL: Documentation, https://github.com/junghwaYang/oh-my-codex#readme
|
|
10
|
+
Keywords: codex,openai,agents,orchestration,cli,ai,multi-agent,gpt
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: openai>=1.0.0
|
|
25
|
+
Provides-Extra: full
|
|
26
|
+
Requires-Dist: openai-agents>=0.0.1; extra == "full"
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
29
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# Oh My Codex
|
|
34
|
+
|
|
35
|
+
<p align="center">
|
|
36
|
+
<strong>Multi-agent orchestration system for OpenAI Codex CLI</strong>
|
|
37
|
+
</p>
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<a href="#features">Features</a> •
|
|
41
|
+
<a href="#quick-start">Quick Start</a> •
|
|
42
|
+
<a href="#execution-modes">Modes</a> •
|
|
43
|
+
<a href="#skills">Skills</a> •
|
|
44
|
+
<a href="#multi-agent-orchestration">Multi-Agent</a> •
|
|
45
|
+
<a href="README.ko.md">한국어</a>
|
|
46
|
+
</p>
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
Inspired by [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode), adapted for OpenAI Codex CLI.
|
|
51
|
+
|
|
52
|
+
## Why Oh My Codex?
|
|
53
|
+
|
|
54
|
+
OpenAI Codex CLI is powerful, but lacks the multi-agent orchestration that makes Claude Code + oh-my-claudecode so effective. This project bridges that gap.
|
|
55
|
+
|
|
56
|
+
Based on [Vercel's research](https://vercel.com/blog/agents-md-outperforms-skills-in-our-agent-evals) showing **AGENTS.md outperforms skills** (100% vs 79%), we use an AGENTS.md-first design.
|
|
57
|
+
|
|
58
|
+
## Features
|
|
59
|
+
|
|
60
|
+
| Feature | Description |
|
|
61
|
+
|---------|-------------|
|
|
62
|
+
| 🧠 **AGENTS.md-First** | Core orchestration always in context |
|
|
63
|
+
| 🚀 **8 Execution Modes** | team, autopilot, ultrawork, ralph, pipeline, eco, plan, ultrapilot |
|
|
64
|
+
| 🔧 **31 Native Skills** | Full toolkit matching oh-my-claudecode |
|
|
65
|
+
| 🤖 **32 Specialized Agents** | From PM to Data Scientist |
|
|
66
|
+
| 📊 **Smart Routing** | Automatic model selection |
|
|
67
|
+
| 💾 **Session Management** | Pause, resume, track |
|
|
68
|
+
| 📡 **HUD & Tracing** | Real-time metrics and debugging |
|
|
69
|
+
|
|
70
|
+
## Quick Start
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
# Clone
|
|
74
|
+
git clone https://github.com/junghwaYang/oh-my-codex.git
|
|
75
|
+
cd oh-my-codex
|
|
76
|
+
|
|
77
|
+
# Install
|
|
78
|
+
./install.sh
|
|
79
|
+
|
|
80
|
+
# Use
|
|
81
|
+
omx "autopilot: build a REST API for tasks"
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Execution Modes
|
|
85
|
+
|
|
86
|
+
| Mode | Keyword | Description |
|
|
87
|
+
|------|---------|-------------|
|
|
88
|
+
| **Team** | `team:` | Canonical multi-agent pipeline (plan→exec→verify→fix) |
|
|
89
|
+
| **Autopilot** | `autopilot:` | Full autonomous execution |
|
|
90
|
+
| **Ultrawork** | `ulw:` | Parallel multi-file operations |
|
|
91
|
+
| **Ralph** | `ralph:` | Persistent mode (never gives up) |
|
|
92
|
+
| **Ultrapilot** | `ultrapilot:` | Maximum parallelism |
|
|
93
|
+
| **Pipeline** | `pipeline:` | Sequential staged processing |
|
|
94
|
+
| **Eco** | `eco:` | Token-efficient execution |
|
|
95
|
+
| **Plan** | `plan:` | Interview-driven planning |
|
|
96
|
+
|
|
97
|
+
### Examples
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
# Team orchestration (recommended for complex tasks)
|
|
101
|
+
omx "team: build a fullstack app with auth"
|
|
102
|
+
|
|
103
|
+
# Autopilot for feature development
|
|
104
|
+
omx "autopilot: implement user dashboard"
|
|
105
|
+
|
|
106
|
+
# Parallel refactoring
|
|
107
|
+
omx "ulw: rename userId to user_id everywhere"
|
|
108
|
+
|
|
109
|
+
# Persistent debugging
|
|
110
|
+
omx "ralph: fix all TypeScript errors"
|
|
111
|
+
|
|
112
|
+
# Token-efficient quick fix
|
|
113
|
+
omx "eco: add .env to gitignore"
|
|
114
|
+
|
|
115
|
+
# Planning without execution
|
|
116
|
+
omx "plan: design the payment system"
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## Skills (31)
|
|
120
|
+
|
|
121
|
+
### Orchestration
|
|
122
|
+
| Skill | Description |
|
|
123
|
+
|-------|-------------|
|
|
124
|
+
| `team` | Multi-agent staged pipeline |
|
|
125
|
+
| `autopilot` | Autonomous execution |
|
|
126
|
+
| `ultrawork` | Parallel execution |
|
|
127
|
+
| `ultrapilot` | Maximum parallelism |
|
|
128
|
+
| `ralph` | Persistent mode |
|
|
129
|
+
| `pipeline` | Sequential processing |
|
|
130
|
+
| `swarm` | Legacy multi-agent (→ team) |
|
|
131
|
+
|
|
132
|
+
### Planning & Analysis
|
|
133
|
+
| Skill | Description |
|
|
134
|
+
|-------|-------------|
|
|
135
|
+
| `planner` | Interview-driven planning |
|
|
136
|
+
| `ralplan` | Iterative planning consensus |
|
|
137
|
+
| `analyze` | Code quality analysis |
|
|
138
|
+
| `research` | Deep research |
|
|
139
|
+
| `deepsearch` | Codebase exploration |
|
|
140
|
+
|
|
141
|
+
### Development
|
|
142
|
+
| Skill | Description |
|
|
143
|
+
|-------|-------------|
|
|
144
|
+
| `eco` | Token-efficient mode |
|
|
145
|
+
| `tdd` | Test-driven development |
|
|
146
|
+
| `build-fix` | Fix build errors |
|
|
147
|
+
| `deepinit` | Project initialization |
|
|
148
|
+
| `release` | Version & changelog |
|
|
149
|
+
|
|
150
|
+
### Quality & Review
|
|
151
|
+
| Skill | Description |
|
|
152
|
+
|-------|-------------|
|
|
153
|
+
| `reviewer` | Code review |
|
|
154
|
+
| `code-review` | Comprehensive review |
|
|
155
|
+
| `security-review` | Security audit |
|
|
156
|
+
| `ultraqa` | Parallel testing |
|
|
157
|
+
|
|
158
|
+
### Tools & Utilities
|
|
159
|
+
| Skill | Description |
|
|
160
|
+
|-------|-------------|
|
|
161
|
+
| `git-master` | Git workflows |
|
|
162
|
+
| `playwright` | E2E testing |
|
|
163
|
+
| `debug` | Systematic debugging |
|
|
164
|
+
| `mcp-setup` | MCP configuration |
|
|
165
|
+
| `configure-notifications` | Alerts setup |
|
|
166
|
+
|
|
167
|
+
### System
|
|
168
|
+
| Skill | Description |
|
|
169
|
+
|-------|-------------|
|
|
170
|
+
| `doctor` | Installation diagnostics |
|
|
171
|
+
| `hud` | Real-time metrics |
|
|
172
|
+
| `trace` | Execution tracing |
|
|
173
|
+
| `learner` | Pattern extraction |
|
|
174
|
+
| `note` | Session notes |
|
|
175
|
+
|
|
176
|
+
## Agents (32)
|
|
177
|
+
|
|
178
|
+
### Primary Orchestration
|
|
179
|
+
- **PM** — Master orchestrator
|
|
180
|
+
- **Coordinator** — Parallel execution management
|
|
181
|
+
- **Executor** — Task execution
|
|
182
|
+
- **Deep Executor** — Complex implementations
|
|
183
|
+
|
|
184
|
+
### Planning & Analysis
|
|
185
|
+
- **Planner** — Creates actionable plans
|
|
186
|
+
- **Analyst** — System analysis
|
|
187
|
+
- **Researcher** — Information gathering
|
|
188
|
+
- **Explorer** — Codebase navigation
|
|
189
|
+
|
|
190
|
+
### Architecture & Design
|
|
191
|
+
- **Architect** — System design
|
|
192
|
+
- **Designer** — UI/UX design
|
|
193
|
+
- **System Designer** — Distributed systems
|
|
194
|
+
|
|
195
|
+
### Development
|
|
196
|
+
- **Frontend** — React, Vue, TypeScript
|
|
197
|
+
- **Backend** — APIs, databases
|
|
198
|
+
- **Fullstack** — End-to-end development
|
|
199
|
+
- **Mobile** — React Native, Flutter
|
|
200
|
+
- **DevOps** — CI/CD, infrastructure
|
|
201
|
+
|
|
202
|
+
### Quality & Testing
|
|
203
|
+
- **Tester** — Unit/integration tests
|
|
204
|
+
- **QA** — Quality assurance
|
|
205
|
+
- **Security** — Security engineering
|
|
206
|
+
- **Performance** — Performance optimization
|
|
207
|
+
|
|
208
|
+
### Review & Critique
|
|
209
|
+
- **Reviewer** — Code review
|
|
210
|
+
- **Critic** — Challenge assumptions
|
|
211
|
+
|
|
212
|
+
### Specialized
|
|
213
|
+
- **Scientist** — Data science
|
|
214
|
+
- **Data** — Data engineering
|
|
215
|
+
- **ML** — Machine learning
|
|
216
|
+
- **Writer** — Documentation
|
|
217
|
+
- **Docs** — API documentation
|
|
218
|
+
- **Vision** — Visual analysis
|
|
219
|
+
|
|
220
|
+
### Support
|
|
221
|
+
- **Debugger** — Bug finding
|
|
222
|
+
- **Refactorer** — Code improvement
|
|
223
|
+
- **Migrator** — Upgrades & migrations
|
|
224
|
+
|
|
225
|
+
## Architecture
|
|
226
|
+
|
|
227
|
+
```
|
|
228
|
+
oh-my-codex/
|
|
229
|
+
├── AGENTS.md # Core orchestration brain
|
|
230
|
+
├── .codex/skills/ # 31 native skills
|
|
231
|
+
│ ├── team/
|
|
232
|
+
│ ├── autopilot/
|
|
233
|
+
│ ├── ultrawork/
|
|
234
|
+
│ └── ... (28 more)
|
|
235
|
+
├── orchestrator/ # Python multi-agent
|
|
236
|
+
│ ├── agents/ # 32 agent definitions
|
|
237
|
+
│ ├── session.py # Session management
|
|
238
|
+
│ ├── mcp.py # MCP servers
|
|
239
|
+
│ ├── router.py # Model routing
|
|
240
|
+
│ └── cli.py # CLI entry
|
|
241
|
+
├── bin/omx # CLI wrapper
|
|
242
|
+
├── config.toml # Configuration
|
|
243
|
+
└── install.sh # Installer
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
## CLI Reference
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
omx "task description" # Auto-detect mode
|
|
250
|
+
omx "autopilot: task" # Explicit mode
|
|
251
|
+
omx -m ultrawork "task" # Force mode
|
|
252
|
+
omx --model gpt-4.1 "task" # Model override
|
|
253
|
+
omx --list # List sessions
|
|
254
|
+
omx --resume <id> # Resume session
|
|
255
|
+
omx --status # Check status
|
|
256
|
+
omx -v "task" # Verbose
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
## Configuration
|
|
260
|
+
|
|
261
|
+
### ~/.codex/config.toml
|
|
262
|
+
|
|
263
|
+
```toml
|
|
264
|
+
[model]
|
|
265
|
+
default = "o3"
|
|
266
|
+
|
|
267
|
+
[model.routing]
|
|
268
|
+
simple = "gpt-4.1-mini"
|
|
269
|
+
standard = "gpt-4.1"
|
|
270
|
+
complex = "o3"
|
|
271
|
+
|
|
272
|
+
[hud]
|
|
273
|
+
enabled = true
|
|
274
|
+
style = "standard"
|
|
275
|
+
|
|
276
|
+
[trace]
|
|
277
|
+
enabled = false
|
|
278
|
+
level = "standard"
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
## Credits
|
|
282
|
+
|
|
283
|
+
- [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode) — Original inspiration
|
|
284
|
+
- [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) — Architecture reference
|
|
285
|
+
- [Supabase Agent Skills](https://github.com/supabase/agent-skills) — Skill structure
|
|
286
|
+
- [Vercel Research](https://vercel.com/blog/agents-md-outperforms-skills-in-our-agent-evals) — Design philosophy
|
|
287
|
+
|
|
288
|
+
## License
|
|
289
|
+
|
|
290
|
+
MIT
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
# Oh My Codex
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<strong>Multi-agent orchestration system for OpenAI Codex CLI</strong>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="#features">Features</a> •
|
|
9
|
+
<a href="#quick-start">Quick Start</a> •
|
|
10
|
+
<a href="#execution-modes">Modes</a> •
|
|
11
|
+
<a href="#skills">Skills</a> •
|
|
12
|
+
<a href="#multi-agent-orchestration">Multi-Agent</a> •
|
|
13
|
+
<a href="README.ko.md">한국어</a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
Inspired by [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode), adapted for OpenAI Codex CLI.
|
|
19
|
+
|
|
20
|
+
## Why Oh My Codex?
|
|
21
|
+
|
|
22
|
+
OpenAI Codex CLI is powerful, but lacks the multi-agent orchestration that makes Claude Code + oh-my-claudecode so effective. This project bridges that gap.
|
|
23
|
+
|
|
24
|
+
Based on [Vercel's research](https://vercel.com/blog/agents-md-outperforms-skills-in-our-agent-evals) showing **AGENTS.md outperforms skills** (100% vs 79%), we use an AGENTS.md-first design.
|
|
25
|
+
|
|
26
|
+
## Features
|
|
27
|
+
|
|
28
|
+
| Feature | Description |
|
|
29
|
+
|---------|-------------|
|
|
30
|
+
| 🧠 **AGENTS.md-First** | Core orchestration always in context |
|
|
31
|
+
| 🚀 **8 Execution Modes** | team, autopilot, ultrawork, ralph, pipeline, eco, plan, ultrapilot |
|
|
32
|
+
| 🔧 **31 Native Skills** | Full toolkit matching oh-my-claudecode |
|
|
33
|
+
| 🤖 **32 Specialized Agents** | From PM to Data Scientist |
|
|
34
|
+
| 📊 **Smart Routing** | Automatic model selection |
|
|
35
|
+
| 💾 **Session Management** | Pause, resume, track |
|
|
36
|
+
| 📡 **HUD & Tracing** | Real-time metrics and debugging |
|
|
37
|
+
|
|
38
|
+
## Quick Start
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# Clone
|
|
42
|
+
git clone https://github.com/junghwaYang/oh-my-codex.git
|
|
43
|
+
cd oh-my-codex
|
|
44
|
+
|
|
45
|
+
# Install
|
|
46
|
+
./install.sh
|
|
47
|
+
|
|
48
|
+
# Use
|
|
49
|
+
omx "autopilot: build a REST API for tasks"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Execution Modes
|
|
53
|
+
|
|
54
|
+
| Mode | Keyword | Description |
|
|
55
|
+
|------|---------|-------------|
|
|
56
|
+
| **Team** | `team:` | Canonical multi-agent pipeline (plan→exec→verify→fix) |
|
|
57
|
+
| **Autopilot** | `autopilot:` | Full autonomous execution |
|
|
58
|
+
| **Ultrawork** | `ulw:` | Parallel multi-file operations |
|
|
59
|
+
| **Ralph** | `ralph:` | Persistent mode (never gives up) |
|
|
60
|
+
| **Ultrapilot** | `ultrapilot:` | Maximum parallelism |
|
|
61
|
+
| **Pipeline** | `pipeline:` | Sequential staged processing |
|
|
62
|
+
| **Eco** | `eco:` | Token-efficient execution |
|
|
63
|
+
| **Plan** | `plan:` | Interview-driven planning |
|
|
64
|
+
|
|
65
|
+
### Examples
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
# Team orchestration (recommended for complex tasks)
|
|
69
|
+
omx "team: build a fullstack app with auth"
|
|
70
|
+
|
|
71
|
+
# Autopilot for feature development
|
|
72
|
+
omx "autopilot: implement user dashboard"
|
|
73
|
+
|
|
74
|
+
# Parallel refactoring
|
|
75
|
+
omx "ulw: rename userId to user_id everywhere"
|
|
76
|
+
|
|
77
|
+
# Persistent debugging
|
|
78
|
+
omx "ralph: fix all TypeScript errors"
|
|
79
|
+
|
|
80
|
+
# Token-efficient quick fix
|
|
81
|
+
omx "eco: add .env to gitignore"
|
|
82
|
+
|
|
83
|
+
# Planning without execution
|
|
84
|
+
omx "plan: design the payment system"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Skills (31)
|
|
88
|
+
|
|
89
|
+
### Orchestration
|
|
90
|
+
| Skill | Description |
|
|
91
|
+
|-------|-------------|
|
|
92
|
+
| `team` | Multi-agent staged pipeline |
|
|
93
|
+
| `autopilot` | Autonomous execution |
|
|
94
|
+
| `ultrawork` | Parallel execution |
|
|
95
|
+
| `ultrapilot` | Maximum parallelism |
|
|
96
|
+
| `ralph` | Persistent mode |
|
|
97
|
+
| `pipeline` | Sequential processing |
|
|
98
|
+
| `swarm` | Legacy multi-agent (→ team) |
|
|
99
|
+
|
|
100
|
+
### Planning & Analysis
|
|
101
|
+
| Skill | Description |
|
|
102
|
+
|-------|-------------|
|
|
103
|
+
| `planner` | Interview-driven planning |
|
|
104
|
+
| `ralplan` | Iterative planning consensus |
|
|
105
|
+
| `analyze` | Code quality analysis |
|
|
106
|
+
| `research` | Deep research |
|
|
107
|
+
| `deepsearch` | Codebase exploration |
|
|
108
|
+
|
|
109
|
+
### Development
|
|
110
|
+
| Skill | Description |
|
|
111
|
+
|-------|-------------|
|
|
112
|
+
| `eco` | Token-efficient mode |
|
|
113
|
+
| `tdd` | Test-driven development |
|
|
114
|
+
| `build-fix` | Fix build errors |
|
|
115
|
+
| `deepinit` | Project initialization |
|
|
116
|
+
| `release` | Version & changelog |
|
|
117
|
+
|
|
118
|
+
### Quality & Review
|
|
119
|
+
| Skill | Description |
|
|
120
|
+
|-------|-------------|
|
|
121
|
+
| `reviewer` | Code review |
|
|
122
|
+
| `code-review` | Comprehensive review |
|
|
123
|
+
| `security-review` | Security audit |
|
|
124
|
+
| `ultraqa` | Parallel testing |
|
|
125
|
+
|
|
126
|
+
### Tools & Utilities
|
|
127
|
+
| Skill | Description |
|
|
128
|
+
|-------|-------------|
|
|
129
|
+
| `git-master` | Git workflows |
|
|
130
|
+
| `playwright` | E2E testing |
|
|
131
|
+
| `debug` | Systematic debugging |
|
|
132
|
+
| `mcp-setup` | MCP configuration |
|
|
133
|
+
| `configure-notifications` | Alerts setup |
|
|
134
|
+
|
|
135
|
+
### System
|
|
136
|
+
| Skill | Description |
|
|
137
|
+
|-------|-------------|
|
|
138
|
+
| `doctor` | Installation diagnostics |
|
|
139
|
+
| `hud` | Real-time metrics |
|
|
140
|
+
| `trace` | Execution tracing |
|
|
141
|
+
| `learner` | Pattern extraction |
|
|
142
|
+
| `note` | Session notes |
|
|
143
|
+
|
|
144
|
+
## Agents (32)
|
|
145
|
+
|
|
146
|
+
### Primary Orchestration
|
|
147
|
+
- **PM** — Master orchestrator
|
|
148
|
+
- **Coordinator** — Parallel execution management
|
|
149
|
+
- **Executor** — Task execution
|
|
150
|
+
- **Deep Executor** — Complex implementations
|
|
151
|
+
|
|
152
|
+
### Planning & Analysis
|
|
153
|
+
- **Planner** — Creates actionable plans
|
|
154
|
+
- **Analyst** — System analysis
|
|
155
|
+
- **Researcher** — Information gathering
|
|
156
|
+
- **Explorer** — Codebase navigation
|
|
157
|
+
|
|
158
|
+
### Architecture & Design
|
|
159
|
+
- **Architect** — System design
|
|
160
|
+
- **Designer** — UI/UX design
|
|
161
|
+
- **System Designer** — Distributed systems
|
|
162
|
+
|
|
163
|
+
### Development
|
|
164
|
+
- **Frontend** — React, Vue, TypeScript
|
|
165
|
+
- **Backend** — APIs, databases
|
|
166
|
+
- **Fullstack** — End-to-end development
|
|
167
|
+
- **Mobile** — React Native, Flutter
|
|
168
|
+
- **DevOps** — CI/CD, infrastructure
|
|
169
|
+
|
|
170
|
+
### Quality & Testing
|
|
171
|
+
- **Tester** — Unit/integration tests
|
|
172
|
+
- **QA** — Quality assurance
|
|
173
|
+
- **Security** — Security engineering
|
|
174
|
+
- **Performance** — Performance optimization
|
|
175
|
+
|
|
176
|
+
### Review & Critique
|
|
177
|
+
- **Reviewer** — Code review
|
|
178
|
+
- **Critic** — Challenge assumptions
|
|
179
|
+
|
|
180
|
+
### Specialized
|
|
181
|
+
- **Scientist** — Data science
|
|
182
|
+
- **Data** — Data engineering
|
|
183
|
+
- **ML** — Machine learning
|
|
184
|
+
- **Writer** — Documentation
|
|
185
|
+
- **Docs** — API documentation
|
|
186
|
+
- **Vision** — Visual analysis
|
|
187
|
+
|
|
188
|
+
### Support
|
|
189
|
+
- **Debugger** — Bug finding
|
|
190
|
+
- **Refactorer** — Code improvement
|
|
191
|
+
- **Migrator** — Upgrades & migrations
|
|
192
|
+
|
|
193
|
+
## Architecture
|
|
194
|
+
|
|
195
|
+
```
|
|
196
|
+
oh-my-codex/
|
|
197
|
+
├── AGENTS.md # Core orchestration brain
|
|
198
|
+
├── .codex/skills/ # 31 native skills
|
|
199
|
+
│ ├── team/
|
|
200
|
+
│ ├── autopilot/
|
|
201
|
+
│ ├── ultrawork/
|
|
202
|
+
│ └── ... (28 more)
|
|
203
|
+
├── orchestrator/ # Python multi-agent
|
|
204
|
+
│ ├── agents/ # 32 agent definitions
|
|
205
|
+
│ ├── session.py # Session management
|
|
206
|
+
│ ├── mcp.py # MCP servers
|
|
207
|
+
│ ├── router.py # Model routing
|
|
208
|
+
│ └── cli.py # CLI entry
|
|
209
|
+
├── bin/omx # CLI wrapper
|
|
210
|
+
├── config.toml # Configuration
|
|
211
|
+
└── install.sh # Installer
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
## CLI Reference
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
omx "task description" # Auto-detect mode
|
|
218
|
+
omx "autopilot: task" # Explicit mode
|
|
219
|
+
omx -m ultrawork "task" # Force mode
|
|
220
|
+
omx --model gpt-4.1 "task" # Model override
|
|
221
|
+
omx --list # List sessions
|
|
222
|
+
omx --resume <id> # Resume session
|
|
223
|
+
omx --status # Check status
|
|
224
|
+
omx -v "task" # Verbose
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Configuration
|
|
228
|
+
|
|
229
|
+
### ~/.codex/config.toml
|
|
230
|
+
|
|
231
|
+
```toml
|
|
232
|
+
[model]
|
|
233
|
+
default = "o3"
|
|
234
|
+
|
|
235
|
+
[model.routing]
|
|
236
|
+
simple = "gpt-4.1-mini"
|
|
237
|
+
standard = "gpt-4.1"
|
|
238
|
+
complex = "o3"
|
|
239
|
+
|
|
240
|
+
[hud]
|
|
241
|
+
enabled = true
|
|
242
|
+
style = "standard"
|
|
243
|
+
|
|
244
|
+
[trace]
|
|
245
|
+
enabled = false
|
|
246
|
+
level = "standard"
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
## Credits
|
|
250
|
+
|
|
251
|
+
- [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode) — Original inspiration
|
|
252
|
+
- [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) — Architecture reference
|
|
253
|
+
- [Supabase Agent Skills](https://github.com/supabase/agent-skills) — Skill structure
|
|
254
|
+
- [Vercel Research](https://vercel.com/blog/agents-md-outperforms-skills-in-our-agent-evals) — Design philosophy
|
|
255
|
+
|
|
256
|
+
## License
|
|
257
|
+
|
|
258
|
+
MIT
|