deploy-check
Installation
SKILL.md
Run a pre-flight check before pushing to production. Works with any stack.
Steps
1. Check what's being pushed
git status
git diff origin/main...HEAD --stat
git log origin/main..HEAD --oneline
Show the user: "X commits, Y files about to go live." List the commit messages so they can see at a glance what's shipping.
2. TypeScript check (if applicable)
Look for tsconfig.json in the repo. If found:
npx tsc --noEmit
Run from the directory that contains tsconfig.json (could be root or a frontend/ subfolder — check first).