From vibe-check-mate
pnpm + husky 기반으로 biome lint와 TypeScript typecheck를 커밋 전에 강제하고, 실패 시 최신 정적 분석 오류 상태를 .check-static/에 기록하는 pre-commit hook을 설정한다.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vibe-check-mate:create-pre-commit-hookThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
커밋 전에 pnpm run check를 자동 실행해 lint 및 typecheck 실패 시 커밋을 차단한다.
커밋 전에 pnpm run check를 자동 실행해 lint 및 typecheck 실패 시 커밋을 차단한다. 실패 시 최신 정적 분석 오류 상태를 .check-static/에 기록하여 후속 static-auto-fix 스킬이 참조할 수 있도록 한다.
pnpm add -D husky pnpm dlx husky init
scripts: lint: biome check . lint:fix: biome check . --apply typecheck: tsc --noEmit check: bash ./scripts/run-static-check-with-logs.sh
chmod +x scripts/run-static-check-with-logs.sh chmod +x .husky/pre-commit
#!/bin/sh pnpm run check || exit 1
실패 시: .check-static/ lint.log typecheck.log error-files.txt
성공 시: .check-static 없음
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub letyuchan/vibe-check-mate --plugin vibe-check-mate