2026-05-29 12:38:22 +09:00
# codex-ulw-loop
2026-05-25 22:24:37 +09:00
[](#) [](LICENSE)
Codex plugin scaffold for durable repo-native multi-goal orchestration with embedded success criteria and observable evidence audit.
## Behavior
| Subcommand | Purpose |
|------------|---------|
2026-05-29 12:38:22 +09:00
| `omo ulw-loop create-goals` | Create repo-native goals from a brief and seed criteria. |
| `omo ulw-loop record-evidence` | Record observable evidence for the active criterion. |
| `omo ulw-loop criteria` | Inspect or revise goal success criteria. |
| `omo ulw-loop complete-goals` | Complete eligible goals after criteria pass. |
| `omo ulw-loop checkpoint` | Refuse completion until criteria and evidence gates pass. |
| `omo ulw-loop steer` | Apply steering updates to the plan. |
| `omo ulw-loop status` | Report active goal, criteria, and evidence state. |
2026-05-25 22:24:37 +09:00
Wave 1 is scaffold only. Command behavior lands in later waves.
## Codex Plugin
The plugin ships:
- `.codex-plugin/plugin.json` for Codex plugin discovery.
- `hooks/hooks.json` for the `UserPromptSubmit` hook.
2026-05-29 12:38:22 +09:00
- `skills/ulw-loop/` as the future skill directory.
2026-05-25 22:24:37 +09:00
The hook command is:
``` bash
node " ${ PLUGIN_ROOT } /dist/cli.js " hook user-prompt-submit
```
No MCP server or Codex tool is exposed in this scaffold.
## Local Development
``` bash
npm install
npm test
npm run typecheck
npm run check
npm pack --dry-run
```
## Local Codex Installation
``` bash
2026-05-27 18:48:33 +09:00
bunx lazycodex install
2026-05-25 22:24:37 +09:00
```
2026-05-27 18:48:33 +09:00
The installer builds and copies the plugin into `~/.codex/plugins/cache/sisyphuslabs/omo/0.1.0` , registers the `sisyphuslabs` marketplace from the `lazycodex` Git repository, installs runtime dependencies there, and enables:
2026-05-25 22:24:37 +09:00
``` toml
[ features ]
plugins = true
plugin_hooks = true
2026-05-27 18:48:33 +09:00
[ plugins . "omo@sisyphuslabs" ]
2026-05-25 22:24:37 +09:00
enabled = true
```
## Privacy
This plugin runs locally. The scaffold does not call a network service by itself.
## License
[MIT ](LICENSE ).
## Related
2026-05-29 12:38:22 +09:00
- [oh-my-codex ](https://github.com/code-yeongyu/oh-my-codex ) - source project for the ulw-loop port.
2026-05-27 18:48:33 +09:00
- [lazycodex ](https://github.com/code-yeongyu/lazycodex ) - Sisyphus Labs Codex marketplace repository.