fix: add missing name frontmatter to plugin commands#82
Conversation
All five plugin commands (restart, learn, clear-all, show, dashboard) were missing the required name field in their YAML frontmatter. Without it the commands cannot be reliably registered under predictable slash-command names by the Claude Code plugin loader. Co-Authored-By: Claude Code <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughFive plugin command documentation files ( ChangesCommand Frontmatter Names
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Bug: All five plugin commands (
restart,learn,clear-all,show,dashboard) are missing the requirednamefield in their YAML frontmatter; each has onlydescriptionandallowed-tools. Claude Code plugin commands require anamefield for slash-command registration — without it the commands may not be registered under predictable names.Evidence:
grep -n "^name:" plugin/commands/*.mdreturns zero matches; every frontmatter block opens withdescription:as the first field.Fix: Add
name: <command>(matching the filename) as the first field in each file's frontmatter — five one-line additions, no other changes.Summary by CodeRabbit