<< All versions
Skill v1.0.1
currentAutomated scan100/100daxaur/openpaw/c-network
2 files
──Details
PublishedMay 30, 2026 at 10:37 PM
Content Hashsha256:3e482eb74b6662c7...
Git SHAa2562d1c5cb2
Bump Typepatch
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 73 lines · 1.6 KB
version: "1.0.1" name: c-network description: DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal. tags: [dns, http, networking, api]
Networking
doggo (DNS client)
bash
# Basic DNS lookupdoggo example.com# Specific record typedoggo example.com MXdoggo example.com AAAAdoggo example.com TXTdoggo example.com NSdoggo example.com CNAME# Use specific nameserverdoggo example.com --nameserver 1.1.1.1doggo example.com --nameserver 8.8.8.8# DNS over HTTPSdoggo example.com --class IN --type A --nameserver https://cloudflare-dns.com/dns-query# JSON outputdoggo example.com --json
httpie (HTTP client)
Human-friendly alternative to curl:
bash
# GET requesthttp GET api.example.com/users# POST with JSON bodyhttp POST api.example.com/users name=John email=john@example.com# Headershttp GET api.example.com Authorization:"Bearer token123"# Download filehttp --download https://example.com/file.zip# Form uploadhttp --form POST api.example.com file@photo.jpg# With authhttp -a user:password GET api.example.com/protected# Follow redirectshttp --follow GET example.com# Show only response headershttp --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