Skip to main content
Version: 0.28.0

CC-PL-015: Default Component Folder Shadowed by Manifest

Summary

  • Rule ID: CC-PL-015
  • Severity: MEDIUM
  • Category: Claude Plugins
  • Normative Level: SHOULD
  • Auto-Fix: No
  • Verified On: 2026-05-14

Applicability

  • Tool: claude-code
  • Version Range: >=2.1.140
  • Spec Revision: unspecified

Evidence Sources

Test Coverage Metadata

  • Unit tests: true
  • Fixture tests: false
  • E2E tests: false

Examples

The following examples demonstrate what triggers this rule and how to fix it.

Invalid

{
"commands": "./custom-commands"
}
# commands/ also exists at the plugin root

Valid

{
"commands": ["./custom-commands", "./commands"]
}