agentsclimarketplace

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

Install
npx -y skills add vignesh2027/claude-best-practice --skill deploy

Assembled 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:

  1. Health check endpoint responds
  2. Key user flows work (login, core action)
  3. Error rate in monitoring is normal
  4. 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/

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.