AgentSkillsCN

verification-gates

当您需要执行验证步骤、设置质量门、进行预提交检查、应对测试失败、处理 lint 错误、验证构建结果,或在任务完成前开展强制性验证时,可使用此技能。

SKILL.md
--- frontmatter
name: verification-gates
description: This skill should be used when handling verification steps, quality gates, pre-commit checks, test failures, lint errors, build verification, or mandatory validation before task completion.
version: 1.0.0
owner_agent: Alphonse
consumer_agents: [Loid, Lawliet]

Verification Gates

Overview

Verification gates are mandatory quality checkpoints that must pass before any implementation work is considered complete. These gates prevent broken code from being committed, ensure type safety, maintain code style consistency, and validate that all tests pass.

Owner Agent: Alphonse (Verifier Agent)

Key Principles

  1. Non-Negotiable Quality: Every code change must pass all applicable gates
  2. Automated Enforcement: Gates are triggered automatically via hooks
  3. Clear Feedback: Failures provide actionable error messages
  4. Project-Aware: Commands adapt to detected project type and tooling
  5. Fail-Fast, Fix-First: When any gate fails, work stops until resolved

Verification Hierarchy

code
Loid (Executor)          Alphonse (Verifier)
     |                         |
Quick sanity tests       Full verification gate
during implementation    before completion
     |                         |
     +----------> Handoff >----+

Gate Types

Pre-Commit Gates

CheckExample CommandTimeout
Lintnpm run lint / ruff check30s
Formatnpm run format:check / black --check15s
Quick TestsChanged file tests only60s

Pre-Complete Gates

CheckExample CommandTimeout
Full Test Suitenpm test / pytest300s
Type Checkingnpx tsc --noEmit / mypy .120s
LintingFull codebase lint60s
Buildnpm run build / python -m build180s

Security Gates

Triggered by changes to sensitive files or security-critical code:

CheckTriggerAction
Credential Scan*.env, *secret*, *.keyBlock + Alert
Permission CheckAuth/ACL codeRequire review
Dependency AuditPackage filesnpm audit / pip-audit

Verification Commands

Quick Reference by Language

ActionNode.jsPythonGoRust
Testnpm testpytestgo test ./...cargo test
Typesnpx tsc --noEmitmypy .go buildcargo check
Lintnpm run lintruff check .golangci-lint runcargo clippy
Buildnpm run buildpython -m buildgo buildcargo build

For complete command reference, see references/verification-commands.md.


Verification Process

Alphonse Verification Steps

  1. Identify project type (Node.js, Python, Go, Rust, Java)
  2. Run test suite with appropriate framework
  3. Execute type checking if configured
  4. Run linters if present
  5. Attempt production build
  6. Report structured results

Standard Output Format

code
## Verification Results

### Tests
- Status: [PASS | FAIL]
- Output: [Summary of test execution]

### Type Check
- Status: [PASS | FAIL | SKIPPED]
- Errors: [List of type errors if any]

### Lint
- Status: [PASS | FAIL | SKIPPED]
- Warnings: [Count and summary]

### Build
- Status: [PASS | FAIL | SKIPPED]
- Issues: [Build errors if any]

### Overall: [VERIFIED | FAILED]

Failure Handling

Failure Severity

TypeSeverityAction
Test FailureBLOCKINGFix and re-run
Type ErrorBLOCKINGResolve types
Lint ErrorBLOCKINGAuto-fix or manual
Build FailureBLOCKINGFix compilation
Security AlertCRITICALImmediate remediation
TimeoutWARNINGRetry once
Flaky TestWARNINGRetry 3x, then fix

Escalation Path

code
Alphonse Reports -> Loid Reviews
     |                   |
Simple Fix?         Complex Issue?
     |                   |
    YES                  NO
     |                   |
Loid Fixes      Escalate to Lawliet
     |                   |
Re-verify       Architecture Review

For detailed failure protocols, see references/failure-handling.md.


Best Practices

DO

  • Run verification after every significant change
  • Fix failures immediately
  • Trust Alphonse's verdict
  • Add tests for new features
  • Run full suite before PR

DON'T

  • Skip verification to save time
  • Suppress type errors with any
  • Disable lint rules without justification
  • Commit with failing tests
  • Use --no-verify flag
  • Mark tasks complete without verification

Gate Selection Guide

ScenarioGate TypeChecks Run
Small code fixPre-CommitLint, format, affected tests
New feature completePre-CompleteFull suite, types, lint, build
Security-related changeSecurityCredential scan, audit, permissions
Cross-service changeIntegrationE2E, contracts, compatibility

Override Rules

Verification gates can ONLY be skipped when:

  1. User explicitly requests skip - Must be documented
  2. No code changes were made - Documentation-only tasks
  3. Task is purely exploratory - No production impact

Override Documentation Required:

code
## Verification Override

Reason: [Explicit reason for skipping]
Requested by: [User or escalation source]
Risk Assessment: [Low/Medium/High]
Compensating Controls: [What will catch issues later]

Additional Resources

Reference Files

Examples

Related Files

FilePurpose
scripts/load-project-context.shProject type detection
hooks/scripts/verify-completion.shPre-complete gate implementation
hooks/scripts/validate-changes.shSecurity validation
agents/Alphonse.mdVerifier agent definition

Related Skills

  • task-classification: Determines when verification is required
  • agent-behavior-constraints: Model routing and tool access