Verification & Quality Assurance

Verifies code quality with truth scoring, automated checks, and git-based rollback.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/dmuhoro/EasyTutor --skill verification-quality-assurance-dmuhoro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Verification & Quality Assurance
Source: https://github.com/dmuhoro/EasyTutor/tree/main/archive/.claude/skills/verification-quality
Command: npx skills add https://github.com/dmuhoro/EasyTutor --skill verification-quality-assurance-dmuhoro

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Agent-generated code and task outputs can silently introduce defects, security issues, or regressions. This Skill enforces measurable quality gates by scoring outputs on a 0.0-1.0 truth scale, running verification checks, and automatically rolling back changes that fall below a configurable threshold (default 0.95). ## Core Features & Use Cases - Truth Scoring & Metrics: View per-agent and per-task reliability scores with trends, statistics, and exportable reports in table, JSON, CSV, or HTML formats. - Verification Checks: Validate files, directories, or task outputs against correctness, security, performance, documentation, and best-practices criteria, with optional auto-fix. - Automatic Rollback: Revert failed changes via git-based, selective, or dry-run rollback modes, with automatic backups. - CI/CD & Monitoring Integration: Emit JSON output for GitHub Actions or GitLab CI pipelines, run a real-time web dashboard, and push metrics to Prometheus or DataDog. - Use Case: A team running multi-agent code generation adds a pre-commit hook that runs a verification check; any commit scoring below 0.95 is blocked and rolled back to the last known good state. ## Quick Start Run a verification check on my current project and show me the truth scores for the last 24 hours.

Frequently Asked Questions about Verification & Quality Assurance

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

FAQPage Schema
How do I run a verification check on my code with claude-flow?

Run npx claude-flow@alpha verify check to verify the current directory, or pass --file or --directory to target specific paths. Add --threshold to set a custom pass score and --json for machine-readable output.

How do I integrate verification checks into a CI/CD pipeline?

Run the verify check with --json output in your GitHub Actions or GitLab CI job, then parse the overallScore field and fail the build if it falls below your threshold. The command exits with code 1 on failure, so pipelines can gate on the exit status directly.

What is a truth score and what threshold should I use?

A truth score is a 0.0-1.0 reliability metric for code, agents, and tasks. The default threshold is 0.95; the documentation recommends 0.99 for critical code, 0.95 for standard work, and 0.90 for experimental changes.

Does automatic rollback require git?

Yes, rollback features require a git repository. Rollback supports reverting to the last good state, a specific commit, or selective file-level reversion, with automatic backup creation before executing.

Why did my verification check fail with a low score?

Run the check with --verbose to see per-criterion breakdowns covering correctness, security, performance, documentation, and best practices. You can also inspect agent-specific scores with the truth command filtered by agent name.