chore(skills): ship the 18 ghs-* skills as an installable plugin - #7
Merged
Conversation
The skills live in a project-scoped `skills/.claude/skills/`, so today they only
load while working inside `skills/` — for a toolkit whose entire purpose is to
operate on *other* repositories, that is the one place they are least useful.
Add a marketplace manifest at the repo root and a plugin manifest pointing at
the existing directory:
/plugin marketplace add Atypical-Consulting/github-toolkit
/plugin install github-skills@github-toolkit
`source` targets `./skills/.claude` rather than moving the skills, because
`.claude/skills/` is referenced in ~20 places — including the routing table
inside `ghs-orchestrate/SKILL.md` and the "Skills path:" line of every agent
prompt. Moving the tree would break that routing for no gain; the directory
already has the standard `<plugin-root>/skills/<name>` shape.
`shared/` carries no SKILL.md, so skill discovery ignores it while the skills
keep reaching it by relative path.
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.
Problem
The 18
ghs-*skills live inskills/.claude/skills/— a project-scoped directory. Claude Code confirms the scope on load:So a toolkit built to audit, triage and fix other people's repositories is only available while you are sitting inside its own
skills/folder. That is the one directory where it is least useful.Fix
A marketplace manifest at the repo root plus a plugin manifest, making the skills installable:
Why
sourcepoints at./skills/.claudeinstead of moving the files.claude/skills/is referenced in ~20 places, and not only in prose:ghs-orchestrate/SKILL.md(7 rows of.claude/skills/ghs-*/SKILL.md)Skills path: {path to .claude/skills}line in every agent prompt (ghs-repo-scan,ghs-action-fix,ghs-backlog-fix,ghs-issue-implement)shared/checks/**andshared/references/sync-format.mdCLAUDE.md,CONTRIBUTING.md,README.mdof the subtreeMoving the tree would mean rewriting all of it and would break
ghs-orchestraterouting on any line missed — for no functional gain, sinceskills/.claude/already has the exact shape a plugin root needs:<plugin-root>/skills/<skill-name>/SKILL.md. Pointing at it costs zero file moves.shared/carries noSKILL.md, so skill discovery ignores it while the skills keep reaching it by relative path. Verified:find skills/.claude/skills/shared -name SKILL.md→ empty.Verification
skills/.claude/skills/, plusshared/which is correctly not a skill