383★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.
Skill Snapshot
| name | dns-lookup |
| description | Resolve hostnames to IP addresses using `dig` from bind-utils. OpenClaw Skills integration. |
| owner | xejrax |
| repository | xejrax/dns-lookup |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @xejrax/dns-lookup |
| last updated | Feb 7, 2026 |
Maintainer

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
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.
