decentralized-proxy-guide

decentralized-proxy-guide is a skill for Claude Code, Codex from nirholas/three.ws. It costs 49 tokens per session (908 once invoked), scanned A, original, Apache-2.0.

A guide to Openbare, a decentralised proxy and relay network for routing web traffic through SOCKS5, HTTP, or Tor-compatible connections. A proxy is an intermediary between an application and the website it accesses.

In plain words
What is it for?
Use it to run a relay, configure a local SOCKS5 or HTTP proxy, route traffic through multiple hops, or control proxy settings through an API.
Why use it?
Routing through relay nodes can provide more private access and can help users reach websites when direct access is restricted.

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/nirholas/three.ws/decentralized-proxy-guide
Any agent
npx skills add nirholas/three.ws --skill decentralized-proxy-guide
Clone the repo
git clone --depth 1 https://github.com/nirholas/three.ws

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 decentralized-proxy-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/nirholas/three.ws/decentralized-proxy-guide.svg)](https://agentmods.dev/skills/nirholas/three.ws/decentralized-proxy-guide)
Your own site
<a href="https://agentmods.dev/skills/nirholas/three.ws/decentralized-proxy-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/decentralized-proxy-guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 908 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.00049 $0.00908
Opus 5 $0.00024 $0.00454
Sonnet 5 $0.00010 $0.00182
Haiku 4.5 $0.00005 $0.00091

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

Security

Grade A, and why

decentralized-proxy-guide 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 yesterday.

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.

curl -x socks5://localhost:1080 https://check.torproject.org
data/skills/development/decentralized-proxy-guide/SKILL.md · 145 lines

How it starts

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

Openbare — Decentralized Proxy Guide

Openbare is a decentralized proxy and relay network for privacy-preserving web access. Features SOCKS5, HTTP proxy, and Tor-compatible endpoints.

Architecture

Client (Browser/App)
    │
    ▼
Openbare Proxy Node (local or remote)
    │
    ├── Direct Route (fast, less private)
    ├── Single Hop (moderate privacy)
    └── Multi-Hop (maximum privacy)
    │
    ▼
Destination Server

Features

Feature Description
SOCKS5 Proxy Full SOCKS5 proxy protocol
HTTP Proxy HTTP/HTTPS proxy mode
Multi-Hop Route through multiple nodes
Encryption End-to-end encryption between hops
No Logging Zero-log policy by design
Self-Hosted Run your own relay node
API Access Programmatic proxy configuration

Quick Start

Run a Node

# Install
pip install openbare

# Start a relay node
openbare run --mode relay --port 1080

# Start as SOCKS5 proxy
openbare run --mode socks5 --port 1080

# Start as HTTP proxy
openbare run --mode http --port 8080

Use as Client

# Configure SOCKS5
export ALL_PROXY=socks5://localhost:1080

# Or HTTP proxy
export HTTP_PROXY=http://localhost:8080
export HTTPS_PROXY=http://localhost:8080

# Test
curl -x socks5://localhost:1080 https://check.torproject.org

Use in Code

Python

import requests

proxies = {
    'http': 'socks5://localhost:1080',
    'https': 'socks5://localhost:1080'
}

# All requests go through the proxy
response = requests.get('https://api.coingecko.com/api/v3/ping', proxies=proxies)

Node.js

import { SocksProxyAgent } from 'socks-proxy-agent';
import fetch from 'node-fetch';

const agent = new SocksProxyAgent('socks5://localhost:1080');

const response = await fetch('https://api.coingecko.com/api/v3/ping', { agent });

Multi-Hop Routing

# Route through 3 nodes for maximum privacy
openbare route --hops 3 --entry node1.openbare.net --exit node3.openbare.net

Read the full file on GitHub · 145 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. yesterday First seen · 145 lines · 49 tokens per session scan A e198803c4f8f

Subscribe to this mod's changes

decentralized-proxy-guide is a skill published in the GitHub repository nirholas/three.ws (110 stars, last pushed today), licensed Apache-2.0. It adds 49 tokens to every session and 908 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-09-03.

Related

Other skills, from other repositories

blender-mcp

Drive Blender via the catalog blender MCP, with bpy recipes.

GGbond-bo/MemOmics-Agent · 17 tokens

blender-mcp

Control Blender directly from Gauss via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.

math-inc/OpenGauss · 54 tokens

threejs-docs

Comprehensive Three.js reference covering core API (objects, cameras, lights, materials, geometries, renderers, scenes, textures, math, animation, audio, loaders, helpers, nodes), all addons (controls, postprocessing, loaders, exporters, geometries, shaders, WebXR, physics), TSL (Three.js Shading Language) functions…

pledgeandgrow/pledge-skills · 112 tokens

blender-mcp

Control Blender directly from Hermes via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.

raphaelmansuy/edgecrab · 53 tokens

blender-mcp

Control Blender directly from Hermes via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.

johnson7788/MultiUserClaw · 53 tokens

3d-website-architect

Expert skill for designing, building, and deploying modern premium websites with advanced animations and 3D interactive experiences using Three.js, React Three Fiber, GSAP, and Framer Motion. Use this skill whenever the user wants to build a website with 3D elements, create an immersive web experience, add interactive…

deveshpunjabi/3d-website-skill · 240 tokens