Delimit Release Validate
delimit_release_validateValidates a release against preflight checks before rollout, returning a pass/fail verdict. Failed validations trigger evidence collection, notifications, and a P1 fix item.
Instructions
Validate that a release is safe to ship.
When to use: as the gate between delimit_release_plan and the actual rollout — confirms the release passes preflight checks. When NOT to use: for OpenAPI spec linting (delimit_lint) or for runtime health (delimit_obs_status).
Sibling contrast: delimit_release_plan describes what would ship; this attests it is safe to ship.
Side effects: on success, returns a passed verdict (no side effects). On failure, auto-chains:
backends.repo_bridge.evidence_collect (records failure evidence)
ai.notify.send_notification (webhook event release_validation_failed)
ai.ledger_manager.add_item (creates ops-ledger fix item, P1)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| version | Yes | Release version string. Required. | |
| environment | Yes | Target environment ("production" / "staging"). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||