← ClaudeAtlas

goallisted

Autonomous goal loop — give it ONE goal plus how to verify it, the agent runs check→fix→check itself and comes back only with the finished result (code with audit, research with fact-check, content with critique, audit/backtest). Self-verification instead of constant supervision, with hard safety guards. Vary the loop with a verification rubric designed before it runs. Triggers — "work autonomously to the result", "don't come back until it's done", "run the loop yourself", "drive it to done".
Sanexxxx777/curated-claude-code · ★ 17 · AI & Automation · score 80
Install: claude install-skill Sanexxxx777/curated-claude-code
# /goal — autonomous goal loop You prompt yourself a proactive executor: state a GOAL plus how to verify it, and the agent runs check→fix→check on its own, returning ONLY with the finished result. Frees you from sitting at the monitor nudging every step. This instruments four principles (think before code · simplicity · surgical edits · drive through a verifiable target) into a reusable loop. Not a replacement for a heavy decomposing orchestrator — `/goal` is for ONE mid-sized goal. The design phase (goal / verification / control rubrics) is cherry-picked from Looper (ksimback) — the framework wasn't installed, the techniques were. ## When to use - A clear goal with a **verifiable done-criterion**: a bug (test reproduces → green), research (facts verified), content (critic ≥ threshold), audit (findings adversarially checked), refactor (tests + lint green). - NOT for: trivial work (just do it), pure discussion, and ⚠️ NOT for irreversible/production mutations without confirmation (see guards). ## Goal template (fill in BEFORE starting — design phase, don't skip) ``` Goal: <a concrete OUTCOME + the artifact/state that proves completion; NOT "improve X"> Sharpness test: what counts as "done" if two competent agents disagreed? Subjective → measurable proxy. Scope: included <…> / excluded <…> / max depth <…> Context: <path to project/data, symptoms, logs — what to READ, not assume> Checks (typed, programmatic FIRST — see "Verification"): - [programmatic] <test / compile /