Deploy
Skill vignesh2027/claude-best-practice/.claude/skills/deploy
π€ Claude Code β Best Practices & Advanced Patterns The most comprehensive, production-ready guide to mastering Claude Code From vibe coding β agentic engineering β autonomous AI development teams
npx -y skills add vignesh2027/claude-best-practice --skill deployAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when deploying to production, releasing a version, shipping to users, going live, or rolling back a deployment. Also handles deployment failures and health checks.
SKILL.md
1.0 KB, 202 tokens by cl100k_base, as published. Nobody here has run it
Production Deployment Skill
Pre-Deploy Gate
All must pass before deploying:
npm test # tests must pass
npm run lint # no lint errors
npm run typecheck # no type errors
If any fail: STOP. Do not deploy. Fix first.
Build
npm run build
Verify build output exists and looks correct.
Deploy
npm run deploy:prod
# or
# vercel --prod
# or your deployment command
Post-Deploy Verification
Wait 60 seconds, then verify:
- Health check endpoint responds
- Key user flows work (login, core action)
- Error rate in monitoring is normal
- Response times are normal
If issues found β see @references/rollback.md
Monitoring
For post-deploy monitoring setup: @references/monitoring.md
Rollback
For rollback procedures: @references/rollback.md
What ships with it: 2 files
1.8 KB alongside SKILL.md
references/
- monitoring.md872 B
- rollback.md923 B