Agent Skills
› terrense/LilBot-agent
› verify
verify
GitHub用于在执行前验证实现工作是否正确。根据用户描述或参数生成状态(通过/失败/部分)、证据、风险和下一步建议,强调具体验证而非口头保证。
触发场景
需要验证代码或功能实现正确性时
提交完成报告前的最终检查请求
安装
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.
版本历史
- ac8228e 当前 2026-07-05 10:50


