coding-agent

Execute and manage coding agents like Codex and Claude Code via background processes.

Updated Jan 29, 2026
One-click install
npx skills add https://github.com/douglasjs/clawdbot_plugin_tools --skill coding-agent-douglasjs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-agent
Source: https://github.com/douglasjs/clawdbot_plugin_tools/tree/main/coding-agent
Command: npx skills add https://github.com/douglasjs/clawdbot_plugin_tools --skill coding-agent-douglasjs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides programmatic control over various coding agents (Codex CLI, Claude Code, OpenCode, Pi Coding Agent) allowing for background execution and complex task automation.

Core Features & Use Cases

  • Background Execution: Run coding agents in the background for long-running tasks, returning a session ID for monitoring.
  • Interactive Terminal Support: Utilizes PTY (pseudo-terminal) to ensure interactive coding agents function correctly.
  • Use Case: Automate the refactoring of a large codebase by initiating a background Codex process that works on a specific module, with progress monitored via session logs.

Quick Start

Run the codex CLI tool in the background with PTY enabled to refactor the authentication module in your project.

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 like Codex or Claude Code in the background?

To run coding agents in the background, execute them programmatically as background processes using this Skill. It returns a session ID so you can monitor long-running tasks like codebase refactoring without blocking your terminal.

Why does my interactive terminal coding agent fail when executed programmatically?

Interactive terminal coding agents fail without a proper terminal environment. This Skill utilizes PTY (pseudo-terminal) allocation to ensure interactive coding agents function correctly during background execution and task automation.

Can I automate parallel issue fixing using multiple coding agent sessions?

Yes, you can automate parallel issue fixing by executing multiple coding agent sessions concurrently. This Skill facilitates complex development workflows, using tools like git worktrees for isolated task execution and monitoring.

Does this approach support OpenCode and Pi coding agents for code generation?

Yes, this approach supports OpenCode and Pi coding agents alongside Codex CLI and Claude Code. It provides programmatic control over these tools, enabling background execution for complex development workflows including code generation and review.

What is the best way to monitor a long-running code refactoring task initiated by an agent?

The best way to monitor long-running code refactoring tasks is by checking the session logs associated with the background process. The Skill returns a session ID upon execution, allowing you to track progress and ensure deterministic task completion.