From skill-maintainer
Bump a plugin's version across all sources (plugin.json, marketplace.json, SKILL.md, pyproject.toml) atomically. Use when the user says "sync versions", "bump version", "align versions", or "/sync-versions <plugin> <version>". Pass plugin name and target version as arguments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-maintainer:sync-versionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bump a plugin's version atomically across all locations where version is tracked.
Bump a plugin's version atomically across all locations where version is tracked.
/skill-maintainer:sync-versions <plugin-name> <version>
Examples:
/skill-maintainer:sync-versions tui-design 0.3.0
/skill-maintainer:sync-versions skill-dashboard 1.1.0
/skill-maintainer:sync-versions # interactive: pick plugin + version
If arguments were passed, parse <plugin-name> <version> from them.
Otherwise, run the skill-dashboard version alignment check or list all plugins with their current versions, then ask:
Read the current version from the plugin's .claude-plugin/plugin.json to confirm the starting point.
For the target plugin, update version in every file that tracks it:
The plugin's .claude-plugin/plugin.json:
"version": "X.Y.Z"
Root .claude-plugin/marketplace.json -- find the entry by plugin name:
"version": "X.Y.Z"
The skill whose directory name matches the plugin name (e.g., skills/<plugin>/skills/<plugin>/SKILL.md or apps/<plugin>/skills/<plugin>/SKILL.md). Update metadata.version in frontmatter:
metadata:
version: X.Y.Z
If the plugin has a pyproject.toml, update:
version = "X.Y.Z"
Set metadata.last_verified to today's date (YYYY-MM-DD) in the primary SKILL.md.
List exactly what was changed:
Version bumped: mece-decomposer 0.3.0 -> 0.4.0
Updated files:
- apps/mece-decomposer/.claude-plugin/plugin.json
- .claude-plugin/marketplace.json (mece-decomposer entry)
- apps/mece-decomposer/skills/mece-decomposer/SKILL.md (metadata.version, last_verified)
- apps/mece-decomposer/pyproject.toml
Skipped (not found):
- (none)
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub fblissjr/fb-claude-skills --plugin skill-maintainer