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.
npx skills add tatagoncalvesof/imperatriz-toolkit --skill skill-deploy-vpsgit clone --depth 1 https://github.com/tatagoncalvesof/imperatriz-toolkitWrote 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.
[](https://agentmods.dev/skills/tatagoncalvesof/imperatriz-toolkit/skill-deploy-vps)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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"
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.
- references/nginx-templates.md 6.8 KB
- references/pm2-templates.md 5.0 KB
- references/troubleshooting.md 6.8 KB
- scripts/deploy.sh 7.7 KB runs code
- scripts/health-check.sh 4.6 KB runs code
- scripts/nginx-config.sh 4.1 KB runs code
- scripts/rollback.sh 3.7 KB runs code
- scripts/ssl-setup.sh 4.0 KB runs code
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.
- 10d ago First seen · 204 lines · 102 tokens per session scan A 71b0bd815871
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.
Other skills, from other repositories
runbook
Generate and update feature release runbooks from existing docs and codebase. Use when: creating operational runbook, release handbook, deployment checklist, pre-release preparation. Not for: incident response (v2), code review (use codex-code-review), architecture design (use architecture).
deploy-netlify
Deploys funnel pages to Netlify. Covers CLI setup, deploy commands, environment variables, custom domains, and redirect configuration.
deploy-cloudflare
Deploys funnel pages to Cloudflare Pages. Covers Wrangler CLI setup, direct upload, custom domains, and Cloudflare-specific optimizations.
deploy-vercel
Deploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains.
dns-management
Guides users through DNS configuration for custom funnel domains. Covers A/CNAME records, SSL setup, and platform-specific DNS requirements.
deploy-to-vercel
Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".