Agent skill
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-network
SKILL.md
Networking
doggo (DNS client)
# Basic DNS lookup
doggo example.com
# Specific record type
doggo example.com MX
doggo example.com AAAA
doggo example.com TXT
doggo example.com NS
doggo example.com CNAME
# Use specific nameserver
doggo example.com --nameserver 1.1.1.1
doggo example.com --nameserver 8.8.8.8
# DNS over HTTPS
doggo example.com --class IN --type A --nameserver https://cloudflare-dns.com/dns-query
# JSON output
doggo example.com --json
httpie (HTTP client)
Human-friendly alternative to curl:
# GET request
http GET api.example.com/users
# POST with JSON body
http POST api.example.com/users name=John email=john@example.com
# Headers
http GET api.example.com Authorization:"Bearer token123"
# Download file
http --download https://example.com/file.zip
# Form upload
http --form POST api.example.com file@photo.jpg
# With auth
http -a user:password GET api.example.com/protected
# Follow redirects
http --follow GET example.com
# Show only response headers
http --headers GET example.com
# Verbose (show request + response)
http --verbose GET example.com
Guidelines
- Use
doggofor DNS debugging instead ofdigornslookup - Use
http(httpie) for API testing instead of curl — output is colorized and formatted - For POST requests, httpie auto-detects JSON vs form data
key=valuesends as JSON string,key:=123sends as JSON number
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-video
Download videos, extract audio, convert formats, and clip segments using `yt-dlp` and `ffmpeg`. Supports YouTube, Vimeo, and hundreds of other sites.
Didn't find tool you were looking for?