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.15 Home All releases olderv2.0.14 v2.0.17newer
Claude Code v2.0.15

Marketplace Plugin Error Tracking

What: Plugin loading now uses structured error tracking with specific error types and detailed context, making it easier to diagnose marketplace installation issues.

Details:

  • New error types: path-not-found (for missing component files) and generic-error (for other failures)
  • Error objects include plugin name, source, path, and component type (commands/agents/skills)
  • Function AD6() at line 223462 now accepts error array parameter and accumulates errors
  • Each missing file is tracked with metadata: { type: "path-not-found", source, plugin, path, component }
  • Provides actionable error messages like "Check that the marketplace entry has the correct path"
  • Evidence: v2.0.14 function zV6() at line 222943 only logged warnings; v2.0.15 function AD6() pushes structured error objects (lines 223537-543, 223567-573, 223593-599)

See this entry in the whole of v2.0.15 →