deploy
Installation
SKILL.md
Deploy
Streamline deployment workflows for React, Next.js, NestJS applications to various environments.
When to Use
- Deploying to staging or production
- Setting up deployment pipelines
- Managing environment-specific deployments
Pre-Deployment Checklist (MANDATORY)
Run ALL of these locally before every push:
# 1. Format
npx biome check --write . || npm run format
# 2. Lint
npm run lint || bunx turbo lint
# 3. Type-check
npm run type-check || tsc --noEmit
# 4. Run tests for changed packages
npm test || bun run test --filter=[changed-package]
# 5. Verify build
npm run build
If ANY step fails, fix it before pushing.
Deployment Process
To Staging
- Ensure develop/main CI is green
- Create PR to staging branch (if applicable)
- Wait for CI to pass
- Merge when green
To Production
- Ensure staging CI is green
- Create PR to production branch
- Require explicit confirmation — production is critical
- Merge and monitor deployment
- Watch health endpoints and error tracking for 15 minutes
Hotfix Flow
- Branch
hotfix/xxxoff production branch - Fix -> PR to production -> deploy
- Merge hotfix back into develop
Post-Deployment Verification
- Check health endpoints
- Monitor error tracking (Sentry, etc.)
- Verify critical user flows
- Check deployment logs
Rollback
If deployment fails, revert the merge commit and re-deploy.
References
See references/workflow.md for platform-specific deployment details, AWS patterns, CI/CD integration, and rollback procedures.
Weekly Installs
1
Repository
shipshitdev/skillsGitHub Stars
21
First Seen
5 days ago
Security Audits
Installed on
openclaw1
cursor1
codex1
claude-code1