Files
myWiki/concepts/verification-before-delivery.md
2026-07-20 14:14:55 +08:00

1.2 KiB
Raw Blame History

title, created, updated, type, tags, sources
title created updated type tags sources
交付前验证 (Verification Before Delivery) 2026-07-13 2026-07-13 concept
agent
verification
quality
prompt-engineering
https://developers.openai.com/api/docs/guides/prompt-guidance-gpt-5p6
openai-gpt5p6-prompt-guide-2026

交付前验证

定义

GPT-5.6 Prompt 指南反复强调的核心原则:模型生成了结果,不代表任务已经完成。 Agent 必须在交付前验证其产出。

验证清单

代码任务

  • 运行测试unit / integration
  • 类型检查
  • Lint
  • 构建检查
  • 最小冒烟测试

前端 / 视觉任务

  • 查看实际渲染结果
  • 检查布局、裁切、间距
  • 确认内容完整性

无法验证时

  • 说明原因(为什么当前环境无法验证)
  • 给出下一步检查方法(用户应该怎么做)
  • 不要把结果表述为"已经完成"

与脚手架验证的关系

交付前验证是 verification-governance 在 Prompt 层面的轻量实现——将验证责任编入 Agent 的行为指令,而非仅在运行时层面执行。

参考