skill-deploy-vps

skill-deploy-vps is a skill for Claude Code, Codex from tatagoncalvesof/imperatriz-toolkit. It costs 102 tokens per session (1,650 once invoked), scanned A, original, MIT.

A deployment guide for putting Node.js applications on a Hostinger VPS, a rented server managed through the command line.

In plain words
What is it for?
Use it to build and upload Node.js apps, configure Nginx, keep services running with PM2, and add SSL certificates with Certbot.
Why use it?
It documents the server setup needed to run an application publicly, including web routing, background processes, and HTTPS certificates.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build and upload Node.js apps, configure Nginx, keep services running with PM2, and add SSL certificates with Certbot.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add tatagoncalvesof/imperatriz-toolkit --skill skill-deploy-vps
Clone the repo
git clone --depth 1 https://github.com/tatagoncalvesof/imperatriz-toolkit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-deploy-vps

README.md
[![agentmods](https://agentmods.dev/badge/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps/github.svg)](https://agentmods.dev/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps)
Your own site
<a href="https://agentmods.dev/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps"><img src="https://agentmods.dev/badge/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-deploy-vps

Your own site · 80×15
<a href="https://agentmods.dev/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps"><img src="https://agentmods.dev/badge/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,650 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00102 $0.01650
Opus 5 $0.00051 $0.00825
Sonnet 5 $0.00020 $0.00330
Haiku 4.5 $0.00010 $0.00165

Measured 10d ago against content hash 71b0bd815871, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

skill-deploy-vps scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/deploy.sh, scripts/health-check.sh, scripts/nginx-config.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/skill-deploy-vps/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deploy VPS — Hostinger Node.js Apps

Overview

Deploy Node.js applications to a Hostinger VPS (Ubuntu 24.04) running at 76.13.175.161. Handles the full lifecycle: local build, file upload via SCP, Nginx reverse proxy configuration, PM2 process management, and SSL certificate provisioning via Certbot.

Infrastructure Reference

Component Detail
VPS IP 76.13.175.161
SSH ssh [email protected] (key auth)
Domain iacomtata.com.br
Apps dir /var/www/apps/
Node 22 (via nvm)
Package mgr pnpm
Process mgr PM2
Reverse proxy Nginx
SSL Certbot (Let's Encrypt)
Databases SQLite (WAL mode) in app dirs

Active Deployments

App Port Subdomain PM2 Name
WhatsApp Analyzer 3003 whatsapp.iacomtata.com.br whatsapp-analyzer
LuxStudio Bot 3005 luxstudio.iacomtata.com.br luxstudio-whatsapp
Podcast Infinito 3006 podcast-infinito
Imperatriz Carroseis 3010 iacomtata.com.br/imperatrizdoscarroseis imperatriz-carroseis
Imperio 18790 imperio.iacomtata.com.br imperio

Port Allocation

Ports 3003-3006, 3010, 18790 are taken. Use the next available port (3007, 3008, 3009, 3011+).

Deploy Workflow

Execute these steps sequentially. Each step has a corresponding script in scripts/.

Step 1 — Build Locally

Build the project on the local machine before uploading.

# For pnpm/turbo monorepo
cd ~/PROJECT_NAME
PATH="$HOME/.npm-global/bin:/usr/bin:/usr/local/bin:$PATH" pnpm run build

# For simple npm project
cd ~/PROJECT_NAME
npm run build

Verify the build output exists (dist/, build/, or .next/).

Step 2 — Upload to VPS

Use SCP to transfer build artifacts. NEVER transfer node_modules.

# Create app directory on VPS
ssh [email protected] "mkdir -p /var/www/apps/PROJECT_NAME"

# Upload backend dist
scp -r dist/ [email protected]:/var/www/apps/PROJECT_NAME/dist/

# Upload package.json and lock file
scp package.json [email protected]:/var/www/apps/PROJECT_NAME/

# Upload .env (if needed)
scp .env [email protected]:/var/www/apps/PROJECT_NAME/

# Install production dependencies on VPS
ssh [email protected] "cd /var/www/apps/PROJECT_NAME && npm install --production"

Read the full file on GitHub · 204 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 204 lines · 102 tokens per session scan A 71b0bd815871

Subscribe to this mod's changes

skill-deploy-vps is a skill published in the GitHub repository tatagoncalvesof/imperatriz-toolkit (2 stars, last pushed 3mo ago), licensed MIT. It adds 102 tokens to every session and 1,650 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.