auto
Run completely AUTONOMOUSLY — loop the FULL task engine over the Beads queue, a fresh `claude -p` per task, until the queue is empty. Same complete recipe as…
Drive the Beads queue (`bd ready`) with one engine in two autonomy modes — supervised (GSD wave subagents, human gates at phase boundaries) or unattended (Ralph-style fresh-context loop, stops when the queue is empty). Quality gates + the default-FAIL evaluator run underneath
$ npx -y skills add 23ag1/completely --skill run --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/runContext preview
The summary Claude sees to decide when to auto-load this skill.
Drive the Beads queue (`bd ready`) with one engine in two autonomy modes — supervised (GSD wave subagents, human gates at phase boundaries) or unattended (Ralph-style fresh-context loop, stops when the queue is empty). Quality gates + the default-FAIL evaluator run underneath
name: completely:run description: Drive the Beads queue (`bd ready`) with one engine in two autonomy modes — supervised (GSD wave subagents, human gates at phase boundaries) or unattended (Ralph-style fresh-context loop, stops when the queue is empty). Quality gates + the default-FAIL evaluator run underneath both. Use to execute planned work. Backed by `cmpl run`. version: 0.2.0 user-invocable: true argument-hint: "[--mode supervised|unattended] [--max N] [--dry-run]"
Execute planned work from Beads with the right autonomy level.
**Pick the mode (the dial):** run **unattended** only when the spec is unambiguous, tasks are atomic, write-zones are disjoint, and verification is automated. Otherwise run **supervised**.
Beads-aware overlay prompt; ONE task per iteration; stops when `bd ready` is empty. No `--dangerously-skip-permissions` — the guard hook + allowlist gate dangerous ops.
subagents, checkpoints). Either way, status lives in Beads and evidence in `bd comment`.
Use `--dry-run` first to see how many tasks are ready and what would execute, without running. Each iteration: claim one task → TDD → gates → evidence comment → `bd close` → next. Blocked → `bd ... --status blocked` + comment, never a silent stub.
A quality-first harness for autonomous AI coding agents. It turns "the agent said it's done" into *"here's the proof — graded by an independent, default-FAIL checker."* Done is earned, not asserted.
Repo: 23ag1/completely
Run completely AUTONOMOUSLY — loop the FULL task engine over the Beads queue, a fresh `claude -p` per task, until the queue is empty. Same complete recipe as…
Run all configured quality checks (lint, types, tests) in one pass with terse output — reports "clean" when green, and only the failing check's output when…
Overview and entry point for the completely harness — a quality-first agent workflow unifying GSD (planning depth), Ralph (autonomous loop), and Beads (the…
Run completely UNDER CONTROL — execute the SINGLE next Beads task through the FULL task engine (understand → map → plan-check → parallel subagents → TDD →…
Scaffold the completely thin layer into the current repository — Definition of Done, the harness rules snippet in CLAUDE.md, and an optional project-specific…