deploy-check
Installation
SKILL.md
Pre-Deployment Check
Walk through this checklist with the user before any production deploy. If a target is provided, scope the check to that feature or release. Present each category, confirm status, and flag anything unresolved.
Pre-Deploy Checklist
Work through each category. Mark items as pass, fail, or N/A.
Code
| Check | Details |
|---|---|
| All tests pass | Run the full test suite. No skipped tests unless documented. |
| No console.logs / debuggers | Search for console.log, console.debug, debugger statements in changed files. |
| Linting clean | lint command exits with zero errors and zero warnings. |
| PR approved | At least one approval from a reviewer who understands the changed area. |
| Changes rebased | Branch is up to date with the target branch. No merge conflicts. |