coding-agent

Delegate complex coding tasks to external coding agent CLIs under process supervision.

6.6k|511|Updated May 6, 2026
One-click install
npx skills add https://github.com/opensquilla/opensquilla --skill coding-agent-opensquilla
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-agent
Source: https://github.com/opensquilla/opensquilla/tree/main/src/opensquilla/skills/bundled/coding-agent
Command: npx skills add https://github.com/opensquilla/opensquilla --skill coding-agent-opensquilla

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires node @anthropic-ai/claude-code, node @openai/codex.

What problem does it solve?

This Skill solves the problem of speeding up complex software work that takes multiple file edits, exploration, and iterative refinement by delegating it to specialized coding agent CLIs running in the background.

Core Features & Use Cases

  • Background coding delegation: Runs Codex, Claude Code, or Pi coding agents via OpenSquilla process tools so work can proceed while you continue other tasks.
  • Correct workspace targeting: Uses a focused workdir so the agent operates in the intended project directory (including safe temp repos for scratch work).
  • Supervised process control: Lets you monitor logs, poll completion, and manage input/output through background_process + process actions.

Use Case: Refactor a large codebase by spawning an agent in a dedicated project directory, letting it explore files and implement changes, then reviewing the resulting diffs and outputs after completion.

Quick Start

Start a background Codex run in your project directory and watch its output until it finishes.

Frequently Asked Questions about coding-agent

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

FAQPage Schema
How do I delegate a large codebase refactor to a background coding agent?

You can delegate a large codebase refactor by spawning a coding agent CLI in a dedicated project directory, allowing it to explore files and implement changes, then reviewing the resulting diffs and outputs after completion.

Can I run Claude Code or Codex in the background while continuing other tasks?

Yes, you can run Claude Code or Codex in the background using process supervision tools, which allows you to monitor logs, poll completion, and manage input while continuing other work.

Do I need a git repository to run Codex for iterative coding tasks?

Yes, Codex execution is constrained to git repositories, ensuring that iterative coding tasks and file explorations operate safely within version-controlled project directories.

What is the best way to review pull requests using a coding agent?

The best way to review pull requests with a coding agent is to run it in a safe temporary repository directory, enabling supervised file exploration and iterative refinement before you check the output diffs.

Why should I avoid running a coding agent in the OpenSquilla state directory?

You should avoid the OpenSquilla state directory because it is an unsafe workspace location; coding agents must execute within a focused workdir or temporary git repo to prevent unintended system modifications.

Does delegating complex coding to an agent CLI work for one-liner edits?

No, delegating complex coding to an agent CLI targets feature creation, large refactors, and iterative coding that benefits from file exploration, rather than simple one-liner edits or chat thread interactions.