ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年5月6日 13:11
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill network-diagnosticsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | network-diagnostics |
| description | Windows net diag: ping, traceroute, DNS, port scan (PowerShell) |
| category | windows |
| version | 1.0.0 |
| tags | network, diagnostics, ping, dns, traceroute, port, connectivity, powershell, netstat |
| license | Apache-2.0 |
Diagnose Windows network connectivity — test connections, resolve DNS, trace routes, check open ports, and inspect network interfaces — all from PowerShell.
Test-Connection -ComputerName "8.8.8.8" -Count 4
Test-Connection -ComputerName "google.com" -Count 4 | Select-Object Address, Latency, Status
Test-NetConnection -ComputerName "github.com" -Port 443
Test-NetConnection -ComputerName "smtp.gmail.com" -Port 587
Get-NetIPAddress | Where-Object AddressFamily -eq 'IPv4' |
Select-Object InterfaceAlias, IPAddress, PrefixLength |
Where-Object IPAddress -notmatch '^169|^127'
Get-NetRoute -DestinationPrefix "0.0.0.0/0" |
Select-Object InterfaceAlias, NextHop, RouteMetric
Resolve-DnsName "google.com"
Resolve-DnsName "google.com" -Type MX # Mail records
Resolve-DnsName "google.com" -Type TXT # TXT records
Clear-DnsClientCache
Test-NetConnection -ComputerName "8.8.8.8" -TraceRoute
Get-NetTCPConnection -State Established |
Select-Object LocalAddress, LocalPort, RemoteAddress, RemotePort, State |
Sort-Object LocalPort
$port = 3000
$conn = Get-NetTCPConnection -LocalPort $port -ErrorAction SilentlyContinue
if ($conn) {
$proc = Get-Process -Id $conn.OwningProcess -ErrorAction SilentlyContinue
Write-Host "Port $port is used by: $($proc.Name) (PID $($conn.OwningProcess))"
} else {
Write-Host "Port $port is free"
}
netsh wlan show interfaces | Select-String "Signal|SSID|State"
# Requires elevated session
# netsh int ip reset
# netsh winsock reset
Write-Host "To reset network stack, run the above commands in an elevated PowerShell session"
"Can I reach GitHub from this machine?"
→ Test-NetConnection -ComputerName "github.com" -Port 443 — checks both DNS resolution and TCP handshake.
"What's my local IP and gateway?"
→ Get-NetIPAddress for IP + Get-NetRoute -DestinationPrefix "0.0.0.0/0" for gateway.
"Which process is listening on port 8080?"
→ Find the OwningProcess from Get-NetTCPConnection and cross-reference with Get-Process.
Test-NetConnection -TraceRoute can be slow (30+ seconds) for distant hosts — warn the userGet-NetTCPConnection shows socket-level connections; some processes use UDP (Get-NetUDPEndpoint)Clear-DnsClientCache only clears the local resolver cache