What problem does it solve?
This skill enables developers and operators to orchestrate and automate the use of interactive coding agents (Codex CLI, Claude Code, OpenCode, or Pi) from a terminal, addressing the friction of launching, managing, and interacting with these tools manually.
Core Features & Use Cases
- Background sessions: Run coding agents in the background with PTY for long-running tasks.
- PTY-required interactions: Ensure terminal compatibility for interactive CLIs and maintain color output and responsiveness.
- Unified control: Launch, monitor, and interact with multiple coding agents from a single CLI workflow.
- Use Case: A developer automates code generation, refactoring prompts, and batch script reviews in a local workspace.
Quick Start
Use PTY-enabled Bash commands to start a coding agent session. Example commands:
-
Start Codex in a PTY session:
bash pty:true command:"codex exec 'Your prompt'"
-
Run a background coding task:
bash pty:true background:true workdir:~/projects command:"codex exec --full-auto 'Build module'"