Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.35 Home All releases olderv2.0.34 v2.0.36newer
Claude Code v2.0.35

Optional Auto-Exit on Idle

What: Claude Code can now automatically exit after a configured period of inactivity.

How to use:

# Set idle timeout to 60 seconds (60000 milliseconds)
export CLAUDE_CODE_EXIT_AFTER_STOP_DELAY=60000
claude

# Claude Code will now exit automatically after 60 seconds of no activity

Details:

  • Disabled by default - only activates when CLAUDE_CODE_EXIT_AFTER_STOP_DELAY environment variable is set
  • Value is in milliseconds (e.g., 60000 = 60 seconds)
  • Timer resets whenever Claude Code processes a command
  • Useful for automated testing, CI/CD pipelines, or managing long-running sessions
  • Evidence: XA9() at line 488655, exit message at line 488668

See this entry in the whole of v2.0.35 →