Deploy
Deploy to production. Runs pre-deploy safety checks, pushes to trigger CI/CD, and monitors the deployment.From its SKILL.md
npx -y skills add justnau1020/claude-os --skill deployAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 3 stars3 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 8 commands, including `git branch --show-current` and 7 more.
- fetches URLsInstructs the agent to fetch 1 URL, including https://{PRODUCTION_URL}/health.
SKILL.md
1.7 KB, 352 tokens by cl100k_base, as published. Nobody here has run it
Deploy to Production
WARNING: This deploys to the live production environment.
Pre-Deploy Checklist
Before pushing, verify ALL of these pass:
- Tests pass: Run the full test suite
- Lint clean: Run the project's linter with no errors
- Types clean: Run the type checker with no errors (if applicable)
- On deploy branch:
git branch --show-currentmust be the deploy branch (usuallymain) - Working tree clean:
git statusshows no uncommitted changes - Up to date:
git pull origin mainhas no conflicts
If ANY check fails, stop and report the issue. Do NOT proceed with deployment.
Deploy
Push to the deploy branch to trigger the CI/CD pipeline:
git push origin main
Monitor
- Watch CI:
gh run list --limit 1-- wait for the run to complete - Check run status:
gh run view <run-id>-- verify all jobs pass - Health check: After CI completes, wait 60 seconds then:
curl -sf https://{PRODUCTION_URL}/health - Expected healthy response includes a status field indicating the service is running
If Deployment Fails
- Check CI logs:
gh run view <run-id> --log-failed - If the app is down, refer to the project's runbook for rollback procedures
- Quick rollback: revert the commit and push again
Reference
Check the project's deploy/ directory or ops documentation for full operational procedures.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.