What problem does it solve? Running autonomous coding agents like OpenAI Codex from an AI assistant requires handling PTY sessions, git repository constraints, sandbox flags, and long-running background processes, which is error-prone without clear operational guidance. ## Core Features & Use Cases - One-Shot Task Execution: Run Codex with codex exec for single tasks like adding features or building small apps, including scratch work in temporary git repositories. - Background and Parallel Workflows: Launch long-running Codex sessions in the background, monitor them with process polling, and run parallel issue fixes using git worktrees. - PR Reviews and Batch Operations: Clone repositories to temp directories for safe PR reviews and review multiple pull requests in parallel with diff-based prompts. - Use Case: You need to fix two GitHub issues simultaneously. Create two git worktrees, launch a background Codex process in each with a fix prompt, monitor progress, then push branches and open PRs with gh. ## Quick Start Ask the agent to run Codex in your project to add a dark mode toggle to the settings page using a PTY terminal session.