rever

rever is a skill for Claude Code, Codex from greekr4/rever-browser. It costs 82 tokens per session (1,103 once invoked), scanned A, original, Apache-2.0.

A toolkit for examining how a website's web interface communicates with its servers, using a running Rever Browser application. It can record network requests and inspect the website's JavaScript files.

In plain words
What is it for?
Reverse-engineering web APIs, capturing network traffic, analyzing JavaScript bundles, and investigating browser-side request or encryption behavior.
Why use it?
It helps when an API is undocumented and its behavior must be understood by observing a real browser session.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument; mentions Claude Code.

Good fit Reverse-engineering web APIs, capturing network traffic, analyzing JavaScript bundles, and investigating browser-side request or encryption behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/greekr4/rever-browser/rever
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.

Any agent
npx skills add greekr4/rever-browser --skill rever
Clone the repo
git clone --depth 1 https://github.com/greekr4/rever-browser

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 rever

README.md
[![agentmods](https://agentmods.dev/badge/skills/greekr4/rever-browser/rever/github.svg)](https://agentmods.dev/skills/greekr4/rever-browser/rever)
Your own site
<a href="https://agentmods.dev/skills/greekr4/rever-browser/rever"><img src="https://agentmods.dev/badge/skills/greekr4/rever-browser/rever/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.

agentmods 80×15 button for rever

Your own site · 80×15
<a href="https://agentmods.dev/skills/greekr4/rever-browser/rever"><img src="https://agentmods.dev/badge/skills/greekr4/rever-browser/rever.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,103 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00082 $0.01103
Opus 5 $0.00041 $0.00551
Sonnet 5 $0.00016 $0.00221
Haiku 4.5 $0.00008 $0.00110

Measured 11d ago against content hash 2047fe46aea4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

rever 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (rever.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/rever/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.

Rever Browser

Drive a running Rever Browser app from this Claude Code session to reverse-engineer web APIs. Rever captures a real Chromium tab's network traffic and exposes ~140 MCP tools (browser control, traffic store, bundle analysis, interception, crypto tracing) that you use here.

Prerequisite

The Rever Browser app must be running — it publishes its MCP endpoint on startup to:

~/Library/Application Support/rever-browser/mcp-endpoint.json

The port is OS-assigned (changes each launch), so always resolve it from that file. If the file is missing, tell the user to launch Rever Browser first.

Connect

Preferred — register as native MCP tools (tools appear as mcp__rever__*):

claude mcp add --transport http rever "$(python3 -c "import json,os;print(json.load(open(os.path.expanduser('~/Library/Application Support/rever-browser/mcp-endpoint.json')))['url'])")"

Re-run this whenever Rever Browser restarts (the port changes). MCP servers load at session start, so if the tools aren't visible yet, start a fresh claude session.

Quick calls without registration — use the bundled helper (works immediately, reads the endpoint each call):

python3 "$(dirname "$0")/rever.py" --list                              # list tools
python3 rever.py browser_navigate '{"url":"https://example.com"}'
python3 rever.py list_requests

Tool map

  • Browserbrowser_navigate, browser_snapshot (accessibility tree with rN refs), browser_click/browser_type/browser_scroll (by ref), browser_screenshot, browser_evaluate, browser_wait_for, browser_tabs.
  • Trafficlist_requests, get_request, get_request_initiator, fetch_body, har_export.
  • Bundle analysislist_scripts, grep_script/grep_scripts, extract_context, detect_bundler, deobfuscate_script / deob_auto, get_original_source, list_sources (source maps).
  • Auth & cryptoauth_dump, decode_token, crypto_trace_start/stop/list, crypto_chain, hmac_compute, hash_iter.
  • Reproduce & fuzzfind_api_base, graphql_introspect, burst_send, intruder_run, crlf_test, lfi_probe, create_macro / export_python_client.
  • Intercept & overrideintercept_add/intercept_fulfill/intercept_fail, inject_*, header_preset_*, dom_*.
  • Debuggerbp_add, bp_eval_in_frame, bp_step_*, bp_resume.
  • Console / cookiesconsole_logs, console_eval, console_exceptions, cookie_list/cookie_set/cookie_delete.
  • Findingsfinding_add, finding_list, finding_export.

Read the full file on GitHub · 68 lines

Files

What ships with it

1 file 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.

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. 11d ago First seen · 68 lines · 82 tokens per session scan A 2047fe46aea4

Subscribe to this mod's changes

rever is a skill published in the GitHub repository greekr4/rever-browser (27 stars, last pushed 8d ago), licensed Apache-2.0. It adds 82 tokens to every session and 1,103 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

cloud

Documentation reference for using Browser Use Cloud — the hosted API and SDK for browser automation. Use this skill whenever the user needs help with the Cloud REST API (v2, v3, or v4), browser-use-sdk (Python or TypeScript), X-Browser-Use-API-Key authentication, cloud sessions, browser profiles, profile sync, CDP…

browser-use/browser-use · 177 tokens

pinchtab

Use this skill when a task needs browser automation through PinchTab: open a website, inspect interactive elements, click through flows, fill out forms, scrape page text, reuse a dedicated automation profile with user approval, export screenshots or PDFs, manage multiple browser instances, or fall back to the HTTP API…

pinchtab/pinchtab · 94 tokens

testing

Verify a Skyvern deployment is working correctly by smoke-testing the backend API, frontend rendering, browser session provisioning, and workflow execution. Use when the user says 'is Skyvern working', 'test my deployment', 'verify the installation', 'smoke test', or needs to check that a self-hosted or local Skyvern…

Skyvern-AI/skyvern · 71 tokens

owb

Open Web Bridge (OWB) — drive the user's own real browser with the owb command. Read pages behind their existing logins, gather and cross-check information, fill forms, walk multi-step flows, debug their site, audit responsive/accessibility behavior, and capture or reverse-engineer network traffic. Use this whenever…

woniu9524/open-web-bridge · 143 tokens

chrome-agent

Local browser automation with structured, verified outcomes. Use for web navigation, scraping and extraction, form interaction, screenshots and downloads, network or console checks, responsive testing, or page-scoped device emulation.

sderosiaux/chrome-agent · 44 tokens