Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you
- [husky](./plugins/husky)
- [pr-issue-resolve](./plugins/pr-issue-resolve)
- [pr-review](./plugins/pr-review)
- [skill-semver](./plugins/skill-semver)
- [update-branch-name](./plugins/update-branch-name)

### Marketing Growth
Expand Down
20 changes: 20 additions & 0 deletions plugins/skill-semver/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "skill-semver",
"description": "Automatic version control for Claude Code Skills with semantic versioning, auto-backup, and changelog generation",
"version": "1.1.0",
"author": {
"name": "cathy-kim",
"url": "https://github.com/cathy-kim"
},
"homepage": "https://github.com/cathy-kim/skill-semver",
"repository": "https://github.com/cathy-kim/skill-semver",
"license": "MIT",
"keywords": [
"claude-code",
"skill",
"versioning",
"backup",
"changelog",
"semantic-versioning"
]
}
15 changes: 15 additions & 0 deletions plugins/skill-semver/hooks/hooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "npx tsx hooks/skill-version-hook.ts"
}
]
}
]
}
}
Loading