fix: make root skills/ a real directory so Gemini CLI picks up skills#41
Open
gkarthi-signoz wants to merge 1 commit into
Open
fix: make root skills/ a real directory so Gemini CLI picks up skills#41gkarthi-signoz wants to merge 1 commit into
gkarthi-signoz wants to merge 1 commit into
Conversation
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.
The Gemini extension installed fine, but none of the skills were discovered. The root cause: skills/ was a symlink to plugins/signoz/skills. Gemini's installer clones the repo to a temp directory and copies it into ~/.gemini/extensions/, rewriting symlinks to absolute paths pointing at that temp clone — which is then deleted. The installed extension ended up with a dangling skills symlink, so skill discovery found nothing.
Changes
Replaced the root skills/ symlink with a real copy of plugins/signoz/skills/ (12 skills). plugins/signoz/skills/ remains the source of truth.
Extended the auto CalVer bump workflow to rsync plugins/signoz/skills/ → skills/ whenever the signoz plugin changes, so the two copies can't drift. The sync lands in the same auto-bump commit.
Documented the convention in CONTRIBUTING.md: never edit root skills/ directly.
Testing
gemini extensions validate . passes.
Installed from local path: ~/.gemini/extensions/signoz/skills/ now contains real skill directories (previously a dangling symlink), and /skills list shows all 12 skills.