kpi-verification-pass-rate

Measure first-pass verification rates for automated code verification pipelines.

1|Updated Dec 15, 2025
One-click install
npx skills add https://github.com/Anveio/conveaux --skill kpi-verification-pass-rate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kpi-verification-pass-rate
Source: https://github.com/Anveio/conveaux/tree/main/.claude/skills/kpi-verification-pass-rate
Command: npx skills add https://github.com/Anveio/conveaux --skill kpi-verification-pass-rate

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

KPI for measuring how often ./verify.sh passes on the first attempt, reducing wasted verification cycles.

Core Features & Use Cases

  • Primary Metric: First-Pass Success Rate
  • Measurement: Track whether the first run passes and the stage it passed (format, lint, type, test, build)
  • Improvement Strategies: Pre-flight checks, incremental testing, IDE integration, dependency validation, learning from failures

Quick Start

Before each verify run:

  • npm run lint:check
  • npm run typecheck Then run:
  • ./verify.sh --ui=false

Frequently Asked Questions about kpi-verification-pass-rate

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

FAQPage Schema
How do I measure first-pass verification success rate in my CI pipeline?

First-pass verification success rate measures how often your verify.sh passes on the initial run without failures. Track each attempt's stage outcome—format, lint, type, test, or build—and log whether it passed or failed to identify bottlenecks and improvement opportunities in your verification workflow.

What's the best way to improve verify.sh pass rates on first attempt?

Run pre-flight checks before verify.sh: execute npm run lint:check and npm run typecheck first. This catches common issues early, reducing failures in the full verification pipeline and raising your first-pass success rate by addressing linting and type errors before the complete build runs.

Can I track first-pass verification KPIs across manual and automated QA processes?

Yes. This KPI supports both manual and automated collection of verification outcomes. Log stage-level results and root-cause data from each first attempt in CI/CD pipelines, pre-flight checks, and manual QA workflows to enforce defined target benchmarks across your entire verification process.

Why does my verify.sh fail on first run and how do I fix it?

First-run failures typically occur in format, lint, type, test, or build stages due to uncaught code issues. Integrate IDE checks, validate dependencies before verification, and analyze root-cause logs from failed attempts to identify recurring problems and prevent repeat failures in subsequent runs.

Does first-pass verification tracking work with existing CI metrics and benchmarks?

Yes. This KPI integrates with CI metrics to enforce defined target benchmarks for first-pass success. Configure stage-level outcome tracking and root-cause logging in your CI/CD system to monitor pass rates against your performance targets and identify trends over time.