โ† All skills
Tencent SkillHub ยท Developer Tools

Vpn Rotate Skill

Bypass API rate limits by rotating VPN servers. Works with any OpenVPN-compatible VPN (ProtonVPN, NordVPN, Mullvad, etc.). Automatically rotates to new server every N requests for fresh IPs. Use for high-volume scraping, government APIs, geo-restricted data.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Bypass API rate limits by rotating VPN servers. Works with any OpenVPN-compatible VPN (ProtonVPN, NordVPN, Mullvad, etc.). Automatically rotates to new server every N requests for fresh IPs. Use for high-volume scraping, government APIs, geo-restricted data.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md, providers/mullvad.md, providers/nordvpn.md, providers/protonvpn.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

VPN Rotate Skill

Rotate VPN servers to bypass API rate limits. Works with any OpenVPN-compatible VPN.

1. Run Setup Wizard

./scripts/setup.sh This will: Check OpenVPN is installed Help you configure your VPN provider Set up passwordless sudo Test the connection

2. Manual Setup

If you prefer manual setup: # Install OpenVPN sudo apt install openvpn # Create config directory mkdir -p ~/.vpn/servers # Download .ovpn files from your VPN provider # Put them in ~/.vpn/servers/ # Create credentials file echo "your_username" > ~/.vpn/creds.txt echo "your_password" >> ~/.vpn/creds.txt chmod 600 ~/.vpn/creds.txt # Enable passwordless sudo for openvpn echo "$USER ALL=(ALL) NOPASSWD: /usr/sbin/openvpn, /usr/bin/killall" | sudo tee /etc/sudoers.d/openvpn

Decorator (Recommended)

from scripts.decorator import with_vpn_rotation @with_vpn_rotation(rotate_every=10, delay=1.0) def scrape(url): return requests.get(url).json() # Automatically rotates VPN every 10 calls for url in urls: data = scrape(url)

VPN Class

from scripts.vpn import VPN vpn = VPN() # Connect vpn.connect() print(vpn.get_ip()) # New IP # Rotate (disconnect + reconnect to different server) vpn.rotate() print(vpn.get_ip()) # Different IP # Disconnect vpn.disconnect()

Context Manager

from scripts.vpn import VPN vpn = VPN() with vpn.session(): # VPN connected for url in urls: vpn.before_request() # Handles rotation data = requests.get(url).json() # VPN disconnected

CLI

python scripts/vpn.py connect python scripts/vpn.py status python scripts/vpn.py rotate python scripts/vpn.py disconnect python scripts/vpn.py ip

Decorator Options

@with_vpn_rotation( rotate_every=10, # Rotate after N requests delay=1.0, # Seconds between requests config_dir=None, # Override config directory creds_file=None, # Override credentials file country=None, # Filter servers by country prefix (e.g., "us") auto_connect=True, # Connect automatically on first request )

VPN Class Options

VPN( config_dir="~/.vpn/servers", creds_file="~/.vpn/creds.txt", rotate_every=10, delay=1.0, verbose=True, )

Recommended Settings

API Aggressivenessrotate_everydelayAggressive (Catastro, LinkedIn)52.0sStandard101.0sLenient20-500.5s

Files

vpn-rotate-skill/ โ”œโ”€โ”€ SKILL.md # This file โ”œโ”€โ”€ README.md # Overview โ”œโ”€โ”€ scripts/ โ”‚ โ”œโ”€โ”€ vpn.py # VPN controller โ”‚ โ”œโ”€โ”€ decorator.py # @with_vpn_rotation โ”‚ โ””โ”€โ”€ setup.sh # Setup wizard โ”œโ”€โ”€ examples/ โ”‚ โ””โ”€โ”€ catastro.py # Spanish property API example โ””โ”€โ”€ providers/ โ”œโ”€โ”€ protonvpn.md # ProtonVPN setup โ”œโ”€โ”€ nordvpn.md # NordVPN setup โ””โ”€โ”€ mullvad.md # Mullvad setup

"sudo: a password is required"

Run the setup script or manually add sudoers entry: echo "$USER ALL=(ALL) NOPASSWD: /usr/sbin/openvpn, /usr/bin/killall" | sudo tee /etc/sudoers.d/openvpn

Connection fails

Check credentials are correct Test manually: sudo openvpn --config ~/.vpn/servers/server.ovpn --auth-user-pass ~/.vpn/creds.txt Check VPN provider account is active

Still getting blocked

Lower rotate_every (try 5 instead of 10) Increase delay (try 2-3 seconds) Check if API blocks VPN IPs entirely

No .ovpn files

Download from your VPN provider: ProtonVPN: https://protonvpn.com/support/vpn-config-download/ NordVPN: https://nordvpn.com/ovpn/ Mullvad: https://mullvad.net/en/account/#/openvpn-config

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • providers/mullvad.md Docs
  • providers/nordvpn.md Docs
  • providers/protonvpn.md Docs
  • README.md Docs