-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (105 loc) · 4.9 KB
/
index.html
File metadata and controls
112 lines (105 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oh-my-codex Docs</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<nav class="container nav" aria-label="Primary">
<a class="brand" href="./index.html">oh-my-codex</a>
<a class="active" href="./index.html">Home</a>
<a href="./getting-started.html">Getting Started</a>
<a href="./agents.html">Agents</a>
<a href="./skills.html">Skills</a>
<a href="./integrations.html">Integrations</a>
</nav>
</header>
<main class="container">
<section class="hero">
<span class="badge">GitHub Pages</span>
<h1>oh-my-codex</h1>
<p>Multi-agent orchestration for OpenAI Codex CLI.</p>
<pre><code>npm install -g oh-my-codex</code></pre>
</section>
<section aria-labelledby="whats-new-060">
<h2 id="whats-new-060">What's New in 0.6.0</h2>
<div class="grid">
<article class="card">
<h3>Mixed Codex + Claude teammates</h3>
<p>
Route workers per pane with <code>OMX_TEAM_WORKER_CLI_MAP</code> (for example:
<code>codex,codex,claude,claude</code>) so one <code>$team</code> run can use both CLIs.
</p>
</article>
<article class="card">
<h3>Claude-team leader nudges</h3>
<p>
Added a leader-side all-workers-idle fallback so notifications still fire even when worker-side Codex hooks are unavailable.
</p>
</article>
<article class="card">
<h3>Safer trigger retries</h3>
<p>
Team trigger fallback now gates adaptive resend behind a ready prompt and no-active-task check, with safer clear-line resend behavior.
</p>
</article>
<article class="card">
<h3>Reliability fixes</h3>
<p>
Improved task-claim bootstrap, stricter CLI map validation, predictable <code>auto</code> resolution, and better leader pane targeting for mixed/Claude teams.
</p>
</article>
</div>
</section>
<h2>Core Features</h2>
<div class="grid">
<article class="card"><h3>Agent Prompts</h3><p>Specialized roles for implementation, review, design, and planning.</p></article>
<article class="card"><h3>Skills</h3><p>Composable workflows from autopilot and team pipelines to setup, release, and tracing.</p></article>
<article class="card"><h3>Team Orchestration</h3><p>Staged execution pipeline with verification and fix loops.</p></article>
<article class="card"><h3>MCP State Management</h3><p>Persistent lifecycle state, notepad, and project memory across sessions.</p></article>
</div>
<h2>Quick Start</h2>
<ol>
<li><code>npm install -g oh-my-codex</code></li>
<li><code>omx setup</code></li>
<li><code>omx doctor</code></li>
<li><code>omx --xhigh --madmax</code> (trusted environments) or <code>omx</code></li>
</ol>
<h2>Integration Guides</h2>
<p>OpenClaw / notification gateway setup and prompt-tuning guides by language:</p>
<p><a href="./integrations.html">Open dedicated Integrations page</a></p>
<ul>
<li><a href="./openclaw-integration.md">English</a></li>
<li><a href="./openclaw-integration.ko.md">한국어</a></li>
<li><a href="./openclaw-integration.ja.md">日本語</a></li>
<li><a href="./openclaw-integration.zh.md">简体中文</a></li>
<li><a href="./openclaw-integration.zh-TW.md">繁體中文</a></li>
<li><a href="./openclaw-integration.vi.md">Tiếng Việt</a></li>
<li><a href="./openclaw-integration.es.md">Español</a></li>
<li><a href="./openclaw-integration.pt.md">Português</a></li>
<li><a href="./openclaw-integration.ru.md">Русский</a></li>
<li><a href="./openclaw-integration.tr.md">Türkçe</a></li>
<li><a href="./openclaw-integration.de.md">Deutsch</a></li>
<li><a href="./openclaw-integration.fr.md">Français</a></li>
<li><a href="./openclaw-integration.it.md">Italiano</a></li>
<li><a href="./openclaw-integration.uk.md">Українська</a></li>
</ul>
<h2>Architecture</h2>
<pre><code>User
-> Codex CLI
-> AGENTS.md (orchestration brain)
-> ~/.codex/prompts/*.md (installable active/internal agent prompt catalog)
-> ~/.codex/skills/*/SKILL.md (skill catalog)
-> ~/.codex/config.toml (features, notify, MCP)
-> .omx/ (runtime state, memory, plans, logs)</code></pre>
</main>
<footer>
<div class="container">
<span class="muted">GitHub: <a href="https://github.com/Yeachan-Heo/oh-my-codex">Yeachan-Heo/oh-my-codex</a></span>
</div>
</footer>
</body>
</html>