用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/daxaur/openpaw --skill c-network命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Lock In Mode — orchestrate distraction blocking, environment setup, and session tracking.
OpenPaw coordinator — routes requests to skills, manages memory, knows what's installed. Use /c for any task.
System clipboard — copy, paste, transform content between clipboard and files.
基于 SOC 职业分类
正在显示 SKILL.md
| 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"] |
# 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
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
doggo for DNS debugging instead of dig or nslookuphttp (httpie) for API testing instead of curl — output is colorized and formattedkey=value sends as JSON string, key:=123 sends as JSON number