mcpbeat Sign in

Verification Gates Agent Skill

Creates explicit validation checkpoints (verification gates) between project phases to catch errors early and ensure quality before proceeding. Use when the user asks about quality gates, milestone checks, phase transitions, approval steps, go/no-go decision points, or preventing cascading errors across a multi-step workflow. Produces acceptance criteria checklists, automated CI gate configurations, manual sign-off requirements, and conditional review rules for scenarios such as security changes, API changes, or database migrations.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1416
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/rohitg00/skillkit --skill verification-gates

The instruction itself

19 sections, as written by the author

Verification Gates

You are implementing verification gates - explicit checkpoints where work is validated before proceeding. This prevents cascading errors and ensures quality at each phase.

Core Principle

Never proceed to the next phase with unverified assumptions from the previous phase.

A verification gate is a deliberate pause to confirm that prerequisites are met before continuing.

Standard Verification Gates

Gate 1: Requirements Verification

Before starting design:

  • [ ] All requirements are documented and clear
  • [ ] Ambiguities have been resolved with stakeholders
  • [ ] Non-requirements are explicitly stated
  • [ ] Acceptance criteria are defined
  • [ ] Edge cases are identified

Actions:

  • Review requirements document
  • Identify any unclear items
  • Get explicit confirmation on ambiguous points
  • Document answers

Gate 2: Design Verification

Before starting implementation:

  • [ ] Design addresses all requirements
  • [ ] Technical approach is validated
  • [ ] Interfaces are defined
  • [ ] Data model is complete
  • [ ] Error handling is planned
  • [ ] Design has been reviewed (self or peer)

Actions:

  • Walk through design against requirements
  • Review with rubber duck or teammate
  • Check for missing pieces
  • Get approval to proceed

Gate 3: Implementation Verification

Before calling task complete:

  • [ ] Code compiles/runs without errors
  • [ ] All tests pass
  • [ ] New code has test coverage
  • [ ] Code follows project conventions
  • [ ] No obvious bugs or issues
  • [ ] Dependencies are appropriate

Actions:

  • Run full test suite
  • Self-review the diff
  • Check for code smells
  • Verify against acceptance criteria

Gate 4: Integration Verification

Before merging:

  • [ ] Feature works end-to-end
  • [ ] Integration tests pass
  • [ ] No regression in existing functionality
  • [ ] Performance is acceptable
  • [ ] Documentation is updated

Actions:

  • Test the full user flow
  • Run integration test suite
  • Compare performance metrics
  • Review documentation changes

Gate 5: Deployment Verification

Before marking complete:

  • [ ] Feature works in target environment
  • [ ] Monitoring shows no errors
  • [ ] Feature flags are properly configured
  • [ ] Rollback plan exists
  • [ ] Stakeholders can verify

Actions:

  • Smoke test in environment
  • Check error logs and metrics
  • Get stakeholder sign-off
  • Document deployment

Gate Types

Automated Gates

Gates that can be enforced automatically:

# CI Pipeline Gates
gates:
  - name: lint
    command: npm run lint
    required: true

  - name: type-check
    command: npm run typecheck
    required: true

  - name: unit-tests
    command: npm test
    required: true
    coverage: 80%

  - name: build
    command: npm run build
    required: true

Manual Gates

Gates requiring human judgment:

## Manual Verification Checklist

Before Code Review:
- [ ] I've tested my changes locally
- [ ] I've written/updated tests
- [ ] I've read my own diff
- [ ] I've checked for security issues
- [ ] I've updated documentation

Before Deployment:
- [ ] Code review approved
- [ ] QA verified (if applicable)
- [ ] Stakeholder approved (if required)
- [ ] Deployment plan reviewed

Conditional Gates

Gates that apply in specific situations:

| Condition | Required Gates |

|-----------|---------------|

| Security-related | Security review |

| Public API change | API review + migration plan |

| Database change | DBA review + backup plan |

| Performance-sensitive | Performance test |

| Breaking change | Deprecation notice + migration |

Implementing Gates

In Your Workflow

Task Start
    │
    ▼
┌─────────────────┐
│ Gate: Prereqs   │ ← Verify before starting
│ - Requirements  │
│ - Dependencies  │
└────────┬────────┘
         │
         ▼
    Do the work
         │
         ▼
┌─────────────────┐
│ Gate: Completion│ ← Verify before proceeding
│ - Tests pass    │
│ - Code reviewed │
└────────┬────────┘
         │
         ▼
Task Complete

Gate Documentation Template

## Gate: [Name]

**When:** [Before what action]

**Purpose:** [What this gate ensures]

**Checklist:**
- [ ] Item 1
- [ ] Item 2
- [ ] Item 3

**Verification Method:**
- [How to verify each item]

**Failure Actions:**
- [What to do if gate fails]

**Approver:** [Who can approve passage]

Gate Metrics

Good gates have high effectiveness (catch most issues), low overhead (quick to pass), and high value (prevent expensive downstream fixes). Track which gate caught an issue and how much time was spent at each gate to tune your process over time.

Integration with CI/CD

# GitHub Actions example
jobs:
  gate-lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - run: npm ci
      - run: npm run lint

  gate-test:
    needs: gate-lint
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - run: npm ci
      - run: npm test

  gate-build:
    needs: gate-test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - run: npm ci
      - run: npm run build

  deploy:
    needs: gate-build
    # Only deploys if all gates pass

Quick Reference

| Phase | Gate Before | Key Checks |

|-------|-------------|------------|

| Design | Requirements | Clear, complete, approved |

| Implementation | Design | Reviewed, feasible |

| Review | Implementation | Tests, conventions, working |

| Merge | Review | Approved, conflicts resolved |

| Deploy | Merge | Environment ready, plan exists |

Integration with Other Skills

  • design-first: Gates validate design before implementation
  • task-decomposition: Gates between task phases
  • testing/red-green-refactor: Tests are key gate criteria
  • collaboration/structured-review: Review is a gate

Other skills for the same job

different authors, same section of the catalogue
Database Architect
by ComeOnOliver
×1

Expert database architect specializing in data layer design from scratch, technology selection, schema modeling, and scalable database architectures. Masters SQL/NoSQL/TimeSeries database selection, normalization strategies, migration planning, and performance-first design. Handles both greenfield architectures and re-architecture of existing systems. Use PROACTIVELY for database architecture, technology selection, or data modeling decisions.

7k tokens
Gke Backup Dr
by google
vendor

>- Configures GKE Backup Plans and restore workflows. Use for backup policies, disaster recovery, or GKE cluster restores. Don't use for database backups.

763 tokens
Cloudbase All In One
by TencentCloudBase

Unified CloudBase execution guide for all-in-one skill installs. Use this first for CloudBase app tasks, especially existing apps with TODOs, fixed pages, or active handlers. Routes PostgreSQL / CloudBase PG / app.rdb() / queryPgDatabase / managePgDatabase work away from legacy NoSQL and old auth patterns.

257k tokens
Swiftdata
by dpearson2699

Implement, review, or improve data persistence using SwiftData. Use when defining @Model classes with @Attribute, @Relationship, @Transient, #Unique, or #Index; when querying with @Query, #Predicate, FetchDescriptor, or SortDescriptor; when configuring ModelContainer and ModelContext for SwiftUI or background work with @ModelActor; when planning schema migrations with VersionedSchema and SchemaMigrationPlan; when setting up CloudKit sync with ModelConfiguration; or when coexisting with or migrating from Core Data.

20k tokens
Backup And Disaster Recovery
by rampstackco

Plan and run backups, set recovery objectives, and run disaster recovery drills. Use this skill when defining RPO/RTO targets, designing backup architecture, deciding what to back up and how often, planning for full-region or platform outages, or running a restoration drill. Triggers on backup, restore, RPO, RTO, disaster recovery, DR, business continuity, what if the database is gone, what if our hosting goes down, recovery drill, ransomware planning. Also triggers when an incident reveals a gap in restoration capability.

4k tokens
Database Architect
by Dokhacgiakhoa

Expert database architect specializing in data layer design from scratch, technology selection, schema modeling, and scalable database architectures. Masters SQL/NoSQL/TimeSeries database selection, normalization strategies, migration planning, and performance-first design. Handles both greenfield architectures and re-architecture of existing systems. Use PROACTIVELY for database architecture, technology selection, or data modeling decisions.

5k tokens
Senior Architect
by borghei

> System architecture design and review. Use when designing architecture, evaluating microservices vs monolith, writing ADRs, choosing a database, planning for scalability, reviewing system design, or generating architecture diagrams.

34k tokens scripts
Nutritional Specialist
by ailabs-393

This skill should be used whenever users ask food-related questions, meal suggestions, nutrition advice, recipe recommendations, or dietary planning. On first use, the skill collects comprehensive user preferences (allergies, dietary restrictions, goals, likes/dislikes) and stores them in a persistent database. All subsequent food-related responses are personalized based on these stored preferences.

4k tokens scripts

How to use it

Copy the folder

Take rohitg00/verification-gates from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.