What problem does it solve? Publishing a static site to a Linux VPS becomes error-prone when the server is only reachable through an SSH jump host or bastion, and manual file-by-file uploads risk broken or inconsistent releases. ## Core Features & Use Cases - Deterministic release workflow: Build locally, package the output into a single tar archive, upload with scp -J, and extract on the target host. - Jump host connectivity: Uses ssh -J and scp -J to reach target servers that are not directly exposed to the internet. - Verification built in: Confirms the deploy with server-local curl requests using the expected Host header, plus public URL checks. - Use Case: You have a Vite or React dashboard that must go live on an Nginx VPS reachable only through a bastion. This Skill walks the agent through building, archiving, uploading, extracting, and verifying the release with rollback-aware guardrails. ## Quick Start Use the jump-host-static-deploy skill to publish my Vite build to the Nginx server through the bastion host and verify it with the correct Host header.