agentsclimarketplace

Deploy

Skill justnau1020/claude-os/skills/operations/deploy

Deploy to production. Runs pre-deploy safety checks, pushes to trigger CI/CD, and monitors the deployment.From its SKILL.md

Install
npx -y skills add justnau1020/claude-os --skill deploy

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

  1. Tests pass: Run the full test suite
  2. Lint clean: Run the project's linter with no errors
  3. Types clean: Run the type checker with no errors (if applicable)
  4. On deploy branch: git branch --show-current must be the deploy branch (usually main)
  5. Working tree clean: git status shows no uncommitted changes
  6. Up to date: git pull origin main has 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

  1. Watch CI: gh run list --limit 1 -- wait for the run to complete
  2. Check run status: gh run view <run-id> -- verify all jobs pass
  3. Health check: After CI completes, wait 60 seconds then:
    curl -sf https://{PRODUCTION_URL}/health
    
  4. Expected healthy response includes a status field indicating the service is running

If Deployment Fails

  1. Check CI logs: gh run view <run-id> --log-failed
  2. If the app is down, refer to the project's runbook for rollback procedures
  3. 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.

Keep looking

Skills are one crate of 325,949. 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.