release
GitHub用于创建版本发布PR,自动更新版本号、同步依赖并生成用户导向的变更日志。合并后执行打标签和推送操作,触发自动化发布流程及Homebrew更新。
Trigger Scenarios
Install
npx skills add ldayton/Dippy --skill release -g -y
SKILL.md
Frontmatter
{
"name": "release",
"description": "Create a release PR with version bump and changelog",
"argument-hint": [
"version"
],
"disable-model-invocation": true
}
Create a PR with branch name release/v$ARGUMENTS containing only these changes:
- Update version in
pyproject.tomlandsrc/dippy/__init__.py - Run
uv sync -Uto update dependencies - Run
/verify-countsand 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.
Version History
- 2edad4a Current 2026-07-24 21:07


