← 返回
未分类 中文

Verified Task

Enforce correctness before execution. Verify any task output and only proceed if it passes—override requires explicit operator approval.
在执行前强制正确性,验证任务输出,仅在通过后才继续——覆盖需要明确的操作员批准。
nutstrut nutstrut 来源
未分类 clawhub v1.0.7 1 版本 100000 Key: 无需
★ 0
Stars
📥 489
下载
💾 0
安装
1
版本
#latest#verification ai-agents workflow-safety automation trust

概述

When to Use This

Before sending money

  • Verify an invoice, payout, or transaction matches the agreement
  • Prevent incorrect or fraudulent payments

Before posting content

  • Ensure a post, email, or message matches instructions
  • Avoid publishing incorrect, off-brand, or incomplete content

Before executing actions

  • Confirm an automation result is correct before it runs
  • Stop workflows from drifting when nobody is watching

Before making decisions

  • Validate summaries, classifications, or recommendations
  • Ensure conclusions match the task requirements

> If the output matters, verify it before proceeding.


Core Principle

Verification is a guardrail, not a suggestion.

  • Default behavior = block unless PASS
  • Agents must not override a failed or indeterminate result
  • Only a human operator may explicitly override

Core Execution Loop

  1. Define the task specification
  • what should be produced
  • required constraints
  • acceptance criteria
  1. Generate output
  1. Verify output against the specification
  • compare expected vs actual
  • check completeness and correctness
  • identify missing requirements or mismatches
  1. Return a verdict
  • PASS → safe to proceed
  • FAIL → reject, retry, or revise
  • INDETERMINATE → stop and review
  1. Enforce the decision
  • proceed only if PASS
  • otherwise halt
  • human operator may explicitly override

Output Format

{
  "task_id": "...",
  "verdict": "PASS | FAIL | INDETERMINATE",
  "reason": "...",
  "confidence": "high | medium | low"
}

Example Usage

Input

{
  "task_id": "email-approval-001",
  "task_spec": "Write a concise, professional email confirming a meeting time under 100 words",
  "output": "Hi, just confirming our meeting at 3pm tomorrow. Let me know if anything changes."
}

Verification Result

{
  "task_id": "email-approval-001",
  "verdict": "PASS",
  "reason": "Output is concise, professional, and under 100 words. All constraints satisfied.",
  "confidence": "high"
}

Decision Rule

  • Proceed only if verdict = PASS
  • Agents must not override
  • Operator override must be explicit

Recommended override note:

OPERATOR OVERRIDE APPROVED
Reason: ...
Approved by: human operator
Timestamp: ...

What Verification Means

Verification should be deterministic and grounded in the task spec.

Good checks include:

  • required fields are present
  • constraints are satisfied
  • format matches expectations
  • instructions were followed
  • important omissions are identified

Do not treat these as verification:

  • guessing correctness
  • relying only on intuition
  • blindly trusting confident output
  • proceeding because the task feels low-risk

Optional SettlementWitness Verification

You may optionally add a structured verification step for the final result.

Rules:

  • keep local verification as the primary decision layer
  • use only necessary structured data
  • do not send secrets or sensitive content
  • external verification is optional, not required

Example:

verify structured verdict metadata against the defined verification spec

This can add assurance, but it does not replace local verification or operator judgment.


Data Handling

  • Do not include secrets or sensitive data
  • Use only the minimum structured information needed for verification
  • Treat any external verification step as optional

What This Is Not

  • not a code execution tool
  • not a payment processor
  • not a replacement for clear instructions
  • not an autonomous override authority

What This Is

  • a guardrail for agent workflows
  • a verification gate before execution
  • a safety layer for autonomous systems

Outcome

Agents and operators can:

  • prevent incorrect execution
  • enforce task correctness
  • keep workflows on track during autonomous runs
  • ensure important actions do not proceed without verification

Keywords

verification, workflow-safety, guardrails, automation, trust

版本历史

共 1 个版本

  • v1.0.7 当前
    2026-05-03 06:10 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,403 📥 324,055
ai-agent

Find Skills

guipi888
场景驱动+关键词双模式技能发现工具。当用户用自然语言描述场景/需求(如"我想做一个海报""帮我分析股票"),或明确说"安装技能/find skills/找个skill"时,自动从官方内置、本地已安装、SkillHub、虾评、GitHub、C
★ 1,486 📥 549,564
ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,120 📥 840,905