fix(plugin): put the skill where Claude Code actually looks for it - #27
Merged
Conversation
Claude Code discovers a plugin's skills under skills/<name>/SKILL.md. SKILL.md sat at the repo root and there was no skills/ directory, so '/plugin marketplace add RevylAI/greenlight' followed by '/plugin install greenlight' installed a plugin that provided nothing: no skill, no commands, no agents. The README documented that flow anyway. Moves it to skills/greenlight/SKILL.md, matching how the plugins in anthropics/claude-plugins-official are laid out, and leaves a pointer at the root because that is where people look for it (#3). The content is unchanged; only its location moved.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
/plugin marketplace add RevylAI/greenlightfollowed by/plugin install greenlightinstalled a plugin that provided nothing: no skill, no commands, no agents. The README documented that flow anyway.Claude Code discovers a plugin's skills under
skills/<name>/SKILL.md.SKILL.mdsat at the repo root and there was noskills/directory, so the loader had nothing to find. Verified against the plugins inanthropics/claude-plugins-official(hookify, receipts, claude-security, project-artifact), which all use that layout.skills/greenlight/SKILL.md. Content unchanged, only the location.Found while checking whether the Claude Code integration was demo-ready. It wasn't.
Note
Low Risk
Documentation and file layout only; no runtime or CLI behavior changes.
Overview
Fixes an empty Claude Code plugin by placing the greenlight skill at
skills/greenlight/SKILL.md, which is where Claude Code loads plugin skills from. The full skill body is unchanged; only its location moved.The repo-root
SKILL.mdis now a short pointer (why it moved, install via/plugin, manual copy path) so people who still openSKILL.mdat the root are not left with a broken layout.README manual-install copy command now points at
skills/greenlight/SKILL.mdinstead of the root file.Reviewed by Cursor Bugbot for commit b70974b. Bugbot is set up for automated code reviews on this repo. Configure here.