ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

my-ip-checker

Get both public (external) and local (internal) IP addresses using simple shell commands. Use when the user asks for their IP, public IP, or local network address.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/chenxinjie005/cxj-ip-2026
Or

My IP Checker

This skill discovers both the public (external) IP and the local (internal) IP of the current machine.

Step 1: Get public IP

Use a simple HTTPS endpoint that returns your public IP as plain text:

curl.exe -s https://ifconfig.me

If the service is blocked or slow, try:

curl.exe -s https://api.ipify.org

Step 2: Get local IPv4 address

On Windows (PowerShell or cmd):

ipconfig

Then filter the output for lines containing IPv4 地址 or IPv4 Address.

On Linux:

hostname -I

This typically returns one or more local IPs separated by spaces.

Usage notes

  • Use Step 1 when configuring firewalls, VPNs, or any external allowlist.
  • Use Step 2 when debugging LAN connectivity, port forwarding, or internal routing.
  • Prefer HTTPS endpoints and avoid adding API keys; these services are free and anonymous.

Metadata

Stars3840
Views0
Updated2026-04-06
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-chenxinjie005-cxj-ip-2026": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.