skills$openclaw/dns-lookup
xejrax383

by xejrax

dns-lookup – OpenClaw Skill

dns-lookup is an OpenClaw Skills integration for data analytics workflows. Resolve hostnames to IP addresses using `dig` from bind-utils.

383 stars6.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namedns-lookup
descriptionResolve hostnames to IP addresses using `dig` from bind-utils. OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/dns-lookup
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/dns-lookup
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains dns-lookup in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
272 B
CLAUDE.md
303 B
SKILL.md
1017 B
SKILL.md

name: dns-lookup description: "Resolve hostnames to IP addresses using dig from bind-utils." metadata: { "openclaw": { "emoji": "🌐", "requires": { "bins": ["dig"] }, "install": [ { "id": "dnf", "kind": "dnf", "package": "bind-utils", "bins": ["dig"], "label": "Install bind-utils (dnf)", }, ], }, }

DNS Lookup Skill

Resolve hostnames to IP addresses using dig. Provided by the bind-utils package.

Basic Lookup

Resolve A records for a hostname:

dig example.com A +short

IPv6 Lookup

Resolve AAAA records:

dig example.com AAAA +short

Full DNS Record

Get the full DNS response with authority and additional sections:

dig example.com ANY

Reverse Lookup

Find the hostname for an IP address:

dig -x 93.184.216.34 +short

Install

sudo dnf install bind-utils
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install dns-lookup?

Run openclaw add @xejrax/dns-lookup in your terminal. This installs dns-lookup into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xejrax/dns-lookup. Review commits and README documentation before installing.