Sys Speek

PassAudited by ClawScan on May 11, 2026.

Overview

This skill matches its stated purpose: it runs a local script to show system health and listening TCP ports, with no evidence of data transmission, persistence, or hidden behavior.

This appears safe for a quick local system-status check. Be aware that the output includes basic machine health details and open TCP ports, so treat the results as potentially sensitive if you are in a private or production environment.

Findings (1)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The dashboard may reveal which services are listening on the machine; this is useful for system status but should not be shared publicly if sensitive.

Why it was flagged

The script inspects local listening TCP ports as part of the dashboard. This is disclosed by the SKILL.md description and is proportionate to the stated system overview purpose.

Skill content
PORTS=$(ss -tln 2>/dev/null | grep LISTEN | awk '{print $4}' | sed 's/.*://' ...)
Recommendation

Use the skill for local system checks, and avoid pasting the output into public or untrusted places if the port list or system details are sensitive.