agentsclimarketplace

Release helper

Skill skills-lock/skil-lock/.claude/skills/release-helper

Pin AI Skill behavior. Block unapproved drift in CI. See exactly what changed in every PR.

Install
npx -y skills add skills-lock/skil-lock --skill release-helper

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when preparing a new tagged release of skil-lock. Inspects recent commits since the last tag, drafts release notes against the conventional-commit prefixes in this repo (feat, fix, build, docs, test, chore), and shows the version bump that GoReleaser will apply. Does not push tags or publish releases — those steps stay manual.

SKILL.md

1.9 KB, as published. Nobody here has run it

release-helper

Helper for cutting a new tagged release. Surfaces the commits the release would include and drafts notes in the same format the existing GitHub release pages use.

When to use

Invoke this skill from ~/Projects/skil-lock/ (the repository root) just before tagging a release. The skill is read-only with respect to the repository; it never modifies tracked files.

What it does

  1. Find the previous tag:
git describe --tags --abbrev=0
  1. List the commits since then:
git log "${PREV_TAG}..HEAD" --pretty=format:'%h %s'
  1. Group commits by conventional-commit prefix (feat:, fix:, build:, docs:, test:, chore:) into a draft markdown document.

  2. Read the existing changelog so the draft slots in cleanly:

cat CHANGELOG.md
  1. Print the proposed next tag based on the prefixes seen (fix: only → patch bump; feat: present → minor bump; anything labeled BREAKING CHANGE: → major bump).

What it does not do

  • Never runs git tag, git push, or gh release create — those remain manual so a human reviews the draft.
  • Does not touch the .goreleaser.yml file.
  • Does not call any external network endpoint.

Constraints for the agent

Run only the commands listed above (git describe, git log, cat CHANGELOG.md). Do not interpret unrelated arguments; if the user asks for something outside the scope of preparing a release draft, ask them to clarify instead of running additional shell commands.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.