Coding Agent
Use coding agents (Codex, Claude Code, OpenCode, Pi) for automated development tasks.
Quick Start
bash
# Codex (needs git repo) codex exec "Add error handling to API calls" # Claude Code claude "Refactor the auth module" # OpenCode opencode run "Write unit tests" # Pi pi "Add dark mode support"
Background Mode
For longer tasks, run in background and monitor:
bash
# Start in background codex exec --full-auto "Build a REST API" & # Monitor output tail -f /tmp/codex-output.log
Best Practices
- •Always run in a git repository
- •Use
--full-autofor autonomous work - •Monitor progress for long-running tasks
- •Review changes before committing