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.60 Home All releases olderv2.0.59 v2.0.61newer
Claude Code v2.0.60

Prompt Queue Auto-Execution Hook

What: New hook that automatically processes queued commands when the session becomes idle.

How it works: When commands are queued (via /add-to-queue or similar), they are now automatically executed when the session is no longer busy, rather than requiring manual intervention.

Details:

  • Added i59() hook at line 475244 that monitors loading state and queued commands
  • Calls executeQueuedInput callback when session is idle and queue is non-empty
  • Added p59() function for executing the queued input with proper state management
  • Tracks execution with a ref to prevent duplicate processing
  • Evidence: Hook usage at line 19833-19839 in main component

See this entry in the whole of v2.0.60 →