---
name: autonomous-coding-agents
description: "Umbrella for delegating coding work to external autonomous agent CLIs and lanes: Claude Code, Codex, OpenCode, and Codex-backed Kanban workers."
version: 1.0.0
author: Hermes Agent
license: MIT
metadata:
  hermes:
    tags: [autonomous-agents, coding-agents, claude-code, codex, opencode, delegation, kanban]
    related_skills: [subagent-driven-development, hermes-agent]
---

# Autonomous Coding Agents

Use this class-level skill when a task should be delegated to an external coding agent process rather than handled only in the current Hermes turn.

## Choose the lane

- **Claude Code** — strong for feature implementation, broad codebase edits, and PR-level reasoning when the Claude Code CLI is installed and authenticated.
- **Codex CLI** — good for OpenAI/Codex-authenticated coding tasks, iterative fixes, and worktree-isolated implementation.
- **OpenCode** — use when the OpenCode CLI is the user's configured agent or when an OpenCode-specific review/implementation workflow is requested.
- **Kanban Codex lane** — use inside Hermes Kanban worker/orchestrator flows where Codex is the execution engine for a durable board task.

## Default workflow

1. Inspect repository state first: branch, dirty files, tests, and relevant docs.
2. Give the external agent a narrow, self-contained prompt: goal, constraints, files, acceptance tests, and what not to touch.
3. Prefer isolated worktrees/branches for multi-agent or risky work.
4. Poll/log the agent output; do not trust a self-report of success without verifying diffs/tests yourself.
5. Run the relevant test/build/lint commands in Hermes after the agent exits.
6. Summarize only verified changes and remaining blockers.

## Delegation vs spawning

- Use Hermes `delegate_task` for bounded subtasks that can finish in the current turn.
- Spawn external CLIs when the user explicitly wants that agent, the workflow is long-running, or the agent needs its own repo/worktree/process lifecycle.
- Use Kanban for durable, multi-worker coordination.

## Preserved source details

Full absorbed source skills are preserved in `references/absorbed-*.md` for CLI-specific flags, prompt examples, and pitfalls.
