Back to list
amo-tech-ai

dev-checker

by amo-tech-ai

0🍴 0📅 Oct 30, 2025

SKILL.md


name: dev-checker description: Runs pre-commit checks and validates code quality. Use when preparing commits, running pre-deploy checks, or validating code before deployment. version: 1.0.0

Dev Checker Skill

Purpose

Quick validation before commits/deploys. Run these checks automatically.

Quick Commands

1. Type Check

pnpm tsc --noEmit

✅ Must pass with 0 errors

2. Build Check

pnpm build

✅ Should complete in < 5 seconds

3. Lint Check

pnpm lint

✅ Fix any warnings

Pre-Commit Checklist

Before committing:
[ ] pnpm tsc --noEmit (0 errors)
[ ] No console.log in code
[ ] No API keys in files
[ ] .env not staged (git status)

Pre-Deploy Checklist

Before deploying:
[ ] All tests pass
[ ] Build succeeds
[ ] Edge Functions deployed
[ ] Environment vars set
[ ] Database migrations applied

Common Issues

TypeScript Errors

# Find all TS errors
pnpm tsc --noEmit | grep "error TS"

# Common fixes:
# - Add missing imports
# - Fix type definitions
# - Update function signatures

Build Failures

# Clear cache and rebuild
rm -rf node_modules/.vite
pnpm build

Usage

Just ask: "Run dev checks" or "Check if ready to commit"

I'll automatically run through the checklist and report results.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon