What's wrong with this entry?
Anonymous. No account, no email.
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) andgeneric-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 functionAD6()pushes structured error objects (lines 223537-543, 223567-573, 223593-599)