devops

devops is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 43 tokens per session (2,247 once invoked), scanned D, original, MIT.

A practical guide to deploying Python, FastAPI, Node, and Astro applications on self-hosted VPS servers. It covers Nginx, Let's Encrypt SSL, PM2, systemd, firewalls, logs, monitoring, and backups.

In plain words
What is it for?
Use it to create a deploy user, secure SSH, configure firewall rules, route traffic through Nginx, enable HTTPS, manage processes, rotate logs, monitor services, and plan backups.
Why use it?
It brings common server setup and maintenance tasks into one set of instructions, reducing guesswork when putting an application online.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/luuow/meridian-mcp/devops
Any agent
npx skills add LuuOW/meridian-mcp --skill devops
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

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 devops

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/devops.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/devops)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/devops"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/devops.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,247 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. Scan, not verified.
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 $0.00043 $0.02247
Opus 5 $0.00022 $0.01123
Sonnet 5 $0.00009 $0.00449
Haiku 4.5 $0.00004 $0.00225

Measured 3d ago against content hash e300e4f51bb1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade D, and why

devops scanned grade D with 3 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 3d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

usermod -aG sudo deploy

Reaches for credential fileshighPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

cat >> /home/deploy/.ssh/authorized_keys << 'EOF'

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

if ! curl -sf "$URL" > /dev/null; then
skills/devops/SKILL.md · 293 lines

How it starts

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

devops

Practical DevOps for self-hosted VPS deployments running Python/FastAPI + Node/Astro apps. Assumes Ubuntu 22.04/24.04, Docker optional.

1) VPS Initial Setup

# As root — first-time server setup
adduser deploy
usermod -aG sudo deploy
usermod -aG docker deploy   # if using Docker

# Copy SSH key
mkdir -p /home/deploy/.ssh
cat >> /home/deploy/.ssh/authorized_keys << 'EOF'
ssh-ed25519 AAAA... your-public-key
EOF
chmod 700 /home/deploy/.ssh
chmod 600 /home/deploy/.ssh/authorized_keys
chown -R deploy:deploy /home/deploy/.ssh

# Harden SSH
sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
systemctl restart sshd

# Firewall
ufw allow OpenSSH
ufw allow 80/tcp
ufw allow 443/tcp
ufw enable

2) Nginx Reverse Proxy

# /etc/nginx/sites-available/myapp
server {
    listen 80;
    server_name myapp.example.com;
    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2;
    server_name myapp.example.com;

    ssl_certificate     /etc/letsencrypt/live/myapp.example.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/myapp.example.com/privkey.pem;
    ssl_protocols       TLSv1.2 TLSv1.3;
    ssl_ciphers         HIGH:!aNULL:!MD5;

    # Frontend (Astro/Next on :8080)
    location / {
        proxy_pass http://127.0.0.1:8080;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }

    # API (FastAPI on :9002)
    location /api/ {
        proxy_pass http://127.0.0.1:9002;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_read_timeout 120s;
    }

    # WebSocket / SSE
    location /api/stream {
        proxy_pass http://127.0.0.1:9002;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_read_timeout 3600s;
        proxy_buffering off;
    }

    client_max_body_size 10M;
    gzip on;
    gzip_types text/plain application/json application/javascript text/css;
}

Read the full file on GitHub · 293 lines

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. 3d ago First seen · 293 lines · 43 tokens per session scan D e300e4f51bb1

Subscribe to this mod's changes

devops is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 43 tokens to every session and 2,247 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, reaches for credential files, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nginx-docs

NGINX 1.29.x — web server, reverse proxy, load balancing, HTTP/stream/mail modules, SSL, HTTP/2, HTTP/3.

pledgeandgrow/pledge-skills · 39 tokens

nginx-expert

Expert-level Nginx configuration, reverse proxy, load balancing, SSL/TLS, caching, and performance tuning.

personamanagmentlayer/pcl · 27 tokens

log-analyser

Analyse Nginx access and error logs to surface traffic patterns, AI crawler activity, cache performance, error spikes, and suspicious requests. Use when the user wants to understand who is crawling their site, why cache hit rates are low, what errors are occurring, or wants the weekly log digest. Automatically…

arturseo-geo/cowork-vps-ops · 82 tokens

nginx-manager

Manage Nginx configuration safely: validate syntax, reload, check SSL certificate expiry, review active virtual hosts, and diagnose configuration issues. Use when the user needs to add a new site config, troubleshoot a 504/502 error, check SSL status, or verify a config change before applying. Always validates before…

arturseo-geo/cowork-vps-ops · 75 tokens

backup-manager

Verify backup integrity, check backup schedules, and confirm recent backups completed successfully. Use when the user wants to confirm backups are running, check if last night's backup completed, or audit the backup coverage across all services. Activates when user mentions backups or asks if data is safe.

arturseo-geo/cowork-vps-ops · 58 tokens

service-monitor

Monitor all VPS services: PM2 processes, Nginx, PHP-FPM, PostgreSQL, Redis, and systemd units. Use when the user wants a service health check, suspects something is down, or wants the Monday morning infrastructure digest. Returns status per service, memory/CPU usage, uptime, and any restart history. Automatically…

arturseo-geo/cowork-vps-ops · 86 tokens