Claude-skill-registry deploy-vps
Deploy a new image to a VPS Ubuntu host using GHCR and a deploy script.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/deploy-vps" ~/.claude/skills/majiayu000-claude-skill-registry-deploy-vps && rm -rf "$T"
manifest:
skills/data/deploy-vps/SKILL.mdsource content
Intent
Use for GitOps-style deploys to a VPS when a new image is pushed.
Steps
- Confirm target env (dev|stage|prd|custom) and image tag.
- Verify no secrets are exposed; use placeholders.
- Use a deploy script or image updater on the VPS to pull and restart.
- Verify health checks and metrics (Prometheus/Grafana) if available.
Safety
- Require explicit confirmation before touching production.
- Provide rollback steps (previous tag) before execution.