oo-ip2proxy for Openclaw

An AI agent skill leveraging the OOMOL CLI to query IP2Proxy for detecting proxy, VPN, and Tor exit node IP addresses securely.

oomol
v1.0.1
Jun 9, 2026
0
476
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install oo-ip2proxy

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install oo-ip2proxy using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is oo-ip2proxy?

The oo-ip2proxy skill is a robust integration designed for Openclaw Skills to identify proxy servers, VPNs, Tor exit nodes, and hosting IP addresses automatically. By leveraging the OOMOL-connected oo CLI, this skill abstracts away the complexities of manual API integration and raw token management, ensuring all credentials are safe and injected server-side.

Using this skill alongside other Openclaw Skills streamlines cybersecurity checks, user traffic auditing, and automated threat detection. It empowers developers to build secure, AI-driven networking workflows that adapt dynamically to traffic patterns without exposing sensitive API credentials.

oo-ip2proxy Use Cases

  • Detecting high-risk traffic originating from VPNs, Tor exit nodes, or public proxies in real time.
  • Enhancing automated user sign-up verifications within Openclaw Skills deployment workflows.
  • Triage and incident response validation by querying suspicious IP structures instantly.
  • Automating IP intelligence logging for analytical dashboard systems.

How oo-ip2proxy Works

  1. The AI agent initiates an IP query via the oo-ip2proxy connector.
  2. The system checks the action contract using oo connector schema to ensure the structure matches target schemas.
  3. The skill executes the IP2Proxy lookup action securely using the oo CLI.
  4. OOMOL injects the required API credentials server-side to maintain system integrity.
  5. The payload is evaluated, and structured JSON results return proxy status, country, and organization info back to the workflow.

oo-ip2proxy Setup

To get started with oo-ip2proxy, perform the following one-time setup steps:

  1. Install the CLI if not already present on your system:
curl -fsSL https://cli.oomol.com/install.sh | bash

For Windows PowerShell environments:

irm https://cli.oomol.com/install.ps1 | iex
  1. Authenticate with OOMOL:
oo auth login
  1. Connect IP2Proxy: Ensure your IP2Proxy credentials (API Key) are configured in the OOMOL Console at: https://console.oomol.com/app-connections?provider=ip2proxy

oo-ip2proxy Data Schema & Taxonomy

The oo-ip2proxy skill relies on a structured input-output format for executing CLI actions. Developers can inspect the exact live schemas at any time.

Command Structure

Parameter Description Required
--action The targeted action, currently lookup_ip Yes
--data JSON input payload string containing parameters like IP address Yes
--json Flag to return formatted JSON outputs No

Action Schema: lookup_ip

Input Parameter Type Description
ip string The target IPv4 or IPv6 address to evaluate

Sample Response Payload

{
  "data": {
    "ipAddress": "8.8.8.8",
    "isProxy": "no",
    "proxyType": "-",
    "countryCode": "US",
    "countryName": "United States",
    "regionName": "California",
    "cityName": "Mountain View",
    "isp": "Google LLC",
    "domain": "google.com",
    "usageType": "DCH",
    "asn": "15169",
    "as": "Google LLC",
    "lastSeen": "-",
    "threat": "-"
  },
  "meta": {
    "executionId": "exec_abc123xyz"
  }
}

oo-ip2proxy Advanced Features

  • Dynamic Action Inspection: Use the --action schema inspection flag to dynamically query input structures without hardcoded templates.
  • Zero-Trust Credential Management: Ensure absolute safety in multi-agent pipelines as no raw API keys are ever stored or processed locally within Openclaw Skills agent instances.
  • Universal Platform Compatibility: Runs cleanly across macOS, Linux, and Windows systems through the OOMOL CLI backend.
  • Execution Tracing: Leverage executionId metadata in downstream observability and monitoring services to audit agent lookups.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*