skills/deploy/SKILL.md
Run deployment workflows for web applications (staging, production). Use when user says 'deploy', 'push to staging', 'release', 'ship it', or 'go live'.
npx skillsauth add shipshitdev/library deployInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Inputs:
Outputs:
Creates/Modifies:
release-pr-gatesExternal Side Effects:
Confirmation Required:
Delegates To:
deployment-composer for route discovery across providersrelease-pr-gates for branch promotion PRsgh-fix-ci for failed GitHub Actions checksec2-backend-deployer for EC2/Docker deployment setupAlways run format, lint, and type-check locally before every release PR or deployment. These mirror the expected GitHub Actions gates and are cheap enough to run before pushing.
Use the repository's package manager and scripts when present. Prefer existing
scripts in package.json; fall back only when a script is missing.
# 1. Format - required
bun run format || npm run format || npx biome check --write .
# 2. Lint - required
bun run lint || npm run lint || bunx turbo lint
# 3. Type-check - required
bun run typecheck || bun run type-check || npm run typecheck || npm run type-check || npx tsc --noEmit
# 4. Tests - run when configured
npm test || bun run test --filter=[changed-package]
# 5. Build - run when configured
npm run build
If format, lint, or type-check fails, fix it before pushing, opening a release PR, or triggering deployment. Do not hand known local quality failures to GitHub Actions.
hotfix/xxx off the trunk (default branch)If deployment fails, revert the merge commit and re-deploy.
See references/workflow.md for platform-specific deployment details, AWS patterns, CI/CD integration, and rollback procedures.
development
Coordinates a weekly engineering review of board accuracy, recent code changes, operational health, and scoped cleanup. Use for a recurring repository health review or a review of the last several days.
testing
Audits project board configuration and prepares explicitly requested setup, copy, or normalization changes while preserving the existing workflow and provider boundaries. Use when inspecting a board's fields, columns, scope, or configuration.
testing
Reconciles a project board with current work and delivery evidence, reports incomplete coverage and metadata gaps, and applies only approved provider-supported field changes. Use when auditing board drift, reviewing blocked work, or assessing upcoming delivery.
development
Walk through how a subsystem works. Use for "how does X work", code walkthroughs before changing something, and placement or ownership questions. Explains architecture, runtime flow, and onboarding mental models. Can critique architecture. Use why for motivation.