cmmn-claim_complete_with_evidence
cmmn-claim_complete_with_evidenceEvaluates acceptance criteria against supplied evidence to complete a task, returning per-criterion verdicts on rejection or requesting user review when uncertain.
Instructions
Judge-layer task completion (case #1:4264 phase 3). Evaluates the task's acceptance_criteria against the supplied evidence. On satisfied: completes the task. On not_satisfied: returns a judge_rejected halt with per-criterion verdicts. On uncertain (manual criteria present): returns user_review_required (phase 4 will introduce LLM judging). Tasks with no acceptance_criteria fall through to cmmn-complete_task semantics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| evidence | Yes | Map of evidence keys → values the judge will inspect (e.g. {pr_url: '...', migration_file_path: '...'}). Keys must match required_evidence on the task and the per-verifier args.key (see cmmn-get_acceptance_criteria). | |
| output_summary | No | One-paragraph human summary of what the agent did. Stored on the task as data.result.summary for audit. Phase 4's LLM judge uses this when evaluating manual criteria. | |
| result | No | Optional structured result, passed through to the underlying complete_task as task.data.result.extra. | |
| task_id | Yes | Task ID (@rid format) |