Eternal Network Diag

v1.0.0

Perform network diagnostics including ping, DNS resolution, TCP port checks, and traceroute for specified hosts.

0· 110·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for eternal0404/eternal-network-diag.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Eternal Network Diag" (eternal0404/eternal-network-diag) from ClawHub.
Skill page: https://clawhub.ai/eternal0404/eternal-network-diag
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install eternal-network-diag

ClawHub CLI

Package manager switcher

npx clawhub@latest install eternal-network-diag
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say network diagnostics and the included script implements ping-style checks, DNS lookups, TCP port checks, and traceroute. There are no unrelated environment variables, binaries, or config paths required.
Instruction Scope
SKILL.md instructs running the local script with host arguments. The script only performs network operations against the user-specified target(s) and does not read files, access environment secrets, or transmit data to third-party endpoints.
Install Mechanism
No install spec is present (instruction-only with a bundled script). The skill does not download remote artifacts or run an installer; it relies on the local Python script and system utilities for ping/traceroute as fallbacks.
Credentials
The skill does not request any environment variables, credentials, or config paths. All network activity is limited to hosts supplied by the user at runtime.
Persistence & Privilege
always is false and the skill does not modify agent configuration or request permanent presence. Autonomous invocation is permitted by platform default but the skill does not claim elevated privileges.
Assessment
This skill is internally consistent for doing network diagnostics. Before installing: be aware it will run ping/traceroute/subprocesses and open TCP connections to whatever host you pass it (don’t point it at hosts you are not permitted to test). The source and homepage are unknown, but the full script is included for review — if you need stricter assurance, inspect the script locally or run it in an isolated environment (or container). Note: ping/traceroute behavior and flags may vary by OS; the script falls back to socket checks when those utilities are absent.

Like a lobster shell, security has layers — review code before you run it.

latestvk976hxkyeq8bedfs5hefk1pg3d83yvzs
110downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

network-diag

Run network diagnostics including ping, DNS resolution, port checks, and traceroute.

Usage

# Quick connectivity check
python3 scripts/netdiag.py check google.com

# Check if a port is open
python3 scripts/netdiag.py port example.com 443

# DNS resolution
python3 scripts/netdiag.py dns example.com

# Full diagnostic report
python3 scripts/netdiag.py full example.com

Commands

  • check <host> — Ping-style connectivity check
  • port <host> <port> — Check if a TCP port is open
  • dns <host> — Resolve DNS for a hostname
  • full <host> — Run all diagnostics on a host

Comments

Loading comments...