๐ Secrets
git diff --cached && git status --shortReview exactly what is about to be committed. Never publish API keys, tokens, passwords, cookies, private keys, or credential files.
A small set of repeatable checks for AI-assisted changes. The goal is simple: preserve working configuration, keep secrets out of Git, catch broken routes, and verify the production build before anything reaches Cloudflare.
โ CURRENTgit diff --cached && git status --shortReview exactly what is about to be committed. Never publish API keys, tokens, passwords, cookies, private keys, or credential files.
git check-ignore -v <path>Verify local state, backups, databases, environment files, and generated artifacts are intentionally ignored where appropriate.
npm auditReview dependency findings before upgrading. Avoid blind force-upgrades that can introduce breaking changes.
npm run buildA production build must succeed before deployment. Treat warnings that affect generated routes or assets as actionable.
npm run check:linksValidate every built internal link so navigation cannot silently point at missing pages.
npm run check:siteRun the production build and internal-link validation together before merging changes.