ops_reverse_proxy

ops_reverse_proxy is a skill for Claude Code, Codex from frontier-ai-next/mgarlbot. It costs 38 tokens per session (1,110 once invoked), scanned A, original, MIT.

A deployment guide for publishing a website through a reverse proxy on a virtual private server (VPS), using tools such as Traefik, Nginx, or frp. A reverse proxy receives web requests and forwards them to the right application.

In plain words
What is it for?
Checking the server's containers, proxy, networks, and routing patterns, then configuring and verifying a public HTTP route for a deployed application.
Why use it?
It reduces the risk of conflicting with services already running on the server by requiring an inspection of the existing setup first. It also makes the default HTTP-only deployment behavior explicit.

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/frontier-ai-next/mgarlbot/ops_reverse_proxy
Any agent
npx skills add frontier-ai-next/mgarlbot --skill ops_reverse_proxy
Clone the repo
git clone --depth 1 https://github.com/frontier-ai-next/mgarlbot

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 ops_reverse_proxy

README.md
[![agentmods](https://agentmods.dev/badge/skills/frontier-ai-next/mgarlbot/ops_reverse_proxy.svg)](https://agentmods.dev/skills/frontier-ai-next/mgarlbot/ops_reverse_proxy)
Your own site
<a href="https://agentmods.dev/skills/frontier-ai-next/mgarlbot/ops_reverse_proxy"><img src="https://agentmods.dev/badge/skills/frontier-ai-next/mgarlbot/ops_reverse_proxy.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,110 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00038 $0.01110
Opus 5 $0.00019 $0.00555
Sonnet 5 $0.00008 $0.00222
Haiku 4.5 $0.00004 $0.00111

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

Security

Grade A, and why

ops_reverse_proxy scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

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

Post-deploy check: `curl -sS -I http://<host>/` (and `Host:` if needed), not `https://` by default.
skills/ops_reverse_proxy/SKILL.md · 68 lines

How it starts

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

Operator stack today: HTTP-only on the reverse proxy

Treat the edge (Traefik / Nginx / frp) as plain HTTP (port 80 or frp equivalent). Do not add TLS, websecure, tls=true, certresolver, or require Let’s Encrypt until existing projects on the same VPS clearly terminate HTTPS or the user explicitly asks for HTTPS.

Post-deploy check: curl -sS -I http://<host>/ (and Host: if needed), not https:// by default.


Inspect first, then copy the pattern

Before writing a new docker-compose.yml, Traefik labels, or an Nginx server {}, understand what already runs on the target server and how other projects are wired. Otherwise you get a second incompatible stack (wrong Docker network, wrong entrypoint).

Remote VPS work uses vps_host_ssh:

ssh -F /data/.ssh/config vps 'COMMAND'

(If the bot runs without Docker but with HOST SHELL, the same SSH from the configured host is fine.)

Step 1 — what serves traffic (HTTP first)

  1. Containers: docker ps --format 'table {{.Names}}\t{{.Image}}\t{{.Ports}}'
  2. Traefik: names like traefik, proxy, image traefik:*. If present, sample labels from a routed service:
    • docker inspect SERVICE_NAME --format '{{json .Config.Labels}}' | head -c 12000
    • Check entrypoints: if everything is web / :80, new services stay HTTP-only. If you see websecure + tls.certresolver, copy TLS like the neighbors.
  3. Host Nginx: test -d /etc/nginx/sites-enabled && ls -1 /etc/nginx/sites-enabled || true and optionally grep -R listen /etc/nginx/sites-enabled/ 2>/dev/null | head -30 — if only listen 80, do not add listen 443 ssl without a user request and certs.
  4. frp: pgrep -a frpc || true; common paths ~/frp/frpc.toml, /etc/frp/frpc.toml, /opt/frp/frpc.toml — read-only. For HTTP prefer type = http and customDomains; do not switch to https without a clear need.

Step 2 — where other compose projects live

Avoid aggressive find /:

Read the full file on GitHub · 68 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. 4d ago First seen · 68 lines · 38 tokens per session scan A 581f4ec4e5e1

Subscribe to this mod's changes

ops_reverse_proxy is a skill published in the GitHub repository frontier-ai-next/mgarlbot (17 stars, last pushed 28d ago), licensed MIT. It adds 38 tokens to every session and 1,110 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

network-rca

Kubernetes network root cause analysis skill powered by Kubeshark MCP. Use this skill whenever the user wants to investigate past incidents, perform retrospective traffic analysis, take or manage traffic snapshots, extract PCAPs, dissect L7 API calls from historical captures, compare traffic patterns over time, detect…

kubeshark/kubeshark · 163 tokens

ecspresso

ECS deployment tool - deploy, manage, and troubleshoot ECS services.

kayac/ecspresso · 17 tokens

gateway

Start and manage the Kurtosis gateway for Kubernetes. The gateway forwards local ports to the Kurtosis engine and services running in a k8s cluster. Required when using Kurtosis with Kubernetes. Use when kurtosis engine status shows nothing on k8s or services aren't reachable.

kurtosis-tech/kurtosis · 57 tokens

cluster-manage

Manage Kurtosis cluster settings. Switch between Docker and Kubernetes backends, list available clusters, and configure which cluster Kurtosis uses. Use when you need to change where Kurtosis runs enclaves.

kurtosis-tech/kurtosis · 43 tokens

aws-collector-tool

AWS infrastructure collector. Fetches ECS status, CloudWatch logs, and metrics. Use when: checking ECS health, inspecting CloudWatch error logs, pulling infra metrics, or monitoring AWS resources.

xuiltul/animaworks · 43 tokens

exec-local-docker

Execute a TensorRT-LLM workload locally in Docker. Runs a fully-resolved Docker command in background, monitors completion, reads logs, and reports results. Workflow-agnostic — does not need to know if the workload is pytest, eval, benchmark, or a custom script.

NVIDIA/TensorRT-LLM · 62 tokens