coding-agent

Orchestrates Codex, Claude Code, OpenCode, and Pi coding agents via background PTY terminal sessions.

1|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill coding-agent-solizardking
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-agent
Source: https://github.com/Solizardking/Solana-Robotics-Kit/tree/main/eliza/packages/skills/skills/coding-agent
Command: npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill coding-agent-solizardking

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Delegating programming tasks to external CLI coding agents requires managing interactive terminal sessions, monitoring long-running background processes, and coordinating parallel work across git worktrees, which is error-prone when done manually. ## Core Features & Use Cases - Multi-Agent Orchestration: Spawn and control Codex CLI, Claude Code, OpenCode, or Pi Coding Agent through bash with PTY mode for correct interactive terminal behavior. - Background Session Management: Start agents in background mode, then monitor, poll, send input, or kill sessions using process tool actions like log, submit, and send-keys. - Parallel Workflows: Run batch PR reviews or parallel issue fixes by launching one agent per git worktree, then create PRs and clean up worktrees afterward. - Use Case: Assign five open GitHub issues to five parallel Codex sessions, each in its own worktree, monitor their logs, and open pull requests when each fix completes. ## Quick Start Ask the agent to run Codex in background mode with PTY enabled in your project directory to build a feature, then check progress with the process log action.

Frequently Asked Questions about coding-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run Codex CLI in the background from an AI agent?

Run Codex with the bash tool using background:true and pty:true, which returns a sessionId for tracking. Monitor progress with the process log action, poll for completion, and kill the session if needed.

How do I review multiple pull requests in parallel with coding agents?

Fetch all PR refs, then launch one background Codex session per PR with a diff command against the base branch. Monitor all sessions with the process list action and post results back to GitHub using gh pr comment.

Why does my coding agent hang or produce broken output?

Coding agents like Codex, Claude Code, and Pi are interactive terminal applications that require a pseudo-terminal. Always set pty:true when spawning them, otherwise output breaks or the agent hangs.

Why does Codex refuse to run in my directory?

Codex requires a trusted git repository and refuses to run outside one. For scratch work, create a temp directory with mktemp -d and run git init before invoking codex exec.

What is the difference between Codex --full-auto and --yolo flags?

The --full-auto flag runs sandboxed but auto-approves changes within the workspace, making it suitable for building features. The --yolo flag removes both the sandbox and approvals entirely, which is fastest but most dangerous.

Can I use git worktrees to fix multiple issues at once?

Yes, create a separate worktree and branch per issue, then launch a background Codex session in each worktree. After fixes complete, push branches, create PRs with gh, and remove the worktrees.