✓ Verified 🛒 E-commerce ✓ Enhanced Data

Anyone Proxy

This skill enables IP address masking and accessing hidden services.

Rating
4.4 (119 reviews)
Downloads
34,488 downloads
Version
1.0.0

Overview

This skill enables IP address masking and accessing hidden services.

Complete Documentation

View Source →

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

bash
npm install -g @anyone-protocol/anyone-client

Start the proxy

bash
npx @anyone-protocol/anyone-client -s 9050

Usage

Once the proxy is running, route requests through it:
bash
# Using curl to verify IP
curl --socks5-hostname localhost:9050 https://check.en.anyone.tech/api/ip
javascript
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

Installation

Terminal bash

openclaw install anyone-proxy
    
Copied!

💻Code Examples

Once the proxy is running, route requests through it:

once-the-proxy-is-running-route-requests-through-it.sh
# Using curl to verify IP
curl --socks5-hostname localhost:9050 https://check.en.anyone.tech/api/ip
example.js
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();

Tags

#transportation

Quick Info

Category E-commerce
Model Claude 3.5
Complexity One-Click
Author ra3ka
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install anyone-proxy