agentsclimarketplace

Release

Skill DROOdotFOO/agent-skills/skills/release

Agent skills, autonomous agents, and MCP-companions for programming

Install
npx -y skills add DROOdotFOO/agent-skills --skill release

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

  • 1 stars1 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

Release management with changelog generation, semantic versioning, and readiness checks. TRIGGER when: user asks to prepare a release, generate a changelog, bump version, check release readiness, or create a release tag; user runs /release or /changelog. DO NOT TRIGGER when: writing commit messages (use conventional commits directly), deploying to infrastructure, debugging production issues.

SKILL.md

2.9 KB, as published. Nobody here has run it

Release Skill

End-to-end release management: parse conventional commits, determine the version bump, generate a changelog, run readiness checks, and create the release.

Workflow

  1. Parse commits -- Collect commits since last release tag. Classify by type. See conventional-commits.md.
  2. Determine version bump -- Apply SemVer rules: BREAKING CHANGE -> major, feat -> minor, everything else -> patch.
  3. Generate changelog -- Group changes by category, write user-meaningful descriptions. See changelog-template.md.
  4. Readiness checks -- Validate pre-release conditions. See readiness-checklist.md.
  5. Verify -- Run the full test suite on the exact commit being tagged. Show the output. Do not tag a commit you have not tested in this session.
  6. Create release -- Tag the commit, push tag, create GitHub release with changelog body.

Version Bump Logic

Current: 2.3.1
Commits since v2.3.1:
  feat: add search API         -> minor
  fix: correct pagination      -> patch
  feat!: redesign auth flow    -> major (BREAKING)

Result: BREAKING wins -> v3.0.0

When multiple bump types conflict, the highest wins: major > minor > patch.

Output Format

Release: v3.0.0 (from v2.3.1)
Bump reason: BREAKING CHANGE in auth flow redesign
Changelog: 2 features, 1 fix, 0 breaking migration notes
Readiness: 8/9 checks passed (WARN: no stakeholder sign-off)
Action: Tag and push? [y/n]

What You Get

  • A semantically versioned release tag with the correct bump (major/minor/patch) derived from conventional commits
  • A generated changelog grouped by category (features, fixes, breaking changes) with user-meaningful descriptions
  • A readiness report showing which pre-release checks passed or failed, with warnings for anything unresolved

Sub-files

FileContent
conventional-commits.mdCommit types, SemVer mapping, linting
changelog-template.mdChangelog format, grouping, quality checks
readiness-checklist.mdPre-release validation, DORA, rollback

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.