Claude Code Plugins

Community-maintained marketplace

Feedback

Run build and lint verification before deployment. Use when user mentions "check build", "verify", "pre-deploy", "ready to deploy", or asks to validate the project.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name build-check
description Run build and lint verification before deployment. Use when user mentions "check build", "verify", "pre-deploy", "ready to deploy", or asks to validate the project.
allowed-tools Read, Glob, Grep, Bash

Build Check

Pre-deployment verification for the Next.js portfolio site.

Instructions

  1. Run lint check:

    npm run lint
    
  2. Run production build:

    npm run build
    
  3. If errors occur:

    • Parse error messages
    • Identify affected files
    • Suggest specific fixes
  4. Report results summary:

    • Lint warnings/errors count
    • Build success/failure
    • Bundle size if available

Default Commands

  • Lint: npm run lint
  • Build: npm run build
  • Type check: npx tsc --noEmit

Examples

  • "Check if the build passes"
  • "Verify before deploying"
  • "Run pre-deploy checks"

Guardrails

  • Do NOT modify files to fix errors without user confirmation
  • Report issues clearly with file paths and line numbers
  • If build fails, ask user before attempting fixes