Agent Skills
› Hmbown/Codewhale
› verify
verify
GitHub通过实际操作真实应用、API或CLI并收集可观测证据(如输出、日志、截图)来验证系统功能,强调端到端验证而非仅依赖单元测试。
Trigger Scenarios
用户需要证明真实接口或命令行工具正常工作
要求提供端到端运行的可观测证据
Install
npx skills add Hmbown/Codewhale --skill verify -g -y
SKILL.md
Frontmatter
{
"name": "verify",
"invocation": "model+user",
"aliases-for": "check-work",
"description": "Exercise the real app\/API\/CLI and collect observable evidence; tests alone do not count as end-to-end verification."
}
Verify
When to use
Use when the user wants proof the real surface works, not only unit tests.
Non-goals
- Unit tests alone are not end-to-end verification.
- Do not fake success without observable evidence.
Workflow
- Identify the real entrypoint (CLI binary, API, UI).
- Exercise it with realistic inputs.
- Capture outputs, exit codes, logs, or screenshots.
- Report evidence and remaining uncertainty.
Version History
- 0fe366b Current 2026-08-16 09:04
- b0e4926 2026-07-24 17:43


