Delegate coding tasks to background AI coding agents for implementation and changes.
The material indicates this is essentially an open-source prompt-only orchestration guide for invoking external coding agents; it does not itself declare secrets, remote endpoints, or built-in execution logic. Overall risk is low, though the instructions do steer the host toward launching background coding agents and local commands, so execution boundaries on the host side still matter.
The material explicitly states there are no required secrets or environment variables, and the README does not ask for API tokens or long-lived credentials. No direct credential collection, storage, or exfiltration behavior is described. If the host later invokes Codex/Claude Code/OpenCode, their credential handling belongs to those external tools rather than this skill itself.
No remote endpoints are declared, and the material does not specify any fixed exfiltration host or third-party receiver. The README mentions GitHub issues/PRs, notification routes, and message sending, but these appear to be workflow instructions for external systems; this skill itself does not define built-in network destinations.
The objective check marks it as prompt-only, meaning the skill itself is more of an instruction set than an executable component. While the README heavily describes launching Codex/Claude/OpenCode workers via bash, PTY, and background processes, those are host/external-agent usage instructions and do not mean the skill itself inherently possesses local execution privileges.
The material does not declare any direct ability for this skill to read or write local files, repositories, or system resources, nor does it request extra directory or device permissions. The README does suggest running external workers in repo directories, temp files, and isolated checkouts, but that is workflow guidance for external execution; no overbroad access is evident for the skill itself.
The source is an open-source GitHub repository with extremely high community adoption (about 377k stars), both of which are strong risk-reducing signals. The material also shows no closed-source binary fetches, suspicious install scripts, or unclear distribution channels. The missing license declaration and unknown maintenance status are worth verifying, but based on current evidence the supply-chain risk remains low.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "coding-agent" skill from askskill: 1. Download https://raw.githubusercontent.com/openclaw/openclaw/main/skills/coding-agent/SKILL.md 2. Save it as ~/.claude/skills/coding-agent/SKILL.md 3. Reload skills and tell me it's ready
Delegate the "export user profiles to CSV" feature to the background coding-agent. The stack is Node.js + Express. Add an export endpoint, field mapping, permission checks, and unit tests, then summarize changed files and how to run it.
A completed implementation summary with code changes, affected files, test status, and suggested next steps.
Delegate the refactoring of this Python payment module to coding-agent. Split long functions, add type hints, remove duplicated logic, and keep existing API behavior unchanged. Provide a refactoring summary, risks, and recommended validation steps.
Receive cleaner refactored code with compatibility notes and recommended validation steps.
Assign this Django API 500-error fix to coding-agent. Use the error logs to locate the issue, implement the fix, and add regression tests with a brief change summary. Don’t just analyze—complete the code modification plan.
An actionable fix result describing the root cause, solution, test coverage, and possible impact scope.
Use for background feature builds, PR reviews, large refactors, and issue-to-PR loops. Do not use for simple edits, read-only lookup, ACP thread-bound work, or any run inside ~/.openclaw, $OPENCLAW_STATE_DIR, or active OpenClaw state dirs.
background:true.pty:true.claude --permission-mode bypassPermissions --print.openclaw message send.process; do not kill slow workers without cause.~/Projects/openclaw; use an isolated checkout.Append this shape to every worker prompt with real values:
Notification route:
- channel: <notifyChannel>
- target: <notifyTarget>
- account: <notifyAccount or omit>
- reply_to: <notifyReplyTo or omit>
- thread_id: <notifyThreadId or omit>
When finished, send exactly one completion or failure message using:
openclaw message send --channel <channel> --target '<target>' --message '<brief result>'
Add --account, --reply-to, or --thread-id only when present above.
Do not use openclaw system event or heartbeat.
If no trustworthy route exists, say completion auto-notify is unavailable.
Write the worker prompt to a temp file first. This avoids shell quoting bugs when the required notification block contains quotes or newlines.
PROMPT=$(mktemp -t openclaw-worker-prompt.XXXXXX)
cat >"$PROMPT" <<'EOF'
Task.
<notification block>
EOF
printf 'prompt file: %s\n' "$PROMPT"
Use $PROMPT when launching from the same shell/session. If using a separate tool call, substitute the printed path.
Codex:
bash pty:true background:true workdir:/path/repo command:"codex exec - < \"$PROMPT\""
Claude Code:
bash background:true workdir:/path/repo command:"claude --permission-mode bypassPermissions --print < \"$PROMPT\""
OpenCode:
bash pty:true background:true workdir:/path/repo command:"opencode run < \"$PROMPT\""
sessionId immediately.process; cancel through Task Registry if mirrored there.Codex needs a trusted git repo:
SCRATCH=$(mktemp -d)
git -C "$SCRATCH" init
PROMPT=$(mktemp -t openclaw-worker-prompt.XXXXXX)
cat >"$PROMPT" <<'EOF'
Build X.
<notification block>
EOF
printf 'prompt file: %s\n' "$PROMPT"
bash pty:true background:true workdir:$SCRATCH command:"codex exec - < \"$PROMPT\""
list: running/recent sessions.poll: status.log: output.submit: send input + Enter.write: raw stdin.paste: paste text.kill: terminate.sessionId.Verify an OpenClaw release is fully published and working across all channels.
Fetch GitHub issues, create fixes, open PRs, and handle reviews.
Convert text to speech locally and offline with sherpa-onnx, no cloud needed.
Regenerate OpenClaw release changelog sections from Git history before releases.
Prepare and verify OpenClaw stable or beta releases and release notes.
Create and review technical docs and agent instruction files in repositories.
Delegate code investigation, edits, and verification to Claude Code with background job management.
Bootstrap agentic TypeScript coding for Claude Code with workflows and quality checks.
Understand your codebase in terminal and accelerate coding with natural language.
Production-ready Claude Code workflows powered by specialized AI agents.
Coordinate Codex and local Claude Code for engineering, review, and automation workflows.
Delegate coding tasks to OpenAI subagents with parallel, cheap, verified orchestration.