infra-deploy

Generate Markdown architectural decision records from structured inputs.

1|Updated Dec 22, 2025
One-click install
npx skills add https://github.com/abdullah1854/ClaudeSuperSkills --skill infra-deploy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: infra-deploy
Source: https://github.com/abdullah1854/ClaudeSuperSkills/tree/main/infra-deploy
Command: npx skills add https://github.com/abdullah1854/ClaudeSuperSkills --skill infra-deploy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Infrastructure setup and deployment are error-prone and repetitive. This Skill codifies best practices for VPS, Docker, Nginx, and SSL setup to accelerate reliable deployments.

Core Features & Use Cases

  • Pre-deploy checks: Build, tests, and secret hygiene before deploying.
  • Docker/Docker Compose: Production-focused containerization patterns.
  • Nginx/SSL: Reverse proxy with Let's Encrypt automation.

Quick Start

Deploy a simple Node.js app to a fresh VPS with Docker Compose and a Let's Encrypt certificate.

Frequently Asked Questions about infra-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Docker and Nginx deployment to a VPS?

Automated Docker deployment uses Docker Compose to containerize applications and Nginx as a reverse proxy on your VPS. This Skill generates deployment pipelines that handle VPS setup, container orchestration, and Nginx configuration end-to-end, reducing manual server configuration and human error.

Can I set up SSL certificates automatically during deployment?

Yes, this Skill automates Let's Encrypt SSL certificate provisioning and renewal alongside Nginx configuration. It handles the full certificate lifecycle during deployment, eliminating manual certificate management and expired-certificate downtime.

What pre-deployment checks should I run before deploying to production?

Pre-deploy checks verify builds complete, tests pass, and secrets are not exposed in your codebase before pushing to production. This Skill enforces these checks as part of the pipeline, catching configuration and security issues before they reach your VPS.

How do I deploy a Node.js app with Docker Compose and SSL on a fresh server?

This Skill generates the complete infrastructure-as-code setup: Docker Compose configuration for your Node.js container, Nginx reverse proxy rules, and Let's Encrypt SSL automation. Follow the generated pipeline to deploy from a blank VPS to a live, HTTPS-secured application.

What are the limitations of using Docker Compose for production deployments?

Docker Compose is single-host focused and lacks built-in clustering, load balancing across multiple servers, or automatic failover. This Skill targets VPS and small-scale deployments; larger infrastructures may require orchestration tools beyond Compose's scope.