verify
GitHub用于在执行前验证实现工作的正确性。根据用户描述或参数,通过代码检查和文件审查生成包含状态、证据、风险和下一步行动的紧凑结论,优先确保实质验证而非口头保证。
Trigger Scenarios
Install
npx skills add terrense/LilBot-agent --skill verify -g -y
SKILL.md
Frontmatter
{
"name": "verify",
"agent": "verifier",
"context": "fork",
"description": "Verify that implementation work is correct before reporting done.",
"when_to_use": "Use after non-trivial implementation, backend\/API changes, infrastructure changes, or before claiming completion.",
"allowed-tools": "read_file, list_dir, grep_files, git_status, git_diff, run_tests, agent_open, agent_eval"
}
Verify the work described by the user or by these arguments:
{{args}}
Produce a compact verdict:
STATUS: PASS, FAIL, or PARTIAL. EVIDENCE: commands run, files inspected, and exact outcomes. RISKS: unresolved edge cases or missing coverage. NEXT: smallest next action if not PASS.
Prefer concrete validation over reassurance. If tests cannot be run, explain why and substitute targeted code inspection with file references.
Version History
- ac8228e Current 2026-07-05 10:50


