From sdlc
Cut a release tag at a CI-green merged commit, then invoke the `retro` skill for the release-window cross-PR synthesis. Does NOT deploy / arm / promote — those stay human-gated. Trigger on "cut release", "release the current head", or /release.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sdlc:releaseThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Outer-loop skill. Cuts the release tag and triggers the cross-PR playbook update via the `retro` skill. **Cut ≠ deploy** — deploying/arming a release is a separate, human-gated repo-local step (never performed by this skill).
retroOuter-loop skill. Cuts the release tag and triggers the cross-PR playbook update via the retro skill. Cut ≠ deploy — deploying/arming a release is a separate, human-gated repo-local step (never performed by this skill).
git rev-parse HEAD. MUST be an ancestor of origin/main (release only from merged main).git log <prev_tag>..<sha> --onelinegh pr list --state merged --base main --search "merged:>=<prev_tag_date>" --limit 60gh issue list --state closed --search "closed:>=<prev_tag_date>" --limit 60release_cmd (.claude/sdlc.toml) if set; otherwise the generic fallback:
git tag -a <tag> <sha> -m "Release <tag>" && git push origin refs/tags/<tag>
gh release create <tag> --target <sha> --generate-notes --title <tag>
Tag naming is the repo's choice (e.g. semver v0.1.0 auto-bumped from the latest tag)./retro --window <prev_tag>..<sha> for the cross-PR synthesis — it spawns a subagent to read the window's merged PRs + closed issues + git, then opens a single playbook PR with higher-order patterns the per-PR review passes wouldn't have caught.prod_gated = true).qa apply.reviewreview is the per-PR skill that fires on every merge — it consumes one asset's ## Report and applies playbook deltas continuously. retro (this skill's downstream) is the per-release skill — it synthesizes across the full window of already-merged workstreams for higher-order patterns no single PR's report would surface alone. By the time /release runs retro, the per-PR review passes have already drained the single-PR lessons; the retro's job is the cross-cutting residue.
npx claudepluginhub meowkey-dev/machine-plugins --plugin sdlcGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.