coding-agent

Delegate coding tasks to external coding agents like Claude Code, Codex, Pi, and OpenCode via shell.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Offloading substantial coding work—building features, reviewing PRs, refactoring large codebases—to specialized external coding agents is error-prone when you don't know each tool's execution modes, flags, and constraints. This Skill provides the exact invocation patterns and safety rules for delegating to Claude Code, Codex, Pi, and OpenCode. ## Core Features & Use Cases - Per-agent execution modes: Correct non-interactive invocation for each tool, such as Claude Code with --print --permission-mode bypassPermissions and Codex with exec --full-auto. - Safe PR reviews: Clone to a temp directory or use git worktrees so reviews never touch the main project directory. - Parallel issue fixing: Use git worktrees plus background shell execution to fix multiple issues concurrently and open PRs afterward. - Use Case: You receive two bug reports at once. Create two git worktrees, launch Codex in each with the issue description, then push branches and create PRs with gh pr create. ## Quick Start Delegate a coding task by asking the agent to run Claude Code in print mode against a separate project directory, for example: build a dark mode toggle in my web app using Claude Code.

Frequently Asked Questions about coding-agent

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

FAQPage Schema
How do I run Claude Code non-interactively from the shell?

Run Claude Code with the --print flag and --permission-mode bypassPermissions for non-interactive execution. Do not use PTY mode, since --print keeps full tool access and avoids interactive confirmation dialogs.

How do I review a pull request with Codex safely?

Clone the repository into a temp directory or add a git worktree, check out the PR with gh pr checkout, then run codex review --base origin/main. Never review PRs inside your main project directory.

How can I fix multiple GitHub issues in parallel with coding agents?

Create a separate git worktree per issue, launch a coding agent in each using background shell execution, then push branches and open PRs with gh pr create. Remove the worktrees afterward for cleanup.

Why does Codex fail outside a git repository?

Codex refuses to run outside a git directory by design. For scratch work, create a temp folder with mktemp, run git init inside it, and then invoke codex exec with your prompt.

When should I not delegate to an external coding agent?

Skip delegation for simple one-liner fixes you can edit directly, for reading code where file tools suffice, and for work inside the host workspace itself. Delegation suits multi-file features, refactors, and iterative exploration.