verification-loop

Run build, type, lint, and security checks before pull request submission.

Updated Jul 8, 2026
One-click install
npx skills add https://github.com/ZESCODE/Zes-Orchestration-System --skill verification-loop-zescode
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verification-loop
Source: https://github.com/ZESCODE/Zes-Orchestration-System/tree/main/.agents/skills/verification-loop
Command: npx skills add https://github.com/ZESCODE/Zes-Orchestration-System --skill verification-loop-zescode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill addresses the lack of standardized quality assurance in AI-driven coding sessions by providing a structured, multi-phase verification process that prevents broken code from reaching production.

Core Features & Use Cases

  • Multi-Phase Validation: Executes build, type, lint, and test checks in a logical sequence to ensure code stability.
  • Security Guardrails: Scans for exposed secrets and debug statements to prevent accidental credential leaks.
  • Use Case: Use this skill after refactoring a complex module to ensure that the build still passes, type safety is maintained, and no sensitive API keys were accidentally committed to the codebase.

Quick Start

Invoke the verification loop skill to perform a full quality audit on the current project directory.

Frequently Asked Questions about verification-loop

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

FAQPage Schema
How do I automate code integrity checks before a pull request submission?

Automating code integrity checks requires a multi-stage verification pipeline that executes build verification, type checking, linting, and security scanning to prevent broken code from reaching production.

What does a multi-phase quality assurance pipeline do for code stability?

A multi-phase quality assurance pipeline ensures code stability by executing build, type, lint, and test checks in a logical sequence, while also scanning for exposed secrets to prevent accidental credential leaks.

Do I need specific development tools installed to run automated linting and type checking?

Yes, running automated linting and type checking requires standard development tools like npm, pnpm, tsc, pyright, and ruff to be available in your local environment before invoking the verification process.

Can I scan for exposed secrets and debug statements during CI-CD workflows?

Yes, you can scan for exposed secrets and debug statements during CI-CD workflows by applying security guardrails that check for sensitive API keys and prevent accidental credential leaks before codebase integration.

What is the best way to verify a build passes after refactoring a complex module?

The best way to verify a build passes after refactoring a complex module is to invoke a full quality audit that checks build stability, maintains type safety, and detects any accidentally committed sensitive API keys.

Why does code quality verification fail when required standard development tools are missing?

Code quality verification fails when required standard development tools like npm, pnpm, tsc, pyright, and ruff are missing because the quality assurance pipeline cannot execute its build, type, and lint checks without them.