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


