Release
Run a linear release readiness loop.
Workflow
- Determine release scope and target version.
- Verify changelog and migration notes.
- Run required checks from
../_shared/quality-gates.md. - Classify release blockers and warnings.
- Decide gate result (
passorfail). - Write artifact to
.reports/codex/release/<timestamp>/result.json.
Output Contract
Use shared gate schema from ../_shared/quality-gates.md.
Minimum artifact payload:
{
"status": "pass|fail",
"checks_run": [
"lint",
"format",
"types",
"tests",
"review"
],
"checks_failed": [],
"findings": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0
},
"confidence": 0.0,
"artifact_path": ".reports/codex/release/<timestamp>/result.json"
}