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


