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 agentmods add skills/luuow/meridian-mcp/devopsnpx skills add LuuOW/meridian-mcp --skill devopsgit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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/luuow/meridian-mcp/devops)<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>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 | $0.00043 | $0.02247 |
| Opus 5 | $0.00022 | $0.01123 |
| Sonnet 5 | $0.00009 | $0.00449 |
| Haiku 4.5 | $0.00004 | $0.00225 |
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 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;
}
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.
- 3d ago First seen · 293 lines · 43 tokens per session scan D e300e4f51bb1
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.
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.
nginx-expert
Expert-level Nginx configuration, reverse proxy, load balancing, SSL/TLS, caching, and performance tuning.
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…
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…
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.
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…