What problem does it solve? Delegating substantial coding work—building features, reviewing PRs, refactoring large codebases—to CLI coding agents is error-prone: agents hang without a PTY, refuse to run outside git repos, or silently fail in the background with no visibility. This Skill provides battle-tested invocation patterns, monitoring workflows, and safety rules for running coding agents reliably. ## Core Features & Use Cases - Multi-Agent Support: Correct invocation patterns for Codex, Claude Code, OpenCode, and Pi, including when PTY mode is required and which flags to use (e.g., --full-auto, --print --permission-mode bypassPermissions). - Background Execution & Monitoring: Run agents in background sessions and track them with process actions (list, poll, log, write, submit, kill) without blocking your workflow. - Parallel Workflows: Review batches of PRs or fix multiple issues simultaneously using git worktrees, with one agent per branch. - Use Case: You need to fix issues #78 and #99 in parallel. Create two git worktrees, launch a Codex agent in each with pty:true and background:true, monitor progress via process logs, then push branches and open PRs. ## Quick Start Ask the agent to build a feature in your project, for example: "Use Codex in background mode to build a dark mode toggle in ~/Projects/myapp and notify me when it's done."