Agent Skills
› zereight/gitlab-mcp
› verify
verify
GitHub用于在声称完成前验证变更是否真正生效。通过现有测试、类型检查、直接命令或手动步骤提供具体证据,拒绝无依据的完成声明,确保变更具备可验证性。
Trigger Scenarios
用户要求验证功能是否有效
需要证明代码变更已正常工作
Install
npx skills add zereight/gitlab-mcp --skill verify -g -y
SKILL.md
Frontmatter
{
"name": "verify",
"description": "Verify that a change really works before claiming completion. Activate when user says: verify this, check if it works, prove it works.\n",
"argument-hint": "<what to verify>"
}
Verify
Turn vague "it should work" claims into concrete evidence.
Workflow
- Identify the exact behavior that must be proven
- Prefer existing tests first
- If coverage is missing, run narrowest direct verification commands
- If direct automation not enough, describe manual validation steps
- Report only what was actually verified
Verification Order
- Existing tests
- Typecheck / build
- Narrow direct command checks
- Manual or interactive validation
Rules
- Do not say a change is complete without evidence
- If a check fails, include the failure clearly
- If no realistic verification path exists, say so explicitly
- Prefer concise evidence summaries over noisy logs
Output
- What was verified
- Which commands/tests were run
- What passed
- What failed or remains unverified
Version History
- a8f5d4f Current 2026-07-25 10:04


