Deploy
Skill KhaiTrang1995/claude-code-structure/.claude/skills/deploy
A ready-to-use Claude Code project scaffold — rules, commands, skills, agents, and hooks in one command.
npx -y skills add KhaiTrang1995/claude-code-structure --skill deployAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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.
SKILL.md
0.9 KB, as published. Nobody here has run it
Deploy Skill
Trigger Context
This skill activates automatically when the task involves:
- Deploying to staging or production
- CI/CD pipeline configuration
- Docker / container builds
- Cloud provider (AWS, GCP, Azure) operations
Workflow
Pre-deploy Checklist
- All tests passing:
npm test - No lint errors:
npm run lint - Environment variables set for target environment
- Database migrations reviewed
Deploy Steps
# Build production artifact
npm run build
# Run deploy script (see deploy-config.md for environment vars)
./scripts/deploy.sh --env production
Post-deploy Verification
- Check service health endpoint:
GET /api/health - Review application logs for errors
- Smoke test critical user flows
Rollback
./scripts/deploy.sh --rollback --env production
References
- Environment-specific config:
.claude/skills/deploy/deploy-config.md