Jetson Tools

PassAudited by VirusTotal on May 9, 2026.

Overview

Type: OpenClaw Skill Name: jetson-tools Version: 1.0.0 The skill bundle provides standard system monitoring utilities for NVIDIA Jetson development boards. The script 'scripts/jetson-stats.sh' uses legitimate system commands like tegrastats, free, and df to report hardware status, and the SKILL.md instructions contain no malicious prompt injections or requests for sensitive data access.

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.