coding-agent
Installation
SKILL.md
Coding Agent (exec_command-first)
Use exec_command (with optional background mode) for all coding agent work. Use write_stdin to poll or continue a running session.
⚠️ PTY Mode Required!
Coding agents (Codex, Claude Code, Pi) are interactive terminal applications that need a pseudo-terminal (PTY) to work correctly. Without PTY, you'll get broken output, missing colors, or the agent may hang.
Always use tty:true when running coding agents:
# ✅ Correct - with PTY
exec_command tty:true command:"codex exec 'Your prompt'"
# ❌ Wrong - no PTY, agent may break
exec_command command:"codex exec 'Your prompt'"