@k1-c/release
ACheck release readiness, preview changelog, and validate publishability. Use when preparing a release or checking version status.
Install
agr install @k1-c/release --target claudeWrites 1 file into .claude/skills/, pinned to git-1f309e8a.
- .claude/skills/release/SKILL.md
Document
description: Check release readiness, preview changelog, and validate publishability. Use when preparing a release or checking version status. trigger: /release
Release Check
Run the following checks to validate release readiness:
Steps
- Current version: Read
Cargo.tomland report the current version - Git tag check: Run
git tag --list 'v*' --sort=-version:refSortto see existing tags - Unreleased commits: Run
git log $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~10)..HEAD --oneline --no-decorateto show commits since last tag - Conventional commit validation: Check that recent commits follow conventional commit format (feat:, fix:, docs:, etc.)
- Changelog preview: If
git-cliffis available, rungit-cliff --unreleasedto preview the next changelog entry. Otherwise, summarize commits manually. - Publish dry-run: Run
cargo publish --dry-run 2>&1to verify the package is publishable
Output
Report a summary:
- Current version:
x.y.z - Commits since last release: N
- Suggested next version based on conventional commits (patch/minor/major)
- Any issues found (missing fields, build errors, etc.)
- Dry-run result (pass/fail)
Notes
- The actual release process is automated via release-plz (GitHub Actions)
- This skill is for local validation before pushing to main
- To publish: push conventional commits to main, release-plz will create a release PR
Trustgrade A
- passBody integrity
Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.
- passType matchnot applicable to this artifact type
Whether the artifact is really the kind of thing its metadata claims it is.
- passFreshness
How long since the source repository was last pushed to.
- passPrompt injection
Scans the artifact's own text for instructions aimed at your agent rather than at you.
- passLicense
Whether the source repository declares an SPDX license permissive enough to redistribute.
How the grade is calculated
Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:
- Aevery check passed
- Bone warning
- Ctwo warnings
- Dprompt injection or body integrity failed, or three warnings
- Fone of those failed, and something else is wrong
These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.
Versions
git-1f309e8a59812026-07-31