Delimit Gov Verify
delimit_gov_verifyAttest that a completed governance task satisfies policy, producing an audit-ready verification record. Use after execution to flip status from ran to verified.
Instructions
Attest that a governance task completed under policy (Pro).
When to use: as step three (closing step) of the governance pipeline, immediately after delimit_gov_run has recorded the execution. This is the call that flips a task from "ran" to "verified" and produces the attestation entry used by downstream audit consumers. When NOT to use: to mint a task (delimit_gov_new_task) or to record the execution itself (delimit_gov_run). Verify is closing only — it does not run work and does not create tasks.
Sibling contrast: delimit_gov_new_task creates; delimit_gov_run records execution; this attests the outputs satisfy policy. Compared to delimit_evidence_verify (which checks an evidence file), this attests against the policy engine, not a static file.
Side effects: gated by require_premium — unlicensed callers receive a license payload, no verification recorded. On a licensed call, invokes backends.governance_bridge.verify which writes a verification record against the task_id (verdict, timestamp, repo, policy snapshot). The response is routed through _with_next_steps. Does not perform additional work — only validates and records the verdict.
Prerequisite: requires Delimit Pro. An unlicensed call returns {"error": ..., "upgrade": "https://delimit.ai/pricing"} without running.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Filesystem path to the repository. Default "." (cwd). | . |
| task_id | No | Identifier from delimit_gov_new_task / delimit_gov_run. Required. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||