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 v1.0.128 Home All releases olderv1.0.127 v2.0.0newer
Claude Code v1.0.128

Enhanced Notification System

What: Replaced simple single-notification system with a sophisticated priority-based queue.

Details:

  • Four priority levels: immediate (0), high (1), medium (2), low (3)
  • Notifications queued and displayed based on priority sorting
  • "Immediate" priority can interrupt currently displayed notifications
  • State structure: { current: notification | null, queue: notification[] }
  • Notifications support rich content via jsx property for React components
  • Unique key property for deduplication
  • Visual theming via color property
  • Default 8000ms timeout (configurable via timeoutMs)
  • Evidence: Priority queue function Qz() at line 363067, priority sorting F19() at line 363140, priority mapping at line 363139

See this entry in the whole of v1.0.128 →