skills/deprecated/mp-release/SKILL.md
Bump version, push tag, verify CI workflow starts. Use when: "release", "bump version", "version bump", "cut a release"
npx skillsauth add MartinoPolo/mpx-claude-code mp-releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Bumps version, pushes tag, verifies CI workflow starts. $ARGUMENTS
manifest.json exists → Obsidian pluginpackage.json only → npm packageRead version from package.json (and manifest.json if Obsidian plugin). Display to user.
If $ARGUMENTS contains patch/minor/major, use it. Otherwise ask:
AskUserQuestion: "What type of version bump?"
Options: patch, minor, major
Run git status --porcelain. If output non-empty, warn user about uncommitted changes and ask to continue or abort.
Run git remote get-url origin. Fail if no remote configured.
Run git branch --show-current. Warn if not on main/master — releases should typically come from the main branch.
npm version <patch|minor|major>
This triggers the version script in package.json (e.g., version-bump.mjs for Obsidian plugins), commits the version change, and creates a git tag.
git push --follow-tags
gh run list --limit 3
Show recent workflow runs to confirm the release workflow triggered.
Report: new version number, tag created, workflow status.
development
Audit all active skills for consistency, convention drift, and common issues. Auto-fixes where possible, reports remaining issues. Use when: "audit skills", "skill audit", "check skills", "lint skills"
testing
Ship finished work: sync base, commit, push, PR, wait for CI green, merge. Use when: "ship it", "ship and merge", "ship this"
development
Scan recent Claude Code sessions for grilling/design discussions, extract decisions, and update CONTEXT.md + DECISIONS.md. Use when: "harvest decisions", "extract decisions from sessions", "update docs from sessions", "sync decisions"
tools
Consolidate CONTEXT.md: remove duplicates, outdated items, tighten language. Use when: "consolidate context", "clean up context", "simplify context", "consolidate requirements"