run_verify
Assess an artifact against criteria using an LLM judge, returning pass, degraded pass, or fail based on threshold and degrade band, and optionally write the quality score back to the task.
Instructions
质量门禁:LLM-as-judge 对产物按 criteria 打分(0-100)。低于 threshold(默认80) 判不通过;但在带宽 degrade_band(默认10) 内(score∈[th-band,th)) 判降级放行(pass + degraded 标记 + verify_degraded 留痕)。打分写回任务 quality_score。默认 evaluator=qwen,可换 claude。可作任务下游 gate。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | No | 可选:打分后写回该任务 quality_score | |
| artifact | Yes | 要评审的产物文本/路径/内容 | |
| criteria | Yes | 打分验收标准 | |
| evaluator | No | 评审 agent 名,默认 qwen(可 claude) | |
| threshold | No | 通过阈值,默认80 | |
| degrade_band | No | 降级验收带宽,默认10:score 落 [th-band, th) 判降级放行而非硬失败 |