What's wrong with this entry?
Anonymous. No account, no email.
- Orphaned bash tasks from exiting agents are now killed automatically, preventing zombie processes from accumulating (search for
"killBashTasksForAgent: killing orphaned bash task") - Voice mode now handles early pre-transcript errors gracefully by retrying once, and ignores stale
onErrorcallbacks from previous sessions (search for"early voice_stream error (pre-transcript), retrying once","ignoring onError from stale session") - OAuth token expiration during bridge/REPL sessions now shows a clear message directing users to run
/login(search for"OAuth token expired and could not be refreshed. Run /login to re-authenticate.") - Bridge REPL initialization now tracks consecutive failures and stops retrying after a threshold, preventing infinite retry loops (search for
"consecutive init failures, not retrying this session") - Hook success content changed from
"Success"/"Condition met"to empty string, reducing noise in hook output - SSL certificate errors now provide actionable guidance: set
NODE_EXTRA_CA_CERTSor ask IT to allowlist*.anthropic.com(search for"SSL certificate error") - Cron job deletion errors now provide clear messages:
"Cannot delete cron job '...'"(search for"Cannot delete cron job") - Orphaned cron jobs (for agents that no longer exist) are now automatically cleaned up (search for
"gone, removing orphaned cron") - Durable cron jobs are now explicitly blocked for teammate sessions with a clear error message (search for
"durable crons are not supported for teammates") - Environment variables related to
ANTHROPIC_UNIX_SOCKETconnections are now stripped when applying config-level env overrides, preventing socket connection leaks across configurations (search for"ANTHROPIC_UNIX_SOCKET"inRr6()) - Text selection in the terminal now uses word-boundary-aware double-click selection with proper anchor span tracking (search for
"anchorSpan"withkind: "word")