check
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…
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 /completely:control. Backed by `cmpl auto`. Run it in the FOREGROUND (blocking) — nested workers only run while the
$ npx -y skills add 23ag1/completely --skill auto --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/autoContext preview
The summary Claude sees to decide when to auto-load this skill.
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 /completely:control. Backed by `cmpl auto`. Run it in the FOREGROUND (blocking) — nested workers only run while the
name: completely:auto description: 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 /completely:control. Backed by `cmpl auto`. Run it in the FOREGROUND (blocking) — nested workers only run while the launching session is active; it is idempotent/resumable. version: 0.7.0 user-invocable: true argument-hint: "[--max N]"
Run `cmpl auto --max N` from the repo root to grind the Beads queue with the full task engine (`core/task-engine.md`): each task gets a fresh `claude -p` running the COMPLETE recipe (understand → plan-check → parallel subagents → TDD → checks → reviewers → verifier → evaluator → debug-on-fail → **commit → close**), then the next, until `bd ready` is empty.
CRITICAL — how to run it so it actually progresses:
progress while the launching session is active. If you background it (`&` / run_in_background) and yield your turn, the workers PAUSE. Block on the single `cmpl auto` call until it exits.
Because the engine **commits BEFORE closing a bead**, completed tasks are durable (committed work
`in_progress` (claimed), NOT open — and `bd ready` excludes `in_progress`, so a bare re-run would silently skip it. `cmpl auto` therefore **auto-reaps orphaned claims at startup**: any `in_progress` bead whose holding run is gone/stale (heartbeat) is reopened with an audit comment, then re-dispatched. So **just re-run `cmpl auto`** and it genuinely continues. To inspect/clean manually: `cmpl orphans` (list) / `cmpl orphans --reap` (reopen). An interrupted worker may also leave **uncommitted WIP** in the tree — the run-report flags it; salvage or revert it before the next run.
Use when the spec is frozen, tasks are atomic, write-zones disjoint, verification automated. Otherwise use `/completely:control` (one observed task at a time).
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 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…
Plan a phase or feature DIRECTLY into Beads — no PLAN.md, no markdown bridge. Runs GSD-style socratic discovery + decomposition + a goal-backward self-check,…