What problem does it solve? Offloading feature development, refactoring, and PR reviews to an autonomous coding agent requires knowing the correct Codex CLI invocation patterns, sandbox flags, and process management, which are easy to get wrong from a gateway or service context. ## Core Features & Use Cases - One-Shot Task Execution: Run codex exec with PTY for single tasks like adding features or building scratch projects in temporary git repositories. - Background Long-Running Tasks: Launch Codex with background=true and monitor progress using process poll, log, submit, and kill actions. - Parallel Workflows: Use git worktrees to fix multiple issues or review multiple PRs concurrently with separate Codex processes. - Use Case: You receive two bug reports overnight. Create two git worktrees, launch a Codex process in each with --yolo exec, monitor both with the process tool, then push branches and open PRs with gh pr create. ## Quick Start Ask the agent to run Codex in one-shot mode on your repository, for example by requesting it to add a dark mode toggle to the settings page using codex exec with pty enabled.