← ClaudeAtlas

overnightlisted

Autonomous, long-running loop that drives a goal to completion while the user is away. Repeats AUDIT -> FIX -> VERIFY -> COMMIT (calling the /audit skill each round) until "nothing left to do" or the user interrupts, keeping a durable backlog + journal so nothing is ever lost, scheduling its own wake-ups for true overnight cadence, and pinging the user on blockers (device unplugged, build red, a decision needed). Trigger when the user says "work overnight", "keep going until I wake up / until it's done", "loop on this", "don't stop until nothing's left", or runs /overnight.
Evil-Bane/argus · ★ 0 · Code & Development · score 72
Install: claude install-skill Evil-Bane/argus
# /overnight — autonomous build/fix loop Take a goal and relentlessly close it out, unattended, committing as you go. This skill is the orchestrator: each round it runs the **/audit** skill (which already does discovery + functional + sync + UI-craft + persona + competitive lenses with adversarial verify), then FIXES what's confirmed, VERIFIES, and COMMITS — then loops. The user should be able to walk away and return to a materially better artifact with a clean trail. `$ARGUMENTS` = the goal (e.g. "make ZoneIN production-ready", "fix every bug in the dashboard"). No args = continue the project's stated goal / open backlog. ## Non-negotiables - **Durable state, never lose progress.** Maintain a `TodoWrite` list AND a journal file (`.overnight/journal.md` or similar) recording every round: what was audited, what was fixed, what's left, what's blocked, the commit hashes. On resume, read it first. The todo is the source of truth — keep exactly one item `in_progress`. - **Commit after every green change.** Branch first if on the default branch. Small, verified commits with clear messages. Build/tests must pass before committing (revert if not). - **Ground truth.** Verify fixes on the real artifact (device screenshots / Playwright / CLI), not just by recompiling. A fix isn't done until it's observed working and not regressing. - **Surface blockers, don't stall.** If something needs the user (a destructive action, a credential, a product decision, a disconnected devic