bundles/dev-workflow/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
TypeScript refactoring and modernization guidelines from a principal specialist perspective. This skill should be used when refactoring, reviewing, or modernizing TypeScript code to ensure type safety, compiler performance, and idiomatic patterns. Triggers on tasks involving TypeScript type architecture, narrowing, generics, error handling, or migration to modern TypeScript features.
tools
Resolves TypeScript and JavaScript problems across type-level programming, performance, monorepo management, migration, and modern tooling. Invoke when diagnosing "type instantiation excessively deep" errors, migrating JS to TS, configuring strict tsconfig, debugging module resolution, or choosing between Biome/ESLint/Turborepo/Nx.
tools
Turborepo monorepo build system guidance. Triggers on: `turbo.json`, task pipelines, `dependsOn`, caching, remote cache, the `turbo` CLI, `--filter`, `--affected`, CI optimization, environment variables, internal packages, monorepo structure, and package boundaries. Use when the user configures tasks or workflows, creates packages, sets up a monorepo, shares code between apps, runs changed packages, debugs cache behavior, or works in an `apps/` plus `packages/` workspace.
tools
Provides Tailwind CSS v4 performance optimization and best practices guidelines. Triggers when writing, reviewing, or refactoring Tailwind CSS v4 code; when working with Tailwind configuration, @theme directive, utility classes, responsive design, dark mode, container queries, or CSS generation optimization.