verification-before-completion

仓库创建 2026年1月5日最近提交 1 天前SkillHot 收录 20 天前
▸ 精选理由

防止主观断言,适合自动化交付与可信验证场景。

这个 Skill 做什么

要求所有声明以日志、测试结果或退出码等证据支撑后方可完成。

要求所有结论都有证据支撑:必须附带日志、测试结果或退出码,且退出码为 0 才能算成功,不能凭感觉说“应该没问题”。在完成任何构建步骤、宣称修复或发布前都要走这套流程,保证结果可复现。它把猜测拒之门外,强制完整测试、记录退出码并使用超时保护。

▸ 展开 SKILL.md 英文原文

Evidence requirement enforcement ensuring all claims are backed by logs, test results, or exit codes. Zero = success, non-zero = failure. No guessing allowed.

Skill 开发管理证据化退出码回归验证通用
1.6k
Stars
94
Forks
40
仓库内 Skill
+111
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/a5c-ai/babysitter/main/library/methodologies/cc10x/skills/verification-before-completion/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/a5c-ai/babysitter/main/library/methodologies/cc10x/skills/verification-before-completion/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
## Rules

- Never claim "should work" without evidence
- Never claim success without exit code 0
- Never claim a bug is fixed without reproduction failure
- Always capture and report exit codes
- Always run the full test suite, not just targeted tests
- Use timeout guards (`timeout 60s`) to prevent hanging

## When to Use

- Before completing any BUILD workflow step
- Before claiming a DEBUG fix is verified
- Before approving a REVIEW result
- Before marking any task as done

## Agents Used

- `integration-verifier` (primary consumer)
- `component-builder` (TDD evidence)
- `bug-investigator` (fix evidence)
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有