with one click
with one click
Verify numerical claims in documentation are still accurate
Add support for a new CLI command. Use when implementing a handler or adding to SIMPLE_SAFE.
Ensure comprehensive test coverage for a CLI handler. Use when adding a new command or auditing existing handler coverage.
Debug incorrect Dippy approval or block behavior
| 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:
pyproject.toml and src/dippy/__init__.pyuv sync -U to update dependencies/verify-counts and update any STALE or FAIL claimsNo other changes—no refactors, no fixes, no documentation updates.
Generate release notes from commits since the last tag:
git log $(git describe --tags --abbrev=0)..HEAD --oneline
Focus on what matters to users:
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
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.