Verification Suite Prompt

Last updated on Feb 17, 2026

A prompt that runs your full code verification pipeline in one shot: formatting (pnpm format), linting (pnpm lint), type checking (pnpm typecheck), and tests (pnpm test). If everything passes, you get a single “All checks pass” confirmation. If anything fails, you get only the specific errors that need fixing — no noise.

Use this as a pre-commit check, before opening a PR, or whenever you want a quick confidence pass on your codebase. Works best with Claude Code or any AI agent that has terminal access to run the commands.

Prompt

Run the full verification suite:

pnpm format && pnpm lint && pnpm typecheck && pnpm test

Report results concisely:

- If all pass: "All checks pass"
- If failures: List specific errors that need fixing

Subscribe for the latest prompts

Get the latest prompts delivered to your inbox