code-verification

Run seven-category code verification on React/JS/TS projects and output PASS/FAIL/WARN reports.

264|11|Updated Apr 25, 2026
One-click install
npx skills add https://github.com/rkz91/coco --skill code-verification-rkz91
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-verification
Source: https://github.com/rkz91/coco/tree/main/skills/code-verification
Command: npx skills add https://github.com/rkz91/coco --skill code-verification-rkz91

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Post-implementation verification system that catches AI-introduced bugs. Covers 7 categories — TDZ errors, import mismatches, reference integrity, dead code, React state/effects, mock isolation, and CSS integrity. Run after every code change, after writing tests, or before marking a task complete. Triggers on "verify", "check code quality", "run verification", "audit code", "quality gate", "pre-commit check".

Core Features & Use Cases

  • Enforces a seven-category correctness checklist after code changes.
  • Serves as a gating mechanism before completion or deployment.
  • Use case: verify that new logic does not introduce TDZ, import mismatches, or dead code.

Quick Start

Run the 7-category verification on changed files to generate a PASS/FAIL report.

Frequently Asked Questions about code-verification

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

FAQPage Schema
How do I catch AI-introduced bugs in React and TypeScript code after implementation?

To catch AI-introduced bugs in React and TypeScript code, apply a post-implementation verification checklist covering TDZ, import mismatches, and React state effects. This generates a PASS/FAIL/WARN report with guidance before task completion.

What is static analysis for dead code and reference integrity in JS projects?

Static analysis for dead code and reference integrity scans JavaScript projects to identify unused variables and broken references. It serves as a quality gate to ensure correctness after code changes and before deployment.

How do I run a pre-commit quality gate check for React state and CSS integrity?

Run a pre-commit quality gate check by applying a seven-category verification checklist to changed files. This validates React state, effects, and CSS integrity, outputting a PASS/FAIL report with actionable guidance.

Does this code verification tool work with TypeScript and React projects?

Yes, this code verification tool works directly with TypeScript and React projects. It targets TDZ errors, mock isolation, and React state effects to ensure correctness in JS and TS codebases after modifications.

What's the best way to automate post-implementation code quality checks in CI/CD?

Automate post-implementation code quality checks by triggering verification on changed files within your CI/CD pipeline. This enforces a seven-category correctness checklist to catch AI-introduced bugs before task completion.

Why does my TypeScript code fail after AI changes with import mismatches and TDZ errors?

TypeScript code fails after AI changes due to import mismatches and TDZ errors introduced during generation. Running a post-implementation verification audit detects these reference integrity issues and outputs a FAIL report with guidance.