verify

Run linting, testing, and type checking before code commit.

1|Updated Jun 4, 2026
One-click install
npx skills add https://github.com/TarasTsavolyk/claude-code-frontend --skill verify-tarastsavolyk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/TarasTsavolyk/claude-code-frontend/tree/main/.claude/skills/verify
Command: npx skills add https://github.com/TarasTsavolyk/claude-code-frontend --skill verify-tarastsavolyk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ensures that changes in code meet their intended goals and pass all necessary checks before they are committed.

Core Features & Use Cases

  • Quality Gate: Runs a series of lint, test, typecheck, and rules sanity checks to verify code quality.
  • Task Confirmation: Validates that the change achieves the desired outcome.
  • Quick Feedback: Provides immediate feedback on whether the change should be committed.

Quick Start

Run /verify to confirm the quality of your code changes.

Frequently Asked Questions about verify

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

FAQPage Schema
How do I run code quality checks before committing changes?

To run code quality checks before committing changes, execute the /verify command. It confirms code quality by running linting, testing, and type checking to ensure your changes meet intended goals and pass all necessary conventions.

What is the best way to automate linting and testing before a git commit?

The best way to automate linting and testing before a git commit is using a quality gate process. This approach validates code changes against defined conventions and provides immediate feedback on whether the change should be committed.

Do I need specific linting and testing tools installed to verify code quality?

Yes, you need specific linting, testing, and type checking tools installed in your environment to verify code quality. The verification process requires these external tools to execute checks and validate that your code meets defined conventions.

Can I use this verification process in continuous integration workflows?

Yes, you can use this verification process in continuous integration workflows and code review processes. It executes necessary checks like linting and type checking to confirm code changes achieve their desired outcomes before integration.

Why does my code fail verification checks even when tests pass?

Code may fail verification checks even when tests pass because the process also runs linting, type checking, and rules sanity checks. Failing any of these defined convention checks or task confirmation validations will prevent a successful verification.