Skip to content

Skills

Skills are structured Markdown documents that provide domain knowledge and behavioral guidance to the agent. Each skill covers a specific workflow concern across all workflow phases.

Skill anatomy

Each skill lives in skills/<name>/ with two components:

text
skills/
  brainstorming/
    SKILL.md          # Main skill document with frontmatter
    references/       # Supporting documents, templates, checklists
      approach-template.md
      constraints.md

Frontmatter

SKILL.md uses YAML frontmatter with these fields:

yaml
---
name: brainstorming                    # kebab-case identifier
description: "Collaborative design..." # <= 1,024 characters
metadata:
  author: exarchos
  version: 1.0.0
  mcp-server: exarchos                 # Required if skill uses Exarchos MCP tools
  category: workflow                   # workflow | utility
  phase-affinity: ideate               # Phase(s) where this skill activates
---

Skills that invoke Exarchos MCP tools must include metadata.mcp-server: exarchos in their frontmatter. Utility or standards skills without MCP dependency are exempt.

Production skills

SkillDescriptionPhase Affinity
brainstormingDesign exploration, approach selectionideate
cleanupPost-merge workflow resolutioncompleted
debugBug investigation and fix (hotfix/thorough tracks)triage, debug-review
delegationTask dispatch to agent teammates in worktreesdelegate
git-worktreesWorktree management for parallel workdelegate
implementation-planningTDD-based task planning from design docsplan
oneshot-workflowLightweight in-session workflow for trivial changes with opt-in PR path (v2.6.0)plan, implementing
prune-workflowsBulk-cancel stale non-terminal workflows from the pipeline view (v2.6.0)maintenance
quality-reviewStage 2 code quality review (+ axiom/impeccable if installed)review
refactorCode improvement (polish/overhaul tracks)explore, synthesize
shepherdPR shepherding through CI and reviewssynthesize
spec-reviewStage 1 spec compliance reviewreview
synthesisPR creation from feature branchsynthesize
workflow-stateCheckpoint and resume workflow stateany phase

The quality-review skill integrates with companion plugins when available. If axiom (axiom:audit) or impeccable (impeccable:critique) are installed, their quality dimensions are invoked during Stage 2 review and findings merge with native results. These are informational and do not add blocking gates. See Companion Plugins for details.

Skill resolution

Commands reference skills via skills/<name>/SKILL.md. The agent loads the skill document and its references to get process details, templates, and checklists for the current workflow phase.

Skills invoke orchestrate actions through the MCP server as native TypeScript handlers:

typescript
exarchos_orchestrate({ action: "check_tdd_compliance" })

Released under the Apache-2.0 License.