Deploy
A ready-to-use Claude Code project scaffold — rules, commands, skills, agents, and hooks in one command.From the repository description
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.
2 things 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.
- runs commandsInstructs the agent to run 5 commands, including `npm test` and 4 more.
SKILL.md
0.9 KB, 209 tokens by cl100k_base, 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
What ships with it: 1 file
833 B alongside SKILL.md
- deploy-config.md833 B