Agent skill
mflux-release
Prepare a release in mflux (version bump, changelog, contributors, uv lock) without tagging/publishing. Use when preparing a release branch or release PR.
Install this agent skill to your Project
npx add-skill https://github.com/filipstrand/mflux/tree/main/.cursor/skills/mflux-release
SKILL.md
mflux release prep
Releases are prepared in-repo; tagging/publishing is handled by GitHub Actions.
When to Use
- You’re preparing a release PR.
- You need to bump version and update the changelog/lockfile correctly.
Instructions
- Checklist:
- Bump version in
pyproject.toml - Review commits since last release tag:
git log --oneline v.<last-version>..HEAD
- Browse relevant file contents if needed to clarify changes
- Weigh commit impact: some are minor; skim earlier changelog entries to gauge what's worth reporting vs tiny fixes
- Add a descriptive entry to
CHANGELOG.mdbased on those commits - Always add a
### 👩💻 Contributorssection to the new changelog entry - Source contributor names from merged GitHub PR authors for the changes included in the release, and format them as
@handle - Prefer one release commit for the release prep work on the branch
- Name that commit
Release <version> - Prefer GitHub data over local git author names:
- Use
gh pr list --state merged/ relatedghqueries when available - Do not assume
ghis installed; if it is unavailable, inspect GitHub on the web instead - General pages to check on the web:
- Closed PRs:
https://github.com/<owner>/<repo>/pulls?q=is%3Apr+is%3Aclosed - Compare view for release range:
https://github.com/<owner>/<repo>/compare/v.<last-version>...HEAD - Specific PR page when you know the PR number:
https://github.com/<owner>/<repo>/pull/<number>
- Closed PRs:
- Map included changes to merged PR authors from those pages
- Use
- Do not invent handles, and do not treat local-only commits as contributors unless the user explicitly wants that
- Update lockfile:
uv lock - Sanity checks (optional unless requested):
make test-fast,make build - Manual checks (optional): if the release includes CLI/callback/image-path changes, consider running the
mflux-manual-testingskill to exercise the touched commands and visually review outputs.
- Bump version in
- Do not tag releases locally unless explicitly requested (normally handled by CI).
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
mflux-model-porting
Port ML models into mflux/MLX with correctness-first validation, then refactor toward mflux style.
mflux-manual-testing
Manually validate mflux CLIs by exercising the changed paths and reviewing output images/artifacts.
mflux-cli
Navigate MFLUX CLI capabilities, locate commands by area, and summarize supported features.
mflux-dev-env
Set up and work in the mflux dev environment (arm64 expectation, uv, Makefile targets, lint/format/test).
mflux-pr
Make a clean PR in mflux (inspect diff, quick verification, commit, push, open PR) using repo conventions.
mflux-testing
Run tests in mflux (fast/slow/full), preserve image outputs, and handle golden image diffs safely.
Didn't find tool you were looking for?