Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill network명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
> Use when this capability is needed.
Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.
Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | network |
| description | > Use when this capability is needed. |
Before running commands, detect the OS and load the matching reference for platform-specific syntax:
references/linux.md (ss, ip, iptables/nftables, iproute2)references/macos.md (lsof, ifconfig, pfctl, networkQuality)references/windows.md (PowerShell: Test-NetConnection, Get-NetTCPConnection)OS detection:
uname -s 2>/dev/null || echo Windows
| Task | Command |
|---|---|
| Check host reachability | ping -c 4 host |
| Trace route to host | traceroute host |
| DNS lookup | dig +short host |
| Reverse DNS | dig -x IP |
| Check specific port | nc -zv host port |
| HTTP status | curl -sI -o /dev/null -w "%{http_code}" URL |
| SSL certificate | openssl s_client -connect host:443 </dev/null |
dig +short hostping -c 2 hostnc -zv -w 3 host 443curl -sI -o /dev/null -w "%{http_code}" https://hostopenssl s_client -connect host:443 </dev/null 2>/dev/null | openssl x509 -noout -checkend 0dig +stats host | grep "Query time"ping -c 10 hostmtr -r -c 10 host (or traceroute host)# Response headers
curl -sI https://host
# Status code only
curl -s -o /dev/null -w "%{http_code}" https://host
# Full verbose debug
curl -v https://host 2>&1
# Follow redirects
curl -sIL https://host
# Timing breakdown
curl -s -o /dev/null -w "\
DNS: %{time_namelookup}s\n\
Connect: %{time_connect}s\n\
TLS: %{time_appconnect}s\n\
TTFB: %{time_starttransfer}s\n\
Total: %{time_total}s\n\
Status: %{http_code}\n\
Size: %{size_download} bytes\n" https://host
# Resolve to specific IP (bypass DNS)
curl --resolve host:443:93.184.216.34 https://host
# Test specific Host header
curl -s -H "Host: host" http://10.0.0.1/
# Certificate details
openssl s_client -connect host:443 </dev/null 2>/dev/null | \
openssl x509 -noout -subject -issuer -dates
# Expiration check
openssl s_client -connect host:443 </dev/null 2>/dev/null | \
openssl x509 -noout -enddate
# Full certificate chain
openssl s_client -connect host:443 -showcerts </dev/null
# TLS version check
openssl s_client -connect host:443 -tls1_2 </dev/null 2>&1 | head -5
openssl s_client -connect host:443 -tls1_3 </dev/null 2>&1 | head -5
# Quick SSL check via curl
curl -vI https://host 2>&1 | grep -E '^\*'
| Record | Purpose |
|---|---|
| A / AAAA | IPv4 / IPv6 address |
| MX | Mail exchange server |
| NS | Authoritative name server |
| TXT | SPF, DKIM, DMARC, verification |
| CNAME | Alias to another domain |
| SOA | Zone authority info |
| SRV | Service location (port + host) |
| CAA | Certificate authority authorization |
| PTR | Reverse DNS (IP → hostname) |
ping uses ICMP — some hosts block it; a failed ping does not mean the host is downtraceroute uses UDP on Linux, ICMP on macOS — use OS-specific reference for flagsdig is preferred over nslookup for scripting (predictable output)ss, macOS uses lsof, Windows uses Get-NetTCPConnection-W, -w, --connect-timeout) in scriptsSource: bug-ops/zeph — distributed by TomeVault.