verify

Run typecheck, lint, test, and build scripts in sequence.

125|35|Updated Jan 21, 2026
One-click install
npx skills add https://github.com/jh941213/my-claude-code-asset --skill verify-jh941213
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/jh941213/my-claude-code-asset/tree/main/skills/verify
Command: npx skills add https://github.com/jh941213/my-claude-code-asset --skill verify-jh941213

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

After completing a coding task, this skill verifies code quality by running type checks, linting, tests, and builds to ensure stability.

Core Features & Use Cases

  • Type checking to catch type errors early.
  • Linting to enforce code style and quality.
  • Running tests to validate behavior and prevent regressions.
  • Building the project to verify packaging and deploy readiness.
  • Use Case: integrate after a feature task to quickly confirm all checks pass before review.

Quick Start

Run the verify process in your project root to perform typecheck, lint, test, and build. For example: npm run typecheck; npm run lint; npm test; npm run build

Frequently Asked Questions about verify

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

FAQPage Schema
How do I automate code validation for type checking, linting, tests, and builds?

Automate code validation by running predefined npm or yarn scripts in a deterministic sequence to execute typecheck, lint, test, and build commands. This ensures post-task code stability by verifying modules and packages before review.

What is the best way to run npm scripts for CI-like workflows locally?

Run npm scripts for CI-like workflows locally by executing predefined commands in a deterministic sequence. This validates modules, packages, and project behavior to confirm deploy readiness and prevent regressions.

Does automated post-task verification work with yarn scripts?

Yes, automated post-task verification works with yarn scripts. It supports software projects using npm or yarn to run type checks, linting, tests, and builds, applying validation across modules and packages.

How do I catch type errors early before submitting code for review?

Catch type errors early by running a typecheck script as part of an automated post-task validation sequence. This performs type checking alongside linting, tests, and builds to ensure code quality and stability.

What npm scripts do I need to set up for automated typecheck, lint, test, and build validation?

You need predefined npm scripts named typecheck, lint, test, and build. The automated validation runs these script commands in a deterministic sequence to verify code quality, behavior, and packaging.