Skip to content
Hooks
Skill

/release

Create a release PR with version bump and changelog

From plugin
dippy
2425 skills
Install
$ npx -y skills add ldayton/Dippy --skill release --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/release

Context preview

The summary Claude sees to decide when to auto-load this skill.

Create a release PR with version bump and changelog

SKILL.md

release.SKILL.md
name: release
description: Create a release PR with version bump and changelog
disable-model-invocation: true
argument-hint: [version]

Create a PR with branch name `release/v$ARGUMENTS` containing only these changes:

1. Update version in `pyproject.toml` and `src/dippy/__init__.py` 2. Run `uv sync -U` to update dependencies 3. Run `/verify-counts` and update any STALE or FAIL claims

No other changes—no refactors, no fixes, no documentation updates.

Changelog

Generate release notes from commits since the last tag:

git log $(git describe --tags --abbrev=0)..HEAD --oneline

Focus on what matters to users:

  • New features and capabilities
  • Breaking changes or behavior changes
  • Group all bug fixes as "Various bug fixes" (don't itemize)
  • If Parable was updated, just say "Bump Parable version"
  • Omit internal refactors, test changes, and CI updates

Put the changelog in the PR body. The workflow extracts it for the GitHub release.

Run `just check` before pushing. PR title: `Release v$ARGUMENTS`

After merge

Tag, push, and clean up:

git checkout main && git pull && git tag v$ARGUMENTS && git push --tags && git push origin --delete release/v$ARGUMENTS

The tag triggers a workflow that creates the GitHub release and updates the Homebrew tap.

Ships withdippy

🐤 Less permission fatigue, more momentum. Dippy knows what’s safe to run and keeps Claude on track when plans change.

Get the whole plugin
Stats
241
Stars
22
Forks
Maintained
Maintenance
Python
Language
MIT
License
2mo ago
Last commit
7mo ago
Created

Repo: ldayton/Dippy