/install anyone-proxy
Anyone Protocol Proxy
This skill enables Clawdbot to route requests through the Anyone Protocol network.
How It Works
The skill uses the @anyone-protocol/anyone-client NPM package to:
- Start a local SOCKS5 proxy server (default port: 9050)
- Create encrypted circuits through the Anyone Network
- Route traffic through these circuits
- Return responses while keeping the origin IP hidden
Setup
Install anyone-client
npm install -g @anyone-protocol/anyone-client
Start the proxy
npx @anyone-protocol/anyone-client -s 9050
Usage
Once the proxy is running, route requests through it:
# Using curl to verify IP
curl --socks5-hostname localhost:9050 https://check.en.anyone.tech/api/ip
import { Anon } from "@anyone-protocol/anyone-client";
import { AnonSocksClient } from "@anyone-protocol/anyone-client";
async function main() {
const anon = new Anon();
const anonSocksClient = new AnonSocksClient(anon);
try {
await anon.start();
// Wait for circuits to establish
await new Promise(resolve => setTimeout(resolve, 15000));
const response = await anonSocksClient.get('https://check.en.anyone.tech/api/ip');
console.log('Response:', response.data);
} catch(error) {
console.error('Error:', error);
} finally {
await anon.stop();
}
}
main();
Notes
- First connection may take up to 30 seconds while circuits are established
- The proxy persists across requests once started
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install anyone-proxy - After installation, invoke the skill by name or use
/anyone-proxy - Provide required inputs per the skill's parameter spec and get structured output
What is Anyone Procotol Proxy?
This skill enables IP address masking and accessing hidden services on the Anyone Network. Route requests through the Anyone Protocol VPN network using a local SOCKS5 proxy. It is an AI Agent Skill for Claude Code / OpenClaw, with 2751 downloads so far.
How do I install Anyone Procotol Proxy?
Run "/install anyone-proxy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Anyone Procotol Proxy free?
Yes, Anyone Procotol Proxy is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Anyone Procotol Proxy support?
Anyone Procotol Proxy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Anyone Procotol Proxy?
It is built and maintained by rA3ka (@ra3ka); the current version is v0.1.0.