Jetson Tools

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If invoked, the skill can display local hardware, memory, disk, and GPU/thermal status information from the device.

Why it was flagged

The script runs local system-inspection commands and tegrastats. This exposes device status information, but it is read-only and directly aligned with the stated monitoring purpose.

Skill content
cat /proc/cpuinfo | grep "model name" | head -1 | cut -d: -f2
free -h
df -h /
tegrastats --interval 1000 --stop 2>/dev/null | head -5
Recommendation

Use it on intended Jetson devices and avoid sharing command output publicly if hardware or system details are sensitive.

What this means

The skill may not work unless the expected Jetson tools are already installed and available on the system.

Why it was flagged

The skill documentation names required Jetson utilities, while the registry metadata declares no required binaries and there is no install spec. This is an under-declared dependency issue, not evidence of malicious behavior.

Skill content
## 依赖

- tegrastats
- jetson_release
Recommendation

Install or verify Jetson utilities from trusted NVIDIA or OS package sources before relying on the skill.