← Browse

@k1-c/release

A

Check release readiness, preview changelog, and validate publishability. Use when preparing a release or checking version status.

skillclaude

Install

agr install @k1-c/release --target claude

Writes 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

  1. Current version: Read Cargo.toml and report the current version
  2. Git tag check: Run git tag --list 'v*' --sort=-version:refSort to see existing tags
  3. Unreleased commits: Run git log $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~10)..HEAD --oneline --no-decorate to show commits since last tag
  4. Conventional commit validation: Check that recent commits follow conventional commit format (feat:, fix:, docs:, etc.)
  5. Changelog preview: If git-cliff is available, run git-cliff --unreleased to preview the next changelog entry. Otherwise, summarize commits manually.
  6. Publish dry-run: Run cargo publish --dry-run 2>&1 to 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