.agents/skills/draft-release/SKILL.md
Draft the next release version and changelog by fetching tags, computing the next semantic v* tag, collecting merged PRs into master since last release via gh, and printing the proposed version and categorized changelog.
npx skillsauth add dasdae/dascore draft-releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Draft the next release version and changelog from merged PRs.
release_type (optional): major, minor, patch, or bugfix.bugfix (patch and bugfix are equivalent).git fetch --all --tags and the GitHub CLI PR commands used to collect merged PRs (for example gh pr list, gh pr view, or gh api).git fetch --all --tags
v and match strict semver:
^v[0-9]+\.[0-9]+\.[0-9]+$ (ignore pre-release/build suffixes).v1.2.3).v0.0.0 as the base.release_type:
major: X+1.0.0minor: X.Y+1.0patch/bugfix (default): X.Y.Z+1vX.Y.Z.last_release_tag..origin/master
(or ..origin/<default_branch> if default branch is not master).gh) to read merged PRs for that scope.New FeaturesBug FixesBreaking ChangesBreaking Changes if any of:
! in conventional-commit style segment, orbreaking), orBREAKING CHANGE.New Features if labels/titles indicate feature work
(e.g., feature, enhancement, feat).Bug Fixes.Next Version: vX.Y.Z
## New Features
- #123: Short summary (https://github.com/OWNER/REPO/pull/123)
## Bug Fixes
- #124: Short summary (https://github.com/OWNER/REPO/pull/124)
## Breaking Changes
- #125: Short summary (https://github.com/OWNER/REPO/pull/125)
- None.- None.tools
Instructions for working on a task in this repo.
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.