Warp terminal integration for OpenAI Codex. This repo is a native Codex plugin marketplace for local/dev and Oz cloud-agent installs.
.agents/plugins/marketplace.json Codex marketplace manifest, name: codex-warp
.github/workflows/test.yml GitHub Actions shell test workflow
plugins/warp/.codex-plugin/plugin.json Warp notification plugin manifest
plugins/warp/hooks/hooks.json Warp notification hook config
plugins/warp/scripts/ Warp notification hook scripts only
plugins/orchestration/.codex-plugin/plugin.json
plugins/orchestration/hooks/hooks.json
plugins/orchestration/scripts/ Oz parent-message listener, drain, and lifecycle scripts
plugins/orchestration/skills/ Oz orchestration skills
tests/test-hooks.sh Shell tests
warp:SessionStart,Stop,PermissionRequest,UserPromptSubmit,PostToolUsenotifications for Warp.orchestration:SessionStart,UserPromptSubmit,PostToolUse,Stop,SessionEndparent-message delivery for Codex child runs, plus Oz skills. Hook commands use${PLUGIN_ROOT}/scripts/....
codex plugin marketplace add .
codex plugin add warp@codex-warp
codex plugin add orchestration@codex-warpFast shell suite:
bash tests/test-hooks.shThis uses a fake oz CLI and a temp CODEX_HOME.
It validates parent-message staging/drain/blocking and plugin manifests.
plugins/warp/scripts/on-session-start.sh emits PLUGIN_VERSION.
Current plugin version: 0.4.0.
Keep it in sync with Warp's Codex plugin manager minimum version.
plugins/orchestration/skills/factory-files is a byte-for-byte copy of
resources/bundled/skills/factory-files in
warpdotdev/warp, mirrored at commit
f6f4ceac8. Warp bundles that skill for its own clients; Codex loads filesystem
skills from this plugin instead, so it is copied here rather than resolved
from a bundle. Change it in warpdotdev/warp and re-mirror; edits made here
are lost on the next sync.
The skill validates only against warp-server, which owns the Factory file format. It carries no copy of that format: a bundled copy ships inside a release, goes stale, and then reports valid fields as unknown, which invites an agent to delete working configuration. When the server cannot be reached the skill reports that the tree was not checked rather than guessing.
That also keeps this mirror cheap. There is no schema here to drift, so a stale
copy costs a stale workflow document, not a wrong verdict.
plugins/orchestration/tests/test-factory-files.sh checks the copy arrived
complete, carries no schemas, and reports a missing verdict correctly; its
behavioural corpus lives in Warp.
- Codex CLI with plugin support
jq
MIT — see LICENSE.