lazycodex-ai 0.2.1
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 +111 -0
- package/bin/lazycodex-ai.js +27 -0
- package/package.json +34 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yeongyu 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
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src=".github/assets/lazycodex-logo.png" alt="LazyCodex" width="280">
|
|
3
|
+
|
|
4
|
+
<h1>LazyCodex</h1>
|
|
5
|
+
|
|
6
|
+
<p><strong>Codex for no-brainers.</strong><br />
|
|
7
|
+
You don't need to think. Just prompt with <code>ultrawork</code>.</p>
|
|
8
|
+
|
|
9
|
+
<p>
|
|
10
|
+
<a href="https://github.com/code-yeongyu/lazycodex/stargazers">
|
|
11
|
+
<img alt="Stars" src="https://img.shields.io/github/stars/code-yeongyu/lazycodex?style=for-the-badge&color=c69ff5&logoColor=D9E0EE&labelColor=302D41" />
|
|
12
|
+
</a>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<p>
|
|
16
|
+
<a href="#-what-is-this">What is this?</a>
|
|
17
|
+
ยท
|
|
18
|
+
<a href="https://github.com/code-yeongyu/oh-my-openagent">OmO</a>
|
|
19
|
+
ยท
|
|
20
|
+
<a href="https://lazycodex.ai">lazycodex.ai</a>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
<br />
|
|
24
|
+
|
|
25
|
+
<p><strong>๐ง Coming June 2026 ยท Currently available for OpenCode</strong></p>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<hr />
|
|
29
|
+
|
|
30
|
+
## ๐ Install
|
|
31
|
+
|
|
32
|
+
One line. No global install, no `npm i -g`. Always use `bunx`:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
bunx lazycodex-ai install
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
This is shorthand for `bunx --package oh-my-openagent omo install --platform=codex`. For a fully autonomous, no-TUI setup:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
bunx lazycodex-ai install --no-tui --codex-autonomous
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## โก Commands
|
|
45
|
+
|
|
46
|
+
LazyCodex adds three workflow commands to your OpenCode session:
|
|
47
|
+
|
|
48
|
+
| Command | Syntax | What it does |
|
|
49
|
+
| --- | --- | --- |
|
|
50
|
+
| `$ulw-loop` | `/ulw-loop "task" [--completion-promise=TEXT] [--strategy=reset\|continue]` | Self-referential loop that runs until Oracle-verified completion. Caps at 500 iterations in ultrawork mode, 100 in normal mode. |
|
|
51
|
+
| `$ulw-plan` | `/ulw-plan "what to build"` | Prometheus strategic planner. Writes a plan to `plans/<slug>.md`. Never writes product code. |
|
|
52
|
+
| `$start-work` | `/start-work [plan-name] [--worktree <path>]` | Executes a plan until every checkbox is done. Prints **ORCHESTRATION COMPLETE**. |
|
|
53
|
+
|
|
54
|
+
Full documentation lives at [lazycodex.ai/docs](https://lazycodex.ai/docs).
|
|
55
|
+
|
|
56
|
+
<hr />
|
|
57
|
+
|
|
58
|
+
## ๐ค What is this?
|
|
59
|
+
|
|
60
|
+
**LazyCodex** is the **lazy way** to get [OmO (oh-my-openagent)](https://github.com/code-yeongyu/oh-my-openagent) up and running.
|
|
61
|
+
|
|
62
|
+
Think [LazyVim](https://github.com/LazyVim/LazyVim) for [lazy.nvim](https://github.com/folke/lazy.nvim), but for Codex.
|
|
63
|
+
|
|
64
|
+
OmO is the best agent harness: discipline agents, parallel orchestration, multi-model routing, skills, hooks, and more. LazyCodex wraps it so you don't have to think about setup.
|
|
65
|
+
|
|
66
|
+
> _"LazyVim made Neovim usable for the rest of us. LazyCodex does the same for Codex."_
|
|
67
|
+
|
|
68
|
+
## ๐งฉ What you get
|
|
69
|
+
|
|
70
|
+
| Feature | Description |
|
|
71
|
+
| --- | --- |
|
|
72
|
+
| ๐ค **Discipline Agents** | Sisyphus orchestrates Hephaestus, Oracle, Librarian. A full AI dev team |
|
|
73
|
+
| ๐ **Parallel Execution** | Multiple agents working simultaneously on subtasks |
|
|
74
|
+
| ๐ฏ **Multi-Model Routing** | Automatic model selection per task category |
|
|
75
|
+
| ๐ ๏ธ **Skills System** | Extensible skill library for specialized tasks |
|
|
76
|
+
| ๐ **Hooks & Lifecycle** | Pre/post hooks for every agent action |
|
|
77
|
+
| ๐ง **Zero Config** | Sensible defaults, override when you want |
|
|
78
|
+
|
|
79
|
+
## ๐๏ธ Architecture
|
|
80
|
+
|
|
81
|
+
LazyCodex is a thin distribution layer. The core engine is [oh-my-openagent (OmO)](https://github.com/code-yeongyu/oh-my-openagent), included as a submodule under `src/`.
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
lazycodex/
|
|
85
|
+
โโโ src/ โ oh-my-openagent (submodule)
|
|
86
|
+
โโโ packages/
|
|
87
|
+
โ โโโ web/ โ Next.js 15 + Tailwind v4 + opennextjs-cloudflare
|
|
88
|
+
โ (deployed to lazycodex.ai via Cloudflare Workers)
|
|
89
|
+
โโโ .github/workflows/ โ web-ci.yml + web-deploy.yml
|
|
90
|
+
โโโ README.md
|
|
91
|
+
โโโ ...
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
LazyCodex is part of the [omo.dev](https://omo.dev) project. **omo in Codex**, packaged for the lazy.
|
|
95
|
+
|
|
96
|
+
## ๐ท Maintainer
|
|
97
|
+
|
|
98
|
+
LazyCodex is maintained by **Jobdori**, the AI assistant that builds and ships [OmO](https://github.com/code-yeongyu/oh-my-openagent) in real-time.
|
|
99
|
+
|
|
100
|
+
<div align="center">
|
|
101
|
+
|
|
102
|
+
[](https://sisyphuslabs.ai)
|
|
103
|
+
|
|
104
|
+
> **Meet your own Jobdori, Dori.**
|
|
105
|
+
> **Join the waitlist at [sisyphuslabs.ai](https://sisyphuslabs.ai).**
|
|
106
|
+
|
|
107
|
+
</div>
|
|
108
|
+
|
|
109
|
+
## ๐ License
|
|
110
|
+
|
|
111
|
+
MIT
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { spawnSync } from "node:child_process"
|
|
4
|
+
|
|
5
|
+
const args = process.argv.slice(2)
|
|
6
|
+
const dryRun = args[0] === "--dry-run"
|
|
7
|
+
const forwardedArgs = dryRun ? args.slice(1) : args
|
|
8
|
+
const commandArgs =
|
|
9
|
+
forwardedArgs[0] === "install"
|
|
10
|
+
? ["--package", "oh-my-openagent", "omo", "install", "--platform=codex", ...forwardedArgs.slice(1)]
|
|
11
|
+
: ["--package", "oh-my-openagent", "omo", ...forwardedArgs]
|
|
12
|
+
|
|
13
|
+
if (dryRun) {
|
|
14
|
+
console.log(["bunx", ...commandArgs].join(" "))
|
|
15
|
+
process.exit(0)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const result = spawnSync("bunx", commandArgs, {
|
|
19
|
+
stdio: "inherit",
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
if (result.error) {
|
|
23
|
+
console.error(result.error.message)
|
|
24
|
+
process.exit(1)
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
process.exit(result.status ?? 1)
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lazycodex-ai",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Codex install alias for oh-my-openagent. Run `bunx lazycodex-ai install` to set up the Codex platform.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"lazycodex-ai": "bin/lazycodex-ai.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "node --test test/lazycodex-ai-bin.test.mjs",
|
|
16
|
+
"pack:dry-run": "npm pack --dry-run"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"codex",
|
|
20
|
+
"oh-my-openagent",
|
|
21
|
+
"ai-agents",
|
|
22
|
+
"orchestration"
|
|
23
|
+
],
|
|
24
|
+
"author": "Yeongyu Kim",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/code-yeongyu/lazycodex.git"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/code-yeongyu/lazycodex/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://lazycodex.ai"
|
|
34
|
+
}
|