Release Readiness
Use before a software release or deployment handoff.
- Identify version, target, rollback owner, risk tier, and required approvals.
- Run the repository's tests, lint, build, and security checks. Capture exact commands/results.
- Run
python release-readiness/scripts/check.py <directory> to check baseline artifacts.
- Confirm version/changelog consistency, migration reversibility, artifact provenance, dependency
review, observability, staged rollout, rollback instructions, and unresolved high-severity issues.
- Return
ready, conditionally ready, or not ready, with evidence and explicit blockers.
The script is read-only. Never tag, push, publish packages/images, approve a release, change CI
secrets, or deploy unless separately and explicitly authorized. Prefer local tools and Ollama for
summaries. Commercial providers are optional and must receive redacted data through an explicit
adapter using environment-managed credentials.
1---2name: release-readiness3description: Assess release evidence without publishing, tagging, or changing remote systems.4---56# Release Readiness78Use before a software release or deployment handoff.9101. Identify version, target, rollback owner, risk tier, and required approvals.112. Run the repository's tests, lint, build, and security checks. Capture exact commands/results.123. Run `python release-readiness/scripts/check.py <directory>` to check baseline artifacts.134. Confirm version/changelog consistency, migration reversibility, artifact provenance, dependency14 review, observability, staged rollout, rollback instructions, and unresolved high-severity issues.155. Return `ready`, `conditionally ready`, or `not ready`, with evidence and explicit blockers.1617The script is read-only. Never tag, push, publish packages/images, approve a release, change CI18secrets, or deploy unless separately and explicitly authorized. Prefer local tools and Ollama for19summaries. Commercial providers are optional and must receive redacted data through an explicit20adapter using environment-managed credentials.