Back to browse
GitHub Repository

Autonomous work mode for Claude Code. Pre-flight risk assessment, blocker decision framework, session-scoped stop hook.

262 starsShell

Nonstop, two files that keep Claude Code working while you sleep

by andylizf·Mar 25, 2026·1 point·0 comments

AI Analysis

●●●BangerSolve My ProblemBig BrainCozy

Pre-flight checks catch blockers before bed, stop hooks prevent 3am failures.

Strengths
  • Pre-flight phase forces Claude to ask all questions before you leave the keyboard
  • Dangerous ops manifest requires explicit approval for rm -rf, force pushes, paid APIs
  • Two files, zero dependencies vs Ralph's 2k lines or taskmaster's completion tokens
Weaknesses
  • Claude Code-specific, won't work with Cursor, Continue, or other AI coding tools
  • Relies on Claude's honesty during pre-flight simulation—could miss edge cases
Target Audience

Developers who use Claude Code for extended or overnight coding tasks

Similar To

Ralph · taskmaster

Post Description

I use Claude Code for big tasks overnight maybe twice a week. About 70% of the time I come back to nothing. It stopped in the first few minutes because it had a question. Or hit a permission error on step 2 of 47 and just sat there. All night.

nonstop is my fix. Two files, no dependencies.

Before you walk away, /nonstop makes Claude do a pre-flight. It thinks through the whole task, asks every question it might have, and you approve or deny anything destructive (rm -rf, force pushes, posting PRs, calling paid APIs). All the "would block me at 3am" stuff gets resolved while you're still at the keyboard.

Then a stop hook keeps it from quitting. If it gets stuck: try to solve it, try to work around it, or mark it blocked and move on to the next thing. No spinning.

There are other tools for this (Ralph is a ~2k line bash orchestrator that wraps the CLI, taskmaster uses completion tokens). nonstop is deliberately minimal. Skill file + shell script. Felt like the right tradeoff for something I want to trust overnight.

Repo: https://github.com/andylizf/nonstop

Similar Projects