galleylisted
Install: claude install-skill shinpr/galley
# Galley
Use this skill to turn a user's development intent into a valid Galley task, prepare a repository for Galley execution, or diagnose a Galley run.
## Context
Galley executes task YAML files through a file-backed queue. Task authoring is conversational; execution is AFK after queueing, meaning away-from-keyboard execution without further user interaction until completion, retry exhaustion, or supervisor escalation.
Supervisor = LLM-based review gate that returns acceptance or revision verdicts. Executor = the LLM that performs implementation work inside the task worktree. Claim TTL and heartbeat are daemon liveness signals for running tasks.
## Flow Catalog
Use this table to choose the active flow. Load every required file for that flow before acting. SKILL.md selects the route; the routed references own step-by-step procedure and output format.
| Flow | Use when | Required files | Core invariant |
| --- | --- | --- | --- |
| Task authoring | User wants a Galley task YAML, ACs, scope, queueing, or task repair. | `references/task-authoring.md`, `references/authoring-quality.md`, `references/task.schema.json`, `scripts/create_task_skeleton.py` | User approves task direction, execution settings, and queueing; task YAML is generated from the skill skeleton and validates before queueing. |
| Profile authoring | User wants `quality.yaml` or `environment.yaml`, or setup finds missing profiles. | `references/profile-authoring.md`, `references/authoring-quality.md`, `ref