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.10 Home All releases olderv2.0.9 v2.0.11newer
Claude Code v2.0.10

Enhanced Plugin Error Tracking

What changed: Plugin loading failures are now tracked individually with structured error information instead of failing silently

Details:

  • New errors array in plugins state stores error details with source attribution
  • Individual try-catch blocks around commands, agents, and hooks loading prevent cascading failures
  • Error objects include source field: "plugin-commands", "plugin-agents", "plugin-hooks", or "plugin-loading"
  • Error count included in startup logs: Loaded plugins - ... Errors: ${count}
  • If one plugin component fails to load, others still attempt to load
  • Evidence: ad1() at line 423922, errors field at line 448824 in v2.0.10 (errors ignored in dMB() at line 422999 in v2.0.9)

See this entry in the whole of v2.0.10 →