Orchestrates AI-driven workflows and manages configuration for the Archon remote agentic platform.

Install

mkdir -p .claude/skills/archon-coleam00 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12446" && unzip -o skill.zip -d .claude/skills/archon-coleam00 && rm skill.zip

Installs to .claude/skills/archon-coleam00

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Use when: User wants to run Archon workflows, CREATE workflows or commands, set up Archon, or manage Archon configuration. Triggers (run): "use archon to", "run archon", "archon workflow", "use archon for", "have archon", "let archon", "ask archon to". Triggers (create): "create a workflow", "write a workflow", "make a command", "author a workflow", "new workflow", "new command", "archon workflow yaml". Triggers (setup): "set up archon", "install archon", "how to use archon", "configure archon", "archon setup", "get started with archon". Triggers (config): "change my archon config", "modify archon config", "archon config", "change archon settings", "update my config", "help me change my config", "edit archon config", "archon configuration". Triggers (init): "initialize archon", "set up .archon", "archon init", "add archon to repo". Capability: Runs AI workflows in isolated git worktrees for parallel development. Also: Creates and manages workflow YAML files, command files, and configuration. NOT for: Direct Claude Code work - only for delegating to Archon CLI.
1076 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Run Archon AI workflows in isolated git worktrees
  • Create new Archon workflow YAML files
  • Create new Archon command files
  • Manage Archon platform configuration
  • Initialize Archon in a repository
  • Troubleshoot failing or stuck workflows

How it works

This skill routes user intents to specific guides or commands to run Archon workflows, create workflow/command files, or manage Archon configuration within isolated git worktrees.

Inputs & outputs

You give it
User intent (e.g., run workflow, create workflow, setup Archon, change config)
You get back
Execution of Archon workflow, creation of workflow/command files, updated configuration, or relevant guide/reference

When to use archon

  • Run Archon workflows
  • Initialize Archon in a repository
  • Create new workflow and command files
  • Modify Archon platform configuration

About this skill

Archon CLI Skill

Archon is a remote agentic coding platform that runs AI workflows in isolated git worktrees. This skill teaches you how to run workflows, create new workflows and commands, and manage Archon configuration.

Available Workflows (live)

!archon workflow list 2>&1 || echo "Archon CLI not installed. Read guides/setup.md to set it up."

Routing

Determine the user's intent and dispatch to the appropriate guide:

IntentAction
Setup / install / "how to use"Read guides/setup.md — interactive setup wizard
Config / settingsRead guides/config.md — interactive config editor
Initialize .archon/ in a repoRead references/repo-init.md
Create a workflowRead references/workflow-dag.md — the complete workflow authoring guide
Quick parameter lookup — which field works on which node typeRead references/parameter-matrix.md — master matrix, intent-based lookup, silent-failure catalog
Advanced features (hooks/MCP/skills)Read references/dag-advanced.md
Create a command fileRead references/authoring-commands.md
Variable substitution referenceRead references/variables.md
CLI command referenceRead references/cli-commands.md
Run an interactive workflowRead references/interactive-workflows.md — transparent relay protocol
Workflow good practices / anti-patternsRead references/good-practices.md — read before designing a non-trivial workflow
Troubleshoot a failing / stuck workflowRead references/troubleshooting.md — log locations, common failure modes
Run a workflow (default)Continue with "Running Workflows" below

If the intent is ambiguous, ask the user to clarify.


Richer Context: archon.diy

The references in this skill are a distilled subset. The full, canonical docs live at archon.diy (Starlight site from packages/docs-web/). If the skill's reference pages don't cover what you need — an edge case, a worked example, a diagram, a deeper section on a feature — fetch the matching page from archon.diy.

When to reach for the live docs

  • You need an end-to-end example that's longer than what the skill shows (e.g. full patterns for hooks, MCP config, sandbox schema, approval flows)
  • You're explaining a concept to the user and want the most readable framing (the book/ series is written as a tutorial, not a reference)
  • You hit a feature the skill only mentions in passing (e.g. agents: inline sub-agents, advanced Codex options, the full SyncHookJSONOutput schema)
  • The user asks "where is this documented?" — point them at the archon.diy URL, not a skill file path

URL map

TopicURL
Landing + installarchon.diy
Getting started (installation, quick start, concepts)archon.diy/getting-started/
The book (tutorial-style walkthrough)archon.diy/book/
Workflow authoring guidearchon.diy/guides/authoring-workflows/
Command authoring guidearchon.diy/guides/authoring-commands/
Node type guidesarchon.diy/guides/loop-nodes/, /approval-nodes/, /script-nodes/
Per-node features (Claude only)/hooks/, /mcp-servers/, /skills/
Global workflows/commands/scriptsarchon.diy/guides/global-workflows/
Variables referencearchon.diy/reference/variables/
CLI referencearchon.diy/reference/cli/
Security model (env, sandbox, target-repo .env stripping)archon.diy/reference/security/
Architecturearchon.diy/reference/architecture/
Configuration (.archon/config.yaml full schema)archon.diy/reference/configuration/
Troubleshootingarchon.diy/reference/troubleshooting/
Adapter setup (Slack/Telegram/GitHub/Web/Discord/Gitea/GitLab)archon.diy/adapters/
Deployment (Docker, cloud, Windows)archon.diy/deployment/

URL shape is archon.diy/<section>/<page>/ — the paths mirror the filenames under packages/docs-web/src/content/docs/.

Precedence

This skill's reference pages are the primary source for routine workflow authoring, CLI use, and setup. Reach for archon.diy when the skill is incomplete for your case — don't go to the live docs first by default (skill refs load into context faster and are tuned for agents).


Running Workflows

Core Command

archon workflow run <workflow-name> --branch <branch-name> "<message>"

CRITICAL RULES:

  1. Always run in background — Archon workflows are long-running. Always invoke the Bash tool with run_in_background: true. Use /tasks or the TaskOutput tool to check on progress.

  2. Always use worktree isolation — Use the --branch flag unless the user explicitly requests otherwise. This creates an isolated environment so Archon works without affecting the main branch.

  3. One workflow per shell — Each workflow blocks its shell. Run multiple workflows as separate background tasks.

Isolation Modes

ModeFlagWhen to Use
Worktree (Default)--branch <name>Always use this unless told otherwise
Custom start-point--branch <name> --from <base>Start from a specific branch
Direct checkout--no-worktreeOnly if user explicitly requests no isolation
Resume failed run--resumeResume from the last failure point

Workflow Selection

Match the user's intent to a workflow from the live list above. Common patterns:

User IntentTypical WorkflowBranch Pattern
"Fix issue #X" / "Resolve bug"archon-fix-github-issuefix/issue-{N}
"Review PR #X" / "Full review"archon-comprehensive-pr-reviewreview/pr-{N}
"Quick review PR #X"archon-smart-pr-reviewreview/pr-{N}
"Validate PR #X" / "Check PR"archon-validate-prreview/pr-{N}
"Implement from plan"archon-feature-developmentfeat/{name}
"Plan and implement feature"archon-idea-to-prfeat/{name}
"Execute plan file"archon-plan-to-prfeat/{name}
"Run ralph" / "Implement PRD"archon-ralph-dagfeat/{name}
"Resolve conflicts"archon-resolve-conflictsresolve/pr-{N}
"Create issue" / "File a bug"archon-create-issueissue/{name}
"Review issue #X fully"archon-issue-review-fullreview/issue-{N}
"Refactor safely"archon-refactor-safelyrefactor/{name}
"Architecture review"archon-architectreview/{name}
"PIV loop" / "guided dev"archon-piv-looppiv/{name}
"Create a PRD" / "interactive PRD"archon-interactive-prdprd/{name}
General / debuggingarchon-assistassist/{description}

⚡ = Interactive workflow — requires the transparent relay protocol. Read references/interactive-workflows.md before running.

If no specific workflow matches, use archon-assist as the fallback. The live workflow list above is always authoritative — it may include workflows not in this table.

Multi-Issue Invocation

When the user mentions multiple issues, PRs, or tasks — run each as a separate background task:

# Each gets its own worktree — they won't conflict
archon workflow run archon-fix-github-issue --branch fix/issue-10 "Fix issue #10"
archon workflow run archon-fix-github-issue --branch fix/issue-11 "Fix issue #11"
archon workflow run archon-fix-github-issue --branch fix/issue-12 "Fix issue #12"

Never combine multiple issues into a single command.


Other CLI Commands

archon workflow list              # List all available workflows
archon workflow list --json       # Machine-readable JSON
archon isolation list             # Show active worktree environments
archon isolation cleanup          # Remove stale worktrees (default: 7 days)
archon isolation cleanup --merged # Remove branches merged into main
archon complete <branch>          # Complete branch lifecycle (remove worktree + branches)
archon version                    # Show version info

For the full CLI reference with all flags: Read references/cli-commands.md


Authoring Quick Start

Archon uses a single workflow format: nodes (DAG). Workflows are YAML files in .archon/workflows/.

IMPORTANT: The examples below are starting points. Always design the workflow around what the user actually needs — the number of nodes, their types, dependencies, and configuration should match the user's requirements, not these templates.

Workflow Structure

name: my-workflow
description: What this workflow does
provider: claude          # Optional: 'claude', 'codex', 'pi', ... (default: from config)
model: medium             # Optional: tier keyword (small|medium|large), @alias, or literal model
nodes:
  - id: first-node
    command: my-command    # Loads .archon/commands/my-command.md
  - id: second-node
    prompt: "Use the output: $first-node.output"
    depends_on: [first-node]

Node Types

Each node has exactly ONE of: command, prompt, bash, script, loop, loop_group, approval, or `cance


Content truncated.

When not to use it

  • For direct Claude Code work
  • When the task is not related to Archon CLI functionality

Limitations

  • NOT for: Direct Claude Code work - only for delegating to Archon CLI.

How it compares

This skill provides a structured interface for interacting with the Archon CLI and its documentation, offering guided setup and workflow creation compared to manual command-line execution.

Compared to similar skills

archon side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
archon (this skill)025dReviewIntermediate
init-harness06moReviewBeginner
parallel03moReviewAdvanced
agentic-jujutsu34moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

init-harness

mylukin

Creates AI agent task management structure with feature backlog (ai/tasks/), TDD enforcement, and progress tracking. Use when setting up agent-foreman, initializing feature-driven development, creating task backlog, or enabling TDD mode. Triggers on 'init harness', 'setup feature tracking', 'create feature backlog', 'enable strict TDD', 'initialize agent-foreman'.

01

parallel

zhukunpenglinyutong

Multi-agent pipeline orchestrator that plans and dispatches parallel development tasks to worktree agents. Reads project context, configures task directories with PRDs and jsonl context files, and launches isolated coding agents. Use when multiple independent features need parallel development, orch

00

agentic-jujutsu

ruvnet

Quantum-resistant, self-learning version control for AI agents with ReasoningBank intelligence and multi-agent coordination

328

skillshare

runkids

Syncs skills across AI CLI tools (Claude, Cursor, Windsurf, etc.) from a single source of truth. Use when: "sync skills", "install skill", "search skills", "list skills", "show skill status", "backup skills", "restore skills", "update skills", "new skill", "collect skills", "push/pull skills", "add/remove target", "find a skill for X", "is there a skill that can...", "how do I do X with skills", "skillshare init", "skillshare upgrade", "skill not syncing", "diagnose skillshare", "doctor", or any skill/target management across AI tools.

116

moai

modu-ai

MoAI super agent - unified orchestrator for autonomous development. Routes natural language or explicit subcommands (plan, run, sync, fix, loop, project, feedback) to specialized agents. Use for any development task from planning to deployment.

14

build-with-agent-team

coleam00

Build a project using Claude Code Agent Teams with tmux split panes. Takes a plan document path and optional team size. Use when you want multiple agents collaborating on a build.

13

Search skills

Search the agent skills registry