From gitwise
Use when the user asks to create a release, bump the version, publish a new version, or step through release prepare / finish / abort. Suggests a semantic version bump, generates a changelog entry and release notes, tags the commit, and optionally creates a GitHub release.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gitwise:releaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Bash: `node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js"`
node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js"git loggit taggh release createprepare — plan and persist (no tag, no push)node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js" prepare [--bump <type>].gitwise/release-<version>.md before finishing.finish — apply the persisted plannode "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js" finish [--no-gh-release] [--no-workspace-propagation] [--no-delete-branch]abort — discard the persisted plannode "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js" abort [--delete-branch]--delete-branch only when the user explicitly asks to remove the release branch — the skill defaults to keeping it.node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js" [--bump <type>]node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/release.js" [--bump <type>] --apply--bump <major|minor|patch> — override the AI-suggested bump type (legacy + prepare).--apply — tag and push, update CHANGELOG.md, create GitHub release (legacy one-shot only).--no-gh-release — skip creating a GitHub release (tag only) (legacy + finish).--no-workspace-propagation — skip propagating the new version to packages/*/package.json (legacy + finish).--no-delete-branch — keep the release branch after merging (finish, gitflow only).--delete-branch — also delete the release branch when aborting (abort, gitflow only).On failure the script exits non-zero and prints Error [<code>]: <message> to stderr. React to the typed code (e.g. NO_RELEASE_PLAN, STALE_PLAN_TAG_EXISTS, WORKING_TREE_DIRTY) and surface the message to the user.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub denisvieiradev/gitwise --plugin gitwise