release-readiness-checklist
Installation
SKILL.md
Release Readiness Checklist
Conduct an interactive release readiness review, walking through each checklist category and producing a markdown summary at the end.
Workflow
- Detect build system - Check for Makefile and available targets
- Determine version - Analyze changes to recommend semantic version bump
- Walk through checklist - Review each category interactively with the user
- Generate summary - Output markdown checklist with status and action items
Step 0: Detect Build System
Check if the project has a Makefile or Justfile with standard targets:
# List Makefile targets
make -qp 2>/dev/null | grep -E "^[a-zA-Z_-]+:" | cut -d: -f1 | sort -u