verify

Run linting, formatting, type validation, and build checks via pnpm and git diff.

4|Updated Aug 1, 2020
One-click install
npx skills add https://github.com/thinceller/thinceller.net --skill verify-thinceller
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/thinceller/thinceller.net/tree/main/.claude/skills/verify
Command: npx skills add https://github.com/thinceller/thinceller.net --skill verify-thinceller

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you quickly confirm that a codebase is in a healthy state after changes by running the main quality checks together instead of one by one.

Core Features & Use Cases

  • Quality Gate Automation: Runs linting, formatting, type checking, and build verification in a consistent sequence.
  • Post-Change Validation: Useful after implementing code updates, before reviews, or when confirming a release candidate.
  • Blog Post Awareness: Detects changes to _posts/*.mdx files and adds the post-specific lint step when needed.

Quick Start

Use the verify skill to run the repository’s standard quality checks and include any blog post linting if post files changed.

Frequently Asked Questions about verify

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

FAQPage Schema
How do I run lint, format, typecheck, and build checks in one pass?

You can run lint, format, typecheck, and build checks in one pass by executing a single workflow that coordinates sequential pnpm commands. This skill automates these quality gates to validate your codebase in a consistent sequence.

What is the best way to automate quality assurance checks after code changes?

The best way to automate quality assurance checks is to run a single workflow that executes linting, formatting, type checking, and build verification sequentially. This skill inspects git diff to apply routine post-change validation automatically.

Do I need pnpm to run project quality checks with this workflow?

Yes, you need pnpm to run these project quality checks. The workflow requires pnpm commands to coordinate sequential validation steps for formatting, linting, type checking, and build verification.

Can I lint markdown blog posts automatically when they change?

Yes, you can lint markdown blog posts automatically when they change. The workflow detects changes to `_posts/*.mdx` files via git diff and conditionally adds a post-specific lint step to the validation sequence.

When should I run a full codebase build verification and type validation?

You should run a full codebase build verification and type validation after implementing code updates, before reviews, or when confirming a release candidate. This routine post-change validation ensures your codebase remains in a healthy state.