coding-agent

Orchestrate coding agents via background processes in isolated workdirs.

1|1|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/gitgoodordietrying/moltbook-app --skill coding-agent-gitgoodordietrying
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-agent
Source: https://github.com/gitgoodordietrying/moltbook-app/tree/main/skills/coding-agent
Command: npx skills add https://github.com/gitgoodordietrying/moltbook-app --skill coding-agent-gitgoodordietrying

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables programmers to orchestrate coding agents (Codex CLI, Claude Code, OpenCode, and Pi Coding Agent) via background processes for automated, non-interactive coding tasks.

Core Features & Use Cases

  • Background sessions: Start coding agents in a dedicated workdir and run in background for non-blocking prompts.
  • Multi-agent orchestration: Manage multiple AI coding agents concurrently across isolated environments (workdirs or tmux sessions).
  • Controlled interaction: Monitor progress, send prompts, and terminate tasks using simple process commands.

Quick Start

  • Create a temporary workspace: SCRATCH=$(mktemp -d)
  • Start an agent in a target directory: bash workdir:$SCRATCH background:true command:"<agent command>"
  • Monitor progress: process action:log sessionId:XXX
  • Send input or commands: process action:write sessionId:XXX data:"your prompt"
  • Check if the task is done: process action:poll sessionId:XXX
  • Stop the agent if needed: process action:kill sessionId:XXX

Frequently Asked Questions about coding-agent

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

FAQPage Schema
How do I run coding agents in the background for automated code generation?

To run coding agents in the background, you start them in a dedicated target workdir with a background flag. This initiates a non-blocking session, allowing you to continue other tasks while the agent processes your prompt programmatically.

Can I orchestrate multiple AI coding agents concurrently across isolated environments?

Yes, you can orchestrate multiple AI coding agents concurrently by utilizing isolated workdirs or separate tmux sessions. This multi-agent setup enables parallel task execution and isolated environment management for complex project work.

What commands are needed to monitor and interact with a background coding agent?

You interact with a background coding agent using standard process commands: poll checks task status, log captures session output, write sends new prompts, and kill terminates the agent using its session ID.

Do I need specific binaries installed to use Codex CLI or Claude Code for non-interactive tasks?

Yes, you must have the specific binaries for your chosen agent, such as Codex CLI, Claude Code, OpenCode, or Pi Coding Agent, installed and accessible in your environment before starting background processes.

What is the best way to manage multi-agent experiments using CLI coding tools?

The best way to manage multi-agent experiments is by orchestrating them via background processes across isolated workdirs. You capture session IDs to programmatically issue log, poll, write, and kill commands for tight control.

Are there limitations when sending prompts to tmux sessions for automated coding?

Automated coding via tmux sessions requires capturing the specific session ID to issue accurate write or kill commands. If the session ID is lost or mismatched, your programmatic control over the background process will fail.