maintainer

maintainer is a skill for Claude Code, Codex from therealaleph/MasterHttpRelayVPN-RUST. It costs 0 tokens per session (2,355 once invoked), scanned A, original, MIT.

A maintenance guide for mhrv-rs, a tool designed to help people in censored networks reach blocked internet services.

In plain words
What is it for?
Use it when maintaining the code, investigating network or access problems, and responding to user reports, including reports from Persian-speaking users.
Why use it?
It explains the project’s traffic-routing design and the real-world impact of changes, which is important when fixing issues or answering users.

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/therealaleph/masterhttprelayvpn-rust/maintainer
Any agent
npx skills add therealaleph/MasterHttpRelayVPN-RUST --skill maintainer
Clone the repo
git clone --depth 1 https://github.com/therealaleph/MasterHttpRelayVPN-RUST

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 maintainer

README.md
[![agentmods](https://agentmods.dev/badge/skills/therealaleph/masterhttprelayvpn-rust/maintainer.svg)](https://agentmods.dev/skills/therealaleph/masterhttprelayvpn-rust/maintainer)
Your own site
<a href="https://agentmods.dev/skills/therealaleph/masterhttprelayvpn-rust/maintainer"><img src="https://agentmods.dev/badge/skills/therealaleph/masterhttprelayvpn-rust/maintainer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,355 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00000 $0.02355
Opus 5 $0.00000 $0.01177
Sonnet 5 $0.00000 $0.00471
Haiku 4.5 $0.00000 $0.00235

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

Security

Grade A, and why

maintainer 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 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.

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.

docs/maintainer/SKILL.md · 115 lines

How it starts

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

mhrv-rs maintenance

This document encodes the project context, recurring patterns, and conventions needed to ship code, triage issues, and respond to users effectively. It is the entry point to the broader knowledge base in references/.

Why this matters

mhrv-rs is infrastructure for circumvention. The bulk of the userbase is in Iran — under one of the world's heaviest internet censorship regimes — using this tool to reach YouTube, Wikipedia, Telegram, GitHub, news sites, banking, and (critically) to communicate with family abroad. A non-trivial fraction of users are in Russia, China, Belarus, and other censored networks, but Iran dominates the issue tracker.

The architecture's importance is the architecture itself: by routing traffic through Google Apps Script, the user's ISP only sees encrypted HTTPS to Google IPs (216.239.38.120 etc.) — the exact same fingerprint as www.google.com. ISPs that block conventional VPNs are forced to either let mhrv-rs through or break Google access for the entire country. This asymmetry is what makes the project work, and it shapes every architectural decision.

When responding to a Persian-language issue, the responder is often the only English-speaking maintainer the reporter has access to. Be clear, generous, and specific. When shipping a release, you're shipping it to people for whom the alternative is not "use a different tool" but "lose internet access". This drives the project's bias toward shipping over polish, toward backwards-compatible defaults, and toward documenting workarounds even when the proper fix is months away.

Working directory and conventions

This is a standard Rust project. cd into your local clone before running git/gh/cargo commands, or use absolute paths. Reply markdown files for gh issue comment --body-file are conventionally written to a temporary file (e.g., /tmp/...) before posting, to avoid HEREDOC quoting issues with backticks and $() substitutions.

Reference files (read as needed)

Read the full file on GitHub · 115 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 · 115 lines · 0 tokens per session scan A 2a9202812620

Subscribe to this mod's changes

maintainer is a skill published in the GitHub repository therealaleph/MasterHttpRelayVPN-RUST (3,572 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,355 tokens. 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-30.

Related

Other skills, from other repositories

ship-release

Drive a Telepresence release from a prepared branch all the way through CI, docs, the Releases workflow, and PR merges. Assumes make prepare-release has already been run locally and the branch with that commit was pushed and a PR opened. Use when the user says "ship the release", or "complete the release". User-only.

telepresenceio/telepresence · 72 tokens

regression-tests

Run, scope, or debug telepresence regression tests under regressiontest/ — the integration-level suite. Use when the user wants to run an area, suite, or single test, debug a failure, or says "/regression-tests". Runs go test ./regressiontest scoped with -run, in the background, writing to a log file so heavy output…

telepresenceio/telepresence · 82 tokens

changelog-entry

Add a new entry to CHANGELOG.yml under the current unreleased version (or create the version block if needed), then regenerate documentation. Use when the user says things like "add a changelog entry", "log this fix in the changelog", or "/changelog-entry".

telepresenceio/telepresence · 60 tokens

prepare-release

Create the local release commit and tags by setting TELEPRESENCEVERSION and running make prepare-release. Stops at the local commit+tags - pushing is the ship-release skill's job. Use when the user explicitly asks to prepare a release, RC, or test build. User-only.

telepresenceio/telepresence · 60 tokens

codex-e2e-test

Run PR-grade real Codex E2E validation through claude-tap, including resume turns, multiple tool calls, optional image input, viewer verification, and screenshot evidence.

liaohch3/claude-tap · 42 tokens

build-wasm

Build the WASM plugins for Envoy. Use when WASM plugin code changes.

katanemo/plano · 21 tokens