release
- Repo stars 1,396
- Author repo psd-tools
Step 0 — Determine target version
Provided version: $ARGUMENTS
If a version was provided (above is non-empty)
Validate it as a PEP 440 string (e.g. 1.2.3, 1.2.3a1, 1.2.3rc1, 1.2.3.post1).
Note: PEP 440 versions must not start with v — that prefix belongs on the git tag, not
the version string.
Stop and ask the user to correct it if invalid. Store it as VERSION for all subsequent steps.
If no version was provided (above is empty)
Analyze the commits listed in Step 1 to recommend the correct next version.
The last tag shown in Step 1 uses a v prefix (e.g. v1.14.3); strip it when computing
the next version so the result is a bare PEP 440 string (e.g. 1.14.4, not v1.14.4).
Apply these semver rules:
- Major bump (
X+1.0.0) — any commit that breaks a public API or documented behaviour - Minor bump (
X.Y+1.0) — any new public feature or API addition, no breaking changes - Patch bump (
X.Y.Z+1) — bug fixes, security patches, chores, docs, or refactoring only
Show your reasoning and proposed version to the user, then ask them to confirm or override it. Store the confirmed version as VERSION for all subsequent steps.
Step 1 — Review commits since the last release
Fetch tags:
!git fetch --tags -q || echo "Warning: failed to fetch tags — check network/auth and consider retrying."
Last tag: !git describe --tags --abbrev=0 2>/dev/null || echo "(none)"
Today's date: !date +%Y-%m-%d
Now list the commits since the last release by running one of these commands:
- If "Last tag" above is
(none): rungit log --oneline - Otherwise: run
git log <LAST_TAG>..HEAD --oneline(substituting the actual tag)
You must run this command and review the output before proceeding to Step 0 or Step 2.
Step 2 — Draft changelog entry
Read docs/changelog.rst to understand the current format, then draft a new entry for VERSION
using this RST format:
VERSION (YYYY-MM-DD)
--------------------
- [category] Description (#PR)
Important: The - underline must be at least as long as the title line (RST requirement).
Count the exact characters in VERSION (YYYY-MM-DD) and use that many dashes.
Use these categories (pick the most specific one per bullet):
api— public API additions or changespsd— low-level PSD parsing/writingfix— bug fixesrefactor— internal restructuring, no behaviour changedocs— documentation onlyci— CI/CD, GitHub Actionschore— dependency bumps, tooling, housekeepingsecurity— security fixes
Group related changes. Omit purely internal churn that users won't care about. Reference PR numbers where available.
Show the draft to the user and ask for approval or edits before continuing.
Step 3 — Update docs/changelog.rst
Prepend the approved changelog entry directly after the Changelog header block and the
following blank line, leaving a blank line between the header and the new entry.
Step 4 — Create release branch and commit
git checkout -b release/vVERSION
Then update src/psd_tools/version.py using the Edit tool — replace the existing
__version__ line with:
__version__ = "VERSION"
VERSION is the bare PEP 440 string without the v prefix (e.g. 1.15.0, not v1.15.0).
Then stage both changed files and commit:
git add docs/changelog.rst src/psd_tools/version.py
git commit -m "docs: release vVERSION"
git push -u origin release/vVERSION
Replace VERSION with the actual version string (e.g. 1.15.0).
Step 5 — Open a pull request
Run gh pr create with --title "Release vVERSION" and a --body containing:
- A
## Release vVERSIONheading - A
### Changelogsection with the approved entry from Step 2 pasted in - A
### Release checklistsection with these items:[ ] Changelog entry reviewed and accurate[ ] Version follows PEP 440
- A closing note: "After this PR is merged, the
auto-tagworkflow will tag the merge commit asvVERSIONand thereleaseworkflow will build wheels and publish to PyPI automatically."
Replace VERSION with the actual version string throughout.
Step 6 — Done
Print the PR URL. Remind the user:
After the PR is approved and merged, the
auto-tagGitHub Actions workflow tags the merge commit asvVERSIONautomatically. That tag push triggers thereleaseworkflow to build wheels for all platforms and publish to PyPI. No manual tagging or publishing is needed.
Replace VERSION with the actual version string.
- Fluxly category
- Engineering
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @psd-tools · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Python
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Provided version: $ARGUMENTS
Fetch tags: !git fetch --tags -q || echo "Warning: failed to fetch tags — check network/auth and consider retrying." Last tag: !git describe --tags --abbrev=0 2>/dev/null || echo "(none)"
Read docs/changelog.rst to understand the current format, then draft a new entry for VERSION using this RST format: Important: The - underline must be at least as long as the title line (RST requirement).
Prepend the approved changelog entry directly after the Changelog header block and the following blank line, leaving a blank line between the header and the new entry.
Then update src/psdtools/version.py using the Edit tool — replace the existing version line with: VERSION is the bare PEP 440 string without the v prefix (e.g. 1.15.0, not v1.15.0).
Run gh pr create with --title "Release vVERSION" and a --body containing: A Release vVERSION heading A Changelog section with the approved entry from Step 2 pasted in
## Step 0 — Determine target version
**Provided version**: $ARGUMENTS
### If a version was provided (above is non-empty)
Validate it as a PEP 440 string (e.g. `1.2.3`, `1.2.3a1`, `1.2.3rc1`, `1.2.3.post1`).
Note: PEP 440 versions must **not** start with `v` — that prefix belongs on the git tag, not
the version string.
Stop and ask the user to correct it if invalid. Store it as **VERSION** for all subsequent steps.
### If no version was provided (above is empty)
Analyze the commits listed in Step 1 to recommend the correct next version.
The last tag shown in Step 1 uses a `v` prefix (e.g. `v1.14.3`); strip it when computing
the next version so the result is a bare PEP 440 string (e.g. `1.14.4`, not `v1.14.4`).
Apply these semver rules:
- **Major bump** (`X+1.0.0`) — any commit that breaks a public API or documented behaviour
- **Minor bump** (`X.Y+1.0`) — any new public feature or API addition, no breaking changes
- **Patch bump** (`X.Y.Z+1`) — bug fixes, security patches, chores, docs, or refactoring only
Show your reasoning and proposed version to the user, then ask them to confirm or override it.
Store the confirmed version as **VERSION** for all subsequent steps.
## Step 1 — Review commits since the last release
Fetch tags:
!`git fetch --tags -q || echo "Warning: failed to fetch tags — check network/auth and consider retrying."`
Last tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "(none)"`
Today's date: !`date +%Y-%m-%d`
Now list the commits since the last release by running one of these commands:
- If "Last tag" above is `(none)`: run `git log --oneline`
- Otherwise: run `git log <LAST_TAG>..HEAD --oneline` (substituting the actual tag)
You must run this command and review the output before proceeding to Step 0 or Step 2.
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Step 0 — Determine target version → If a version was provided (above is non-empty) → If no version was provided (above is empty) → Step 1 — Review commits since the last release → Step 2 — Draft changelog entry → Step 3 — Update docs/changelog.rst
terms -> Provided version · not · VERSION · Major bump · Minor bump · Patch bump · Important · without
files/cmd -> 1.2.3 · 1.2.3a1 · 1.2.3rc1 · 1.2.3.post1 · prefix (e.g. · 1.14.4 · v1.14.4 · X+1.0.0
body sha256 -> 4c41e60ad95b
Decide Fit First
Design Intent
How To Use It
Boundaries And Review