Codex Long-time Orchestrator: a local host for long-running plan, execute, wait, wake, and resume loops #19833
mayii2001
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I built an open-source project around Codex CLI for long-running engineering loops:
https://github.com/mayii2001/codex-long-time-orchestrator
The problem I wanted to solve is that many real tasks do not fit into a single Codex call. In practice, work often looks more like this:
This project splits those responsibilities between Codex and a persistent local host process.
What it does
Current design
.orchestrator/runs/<run-id>/Validation
One recent manual validation scenario was a repeated 10-second wake-up loop. I treated the run as successful once
checkIteration >= 3, which confirmed that the orchestrator could wake the same task repeatedly instead of surviving only a single wait.Current limits
This is still an active engineering project, not a fully validated production system. The main flow is usable, but I would still describe the project as experimental.
If people here are building similar long-horizon Codex workflows, I would be interested in how you handle wake-up and resume loops.
Beta Was this translation helpful? Give feedback.
All reactions