quality_validator

Validates deliverables against documentation, code, and design checklists before release.

Updated Jan 14, 2026
One-click install
npx skills add https://github.com/jvsandhu/agentic-skills --skill quality-validator-jvsandhu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: quality_validator
Source: https://github.com/jvsandhu/agentic-skills/tree/main/skills/quality_validator
Command: npx skills add https://github.com/jvsandhu/agentic-skills --skill quality-validator-jvsandhu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Shipping work without a final quality gate leads to broken links, failing tests, accessibility gaps, and undocumented changes reaching users. This Skill provides a structured final validation pass so deliverables meet defined standards before release. ## Core Features & Use Cases - Validation Checklists: Covers documentation completeness, code hygiene (linting, tests, no TODOs), and design criteria (responsive, WCAG accessibility, cross-browser). - Quality Scoring: Maps results to a 0-100 score with clear actions (Ship, Minor fixes, Review needed, Major rework). - Three-Phase Workflow: Runs static analysis and dependency audits, verifies runtime quality like branch coverage and N+1 queries, and checks deliverable compliance including licenses and changelogs. - Use Case: Before merging a release candidate, run the validator to produce a structured Quality Validation Report listing pass/fail counts, open issues by severity, and recommendations. ## Quick Start Run a final quality validation on this release candidate and generate a validation report with scores and open issues.

Frequently Asked Questions about quality_validator

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

FAQPage Schema
How do I run a final quality check before shipping code?

Run the three-phase validation workflow: static analysis with linters and dependency audits, runtime checks for branch coverage above 80% and performance issues, then deliverable compliance for docs, licenses, and changelogs. Results map to a score that determines ship readiness.

What quality score is acceptable before release?

Scores of 90-100 are excellent and ready to ship, 80-89 need minor fixes, 70-79 require review, and anything below 70 needs major rework. The scoring table maps each range to a concrete action.

Does this check accessibility and responsive design?

Yes, the design checklist covers WCAG accessibility compliance, responsive behavior, consistent styling, and cross-browser testing. These items are tracked alongside documentation and code results in the validation report.

What is the difference between quality validation and code review?

Quality validation is the final pre-ship gate covering deliverables, compliance, and runtime quality across the whole release. Code review focuses on individual code changes and should happen earlier; the Skill directs code review tasks to a separate code-review skill.

How are security vulnerabilities in dependencies handled?

The static analysis phase runs npm audit or pip audit and blocks packages with known vulnerabilities at the pipeline level. It also verifies SAST scan results are clean before the deliverable passes.