verify

Execute build, type checks, lint, tests, and security checks for code changes.

Updated Feb 2, 2026
One-click install
npx skills add https://github.com/k3sdtw/.claude --skill verify-k3sdtw
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/k3sdtw/.claude/tree/main/skills/verification-loop
Command: npx skills add https://github.com/k3sdtw/.claude --skill verify-k3sdtw

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a structured verification workflow that runs build, type checks, linting, tests, and security checks before submitting a PR, reducing regressions and manual review time.

Core Features & Use Cases

  • Build verification: ensures project compiles successfully across environments.
  • Type checking and linting: enforces typings, style, and code consistency.
  • Test execution and coverage: runs unit/integration tests and reports results.
  • Security and schema checks: scans for secrets, insecure patterns, and potential schema changes.
  • Diff review assistance: summarizes changes and highlights risky edits prior to PR.
  • Use Case: before creating a PR after implementing a feature, run the full verification to ensure there are no obvious failures.

Quick Start

Use the verification-loop skill to run the full verification against your current workspace: npm run build && npm run lint && npm test

Frequently Asked Questions about verify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run build, lint, and test checks before submitting a PR?

Pre-PR verification automates build, type checks, linting, tests, and security scans to catch issues before submission. Run the full verification workflow against your workspace to ensure all quality gates pass and reduce regressions during review.

What checks does code verification include?

Code verification encompasses build compilation, type checking, linting for style consistency, unit and integration test execution with coverage reporting, and security scanning for secrets and insecure patterns across your codebase.

Can I run verification across a multi-package repository?

Yes, verification orchestrates deterministic tooling across multi-package repositories, executing build, type checks, lint, tests, and security checks uniformly to ensure all packages meet quality gates before PR submission.

How does verification help catch schema or dependency changes?

The verification workflow includes security and schema checks that scan for potential schema changes and insecure patterns, flagging risky edits in your diff before PR to prevent unintended breaking changes.

What output does the verification report provide?

Verification produces a comprehensive report summarizing build status, type check results, lint violations, test coverage, and security findings, plus a diff review highlighting changes to help assess PR readiness.

Do I need specific tools configured to use verification?

Verification works with standard build systems, linters, and test frameworks already in your project. It orchestrates existing tooling like npm scripts; no additional setup is required beyond your current development environment.