From milky-kit
Show which version of milky-kit a project was scaffolded against, compare to the current kit checkout, and list what's changed since. Read-only — does not modify anything. Use when the user asks "am I on the latest milky-kit?", "/milky-kit:check-version", or before deciding whether to run /milky-kit:upgrade.
How this skill is triggered — by the user, by Claude, or both
Slash command
/milky-kit:check-versionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read-only: prints the project's recorded kit SHA, the current kit SHA, and a summary of changes since. Does not modify the project. Pair with `/milky-kit:upgrade` to actually apply changes.
Read-only: prints the project's recorded kit SHA, the current kit SHA, and a summary of changes since. Does not modify the project. Pair with /milky-kit:upgrade to actually apply changes.
User says: "what version of milky-kit am I on?", "is the kit up to date?", "/milky-kit:check-version", "should I upgrade?".
Read ./.milky-kit-version at the project root.
/milky-kit:retrofit to adopt the convention." Exit.Read the kit's current SHA via git -C ~/.claude/kit rev-parse HEAD.
Compute the gap via git -C ~/.claude/kit log --oneline <base>..HEAD | wc -l and git -C ~/.claude/kit log -1 --format='%ad' --date=short <base>.
Print a summary like this:
Project: <project name>
Scaffolded: <base SHA short> on <timestamp>
Template: <template>
Modules: <comma-separated>
Kit checkout: <current SHA short>
Commits behind: <N> (since <base date>)
If behind, run git -C ~/.claude/kit log --oneline <base>..HEAD --no-merges -- templates/<template> modules/core modules/ts <each-applied-module> and print the first ~20 lines. Group by theme if obvious.
Suggest next steps:
/milky-kit:upgrade to review changes."/milky-kit:upgrade will walk through changes one at a time."git fetch on the kit checkout. The user controls when the kit is updated; this skill just reports.~/.claude/kit doesn't existTell the user: "milky-kit is expected to be symlinked at ~/.claude/kit. Run ln -s ~/Code/Projects/milky-kit ~/.claude/kit (or wherever your milky-kit checkout lives) so the .claude/rules/ symlinks resolve to live kit files. See milky-kit's README for setup."
npx claudepluginhub milkyskies/milky-kit --plugin milky-kitCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.