Verification & Quality Assurance

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

Updated Feb 17, 2026
One-click install
npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill verification-quality-assurance-derbalimajd04-dot
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Verification & Quality Assurance
Source: https://github.com/derbalimajd04-dot/al-wasat/tree/main/.agents/skills/verification-quality
Command: npx skills add https://github.com/derbalimajd04-dot/al-wasat --skill verification-quality-assurance-derbalimajd04-dot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Agent-generated code and task outputs often ship without measurable quality gates, letting low-quality or insecure changes persist in the codebase. This Skill enforces a configurable truth-score threshold (default 0.95) with automated verification checks and instant rollback of failing changes. ## Core Features & Use Cases - Truth Scoring & Metrics: Track reliability scores (0.0-1.0) per file, agent, and task with trends, statistics, and table/JSON/CSV/HTML export formats. - Verification Checks: Validate code correctness, security, performance, documentation, and best practices on files, directories, or task outputs, with optional auto-fix. - Automatic Rollback: Revert failed changes via git-based, selective, or dry-run rollback modes, with automatic backups. - Use Case: In a CI/CD pipeline, run a verification check with JSON output, fail the build when the overall score drops below 0.95, and archive the verification report as a build artifact. ## Quick Start Ask the agent to run a verification check on the src directory with a 0.95 threshold and show the current truth scores in table format.

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 code verification check with a custom threshold?▼

Run npx Codex-flow@alpha verify check with the --file or --directory flag and set --threshold to your required score, such as 0.98. The command exits with code 0 when the score meets the threshold and 1 when it fails.

How do I rollback changes that failed verification?▼

Use npx Codex-flow@alpha verify rollback --last-good to revert to the last known good state. Options include --selective to roll back only failed files, --dry-run to preview, and --backup-first to create a backup before reverting.

Can verification checks integrate with GitHub Actions or GitLab CI?▼

Yes, run verify check with --json to produce structured output, then parse the overallScore field with jq and fail the pipeline when it falls below your threshold. The JSON report can be uploaded as a build artifact.

What does the truth score measure and what do the ranges mean?▼

Truth scores range from 0.0 to 1.0 and reflect code correctness, security, performance, documentation, and best practices. Scores of 0.95-1.0 are excellent, 0.85-0.94 acceptable, 0.75-0.84 need attention, and below 0.75 require immediate action.

What are the prerequisites for using the rollback and dashboard features?▼

Rollback requires a git repository since reversion is git-based, and the interactive dashboard requires Node.js 18 or later. All features require Codex Flow installed via npx Codex-flow@alpha.