verify-code

Run format, lint, typecheck, tests, coverage, build, and smoke gates with auto-fixes.

1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/furrycolombia-sys/candyshop --skill verify-code-furrycolombia-sys
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify-code
Source: https://github.com/furrycolombia-sys/candyshop/tree/main/.claude/skills/verify-code
Command: npx skills add https://github.com/furrycolombia-sys/candyshop --skill verify-code-furrycolombia-sys

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps engineers ensure code quality by automatically running the full quality gate sequence (format, lint, typecheck, tests, coverage, build, and smoke) and applying inline fixes whenever possible.

Core Features & Use Cases

  • Automated Quality Gates: Runs format, lint, typecheck, tests, coverage, build, and smoke checks.
  • Inline Fixes: Attempts to fix issues automatically where safe.
  • Guided Remediation: Provides step-by-step instructions to reach a green CI.

Quick Start

Run the full quality gate sequence on your project to automatically fix failures and report results.

Frequently Asked Questions about verify-code

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

FAQPage Schema
How do I run all quality gates and auto-fix failures in a JavaScript monorepo?

To run all quality gates and auto-fix failures in a JavaScript monorepo, execute the full sequence to automatically apply safe inline fixes for formatting, linting, typecheck, tests, coverage, build, and smoke checks, guiding you to a green CI state.

What are automated quality gates in CI and how do they keep code green?

Automated quality gates are sequential checks like format, lint, typecheck, tests, coverage, build, and smoke that validate code. They keep code green by catching failures locally and applying inline fixes before changes reach continuous integration.

Do I need Prettier, ESLint, and Vitest installed to automate typecheck and lint fixes?

Yes, you need Prettier, ESLint, TypeScript, Vitest, and a standard test runner installed in your project. This tooling provides the underlying validation and auto-fix capabilities required to run the quality gate sequence.

What is the best way to auto-fix lint and typecheck errors before committing code?

The best way to auto-fix lint and typecheck errors before committing is to run an automated quality gate sequence that attempts safe inline fixes and provides step-by-step remediation for any remaining failures.

What should I do when my local quality gate tests or build checks are not passing?

When local quality gate tests or build checks are not passing, review the guided remediation steps provided after the sequence runs. The tool attempts safe inline fixes automatically, but complex logic or typecheck errors require manual correction.