delimit_gov_new_task
Create a governance-classed task with risk tier and scope to record a gating verdict. This tracked record enables audit-bearing work tracking and approval workflow.
Instructions
Create a governance-classed task with risk tier and scope (Pro).
When to use: immediately after delimit_gov_evaluate returns a "gating required" verdict and you need a tracked, audit-bearing record before performing the gated work. The three-step pipeline is delimit_gov_new_task -> delimit_gov_run -> delimit_gov_verify; this is step one. When NOT to use: for free-form work tracking (use delimit_ledger_add), to perform the work itself (delimit_gov_run), or to verify a completed task (delimit_gov_verify).
Sibling contrast: delimit_ledger_add tracks general work items with no policy gating; this creates a governance-classed task with a risk tier and scope record that the run/verify steps operate on. delimit_gov_evaluate returns a verdict only; this materializes that verdict into a tracked task.
Side effects: gated by require_premium — unlicensed callers receive a license payload, no task created. On a licensed call, invokes backends.governance_bridge.new_task which writes a new task record keyed by a generated task_id into the governance task store; the record carries title, scope, risk_level, repo path, and creation timestamp. The response is routed through _with_next_steps so the returned dict carries orchestrator hints.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Short task title. Required (empty string is rejected). | |
| scope | No | Description of what the task covers. Required. | |
| risk_level | No | One of "low", "medium", "high", "critical". Default "medium". Drives later approval requirements. | medium |
| repo | No | Filesystem path to the repository. Default "." (cwd). | . |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||