with one click
deploy-check
Run full pre-deployment validation for both frontend and backend
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run full pre-deployment validation for both frontend and backend
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Run local security checks (golangci-lint gosec, go vet) before pushing to catch issues before CI
Guided dependency upgrade workflow for Go or frontend packages with lockstep bumping and CI verification
Development discipline guardrails for Go and Angular work. Use when implementing features, fixing bugs, or writing validation code. Enforces validation-first development, research escalation after repeated failures, real data testing, and comprehensive failure reporting.
Scaffold a new PostgreSQL migration pair (up + down) with sequential numbering
Scaffold a new Angular standalone component following project conventions
| name | deploy-check |
| description | Run full pre-deployment validation for both frontend and backend |
| disable-model-invocation | true |
Run the complete validation checklist for both frontend and backend. Execute each step sequentially and stop on first failure.
npm run lintnpm test -- --watch=falsemise run lintmise run testReport results as a summary:
Deploy Check Results
────────────────────
Frontend lint: PASS / FAIL
Frontend tests: PASS / FAIL
Backend lint: PASS / FAIL
Backend tests: PASS / FAIL
────────────────────
Result: READY / NOT READY
If any step fails, show the error output and stop. Do not continue to subsequent steps after a failure.