| name | review-deploy-tooling |
| description | Review changes to CI, wrangler config, build scripts, Cloudflare deploy, or tooling. Use when a PR touches .github/workflows/ci.yml, wrangler.toml, scripts/build.mjs, scripts/deploy-cloudflare.mjs, or package.json scripts. |
Review Deploy and Tooling Changes
Use this skill when reviewing or authoring changes to .github/workflows/ci.yml, wrangler.toml, scripts/build.mjs, scripts/deploy-cloudflare.mjs, package.json scripts, or any CI/deploy setup.
Why this exists
~16% of fix commits (125 sampled) are deploy/tooling: CI config, wrangler, build scripts, and deploy pipeline — the #3 category. This skill prevents those regressions.
Pre-merge checklist
1. Build must succeed
2. CI workflow integrity
3. Package scripts stay intact
4. Deploy path verified
What to reject in review
- Direct edits to CI workflow that skip lint/test/build steps
- Removal of
wrangler.toml without replacement
- Hardcoded API tokens or secrets in any file
package.json script changes that break bun run check
Related skills