Automation & Ops ✓ NVIDIA · Official jetsondevice-diagnosticssystem-informationl4tpower-modebash

Jetson Device Info Snapshot

Capture a concise software, kernel, OS, and power-mode baseline from a running Jetson target.

FollowSkills review · FSRS-2.0
Not recommended
58/ 100 5-point scale 2.9 / 5
Trust22 / 25 · 4.4/5

The skill explicitly limits itself to local, read-only inspection of device-tree and version data plus standard CLIs; it does not access the network, change power settings, install packages, or modify files, and classifies the data as public. No clear overreach or red-line risk is present. Deducted 3 points because execution confirmation, runtime privilege boundaries, output-data protection, and rollback discussion are not explicit, even though the actions are read-only.

Reliability7 / 20 · 1.8/5

The ordered workflow, prerequisites, commands, and most missing-input fallbacks are clear, with a stable set of output fields. Static review cannot reproduce execution, and the nvpmodel pipeline may still exit successfully through awk, preventing the intended not-available fallback; output variation is also only printed verbatim. Deducted 3 points for an unverified failure-path defect and limited abnormal-input diagnostics.

Adaptability10 / 15 · 3.3/5

Audience, Jetson-local environment, intended scenarios, and the non-Jetson host case are clearly stated, giving the trigger good semantic precision. R36/R39 examples and minimal-environment fallbacks improve fit. Deducted 5 points because there is no Chinese-language output or usage guidance, and container, SSH, and model-variation boundaries are only lightly covered.

Convention9 / 15 · 3.0/5

SKILL.md provides structured metadata, version, license, prerequisites, inputs, outputs, examples, error handling, limitations, and troubleshooting; the skill card adds ownership and use-case information, while repository files provide licensing and publication/sync context. Deducted 6 points for version 0.0.1 without a changelog, nonspecific maintenance responsibility and update commitments, a low-level author-format finding, and an explicit demonstration-only positioning.

Effectiveness6 / 15 · 2.0/5

The core task is a six-field device baseline report with concrete labels, format, and examples, and the result should require only light review. The benchmark report records relevant task outcomes, but its source dataset is unavailable and static review cannot confirm actual execution. Deducted 1 point because the snippets do not fully show the final labeled-report assembly and the nvpmodel missing-command path may reduce completeness.

Verifiability4 / 10 · 2.0/5

The source includes auditable commands, expected outputs, four evaluation tasks, and a reported evaluation summary, providing limited traceability. However, the evaluation dataset is unavailable and there is no committed test suite or independent reproduction record for this skill. Deducted 1 point because the evidence is mainly repository documentation and an opaque summary, with limited coverage.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 55f18499943e
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • Run only on the Jetson target; the device-tree model and nvpmodel may be absent on a host PC or minimal container.
  • Fix missing-command detection in the nvpmodel pipeline and add tests for final report assembly; the evaluation report does not expose a reproducible dataset.
  • The skill is explicitly described as a demonstration and should not be treated as a production-grade or comprehensive hardware-health diagnostic.
  • The output includes model, software-version, and uptime information; despite being classified as public, handle it according to organizational asset-information policy.
See the full review method →

What does this skill do, and when should you use it?

Jetson Device Info Snapshot is a version 0.0.1 read-only Bash skill for producing a compact report from a live Jetson device. It reads the device-tree model, L4T release header, kernel version, uptime, and operating-system version, and queries the current power mode. It validates that execution is on a Jetson before collecting the report, while missing optional tools receive labeled fallbacks. The skill is best suited to baseline capture before performance, regression, or compatibility testing.

Reads and validates /proc/device-tree/model; reads the first line of /etc/nv_tegra_release; runs nvpmodel -q and joins its two output lines; runs uname -r and uptime -p; prefers lsb_release -ds and falls back to /etc/os-release; then prints a six-field report containing Model, L4T release, Power mode, Kernel, Uptime, and OS version.

  1. A Jetson performance engineer captures the device software stack and power mode before a benchmark run.
  2. A device-validation engineer checks whether a freshly flashed Jetson matches an expected L4T or JetPack version.
  3. A compatibility tester records model, kernel, OS, and power-mode details alongside test results.
  4. An operator managing Jetson devices over SSH needs a quick target-side baseline snapshot.

What are this skill's strengths and limitations?

Pros
  • Read-only inspection does not change power mode, files, or installed packages.
  • Captures key baseline fields covering hardware identity, L4T, kernel, uptime, OS, and power mode.
  • Missing nvpmodel or release utilities receive clear fallback messages.
  • The repository supplies an installation, synchronization, signing, and verification workflow.
Limitations
  • Full use requires a running Jetson target; execution on a host PC exits early.
  • It does not inspect GPU/CPU clocks, thermal state, or per-rail power.
  • nvpmodel output varies across L4T versions and is printed verbatim rather than parsed.
  • The supplied material provides no test suite, platform coverage, or execution-validation record.

How do you install this skill?

Install the specific skill with the repository README's skills CLI flow: npx skills add nvidia/skills --skill jetson-print-device-info --yes. You can add --agent codex or --agent claude-code to target a client. The supplied README does not document a manual folder-copy procedure.

How do you use this skill?

After installation, ask the agent something like “Print the device information and create a baseline report on this running Jetson.” Run it on the Jetson target itself, not the host PC. The agent should follow the SKILL.md sequence and print the specified six-line report.

FAQ

What happens if it runs on a host PC?
It checks /proc/device-tree/model. If the value does not contain a Jetson model string, it prints “Not running on a Jetson target” and exits early.
Does it change the active power mode?
No. It only queries the mode with nvpmodel -q and performs no configuration change.
Will a missing nvpmodel stop the report?
No. nvpmodel is optional; the skill prints “nvpmodel not available” and continues with the remaining fields.
Is installation or use paid?
The supplied source does not state a pricing policy; installation uses the npx skills CLI.

More skills from this repository

All from NVIDIA/skills

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Info Check

Verify Jetson BSP version, board configs, and rootfs state before flashing.

Automation & Ops ✓ NVIDIA · Official

Jetson Health Snapshot

Read-only diagnostics that consolidate a live Jetson’s hardware, resource, and service state.

Automation & Ops ✓ NVIDIA · Official

Jetson Headless Memory Optimizer

Reclaim memory on GUI-free Jetson devices through safe, reversible system-service changes.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Source Builder

Rebuild Jetson BSP device trees, kernels, and modules from source changes and produce a deployable artifact manifest.

Dev & Engineering ✓ NVIDIA · Official

Jetson PCIe Controller Customizer

Configure per-controller PCIe state, lane width, and link speed on custom Jetson Thor or Orin carriers.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Image Flasher

Safely flash a promoted Jetson BSP image onto a Jetson device in RCM mode.

Dev & Engineering ✓ NVIDIA · Official

Jetson USB Port Customization

Safely enable, disable, or change Jetson USB port roles through a kernel device-tree overlay.

Automation & Ops ✓ NVIDIA · Official

Jetson nvpmodel Power Mode Customizer

Safely customize Jetson BSP power modes, frequency caps, and the boot-default profile.

Dev & Engineering ✓ NVIDIA · Official

Jetson Memory Optimizer

Reclaim unused DRAM on headless or no-camera Jetson deployments.

Dev & Engineering ✓ NVIDIA · Official

Jetson CSI Camera Customization

Generate and validate kernel device-tree overlays for MIPI and GMSL cameras on custom Jetson Thor or Orin carriers.

Dev & Engineering ✓ NVIDIA · Official

Jetson Target Switcher

Switch the active Jetson target among existing platform profiles.

Dev & Engineering ✓ NVIDIA · Official

Jetson Target Platform Initializer

Create a Jetson target-platform profile for a reference devkit or custom carrier and update the active pointer.

Dev & Engineering ✓ NVIDIA · Official

Jetson Clock Customizer

Lock or cap Jetson CPU, GPU, and EMC clock behavior before flashing a BSP image.

Automation & Ops ✓ NVIDIA · Official

Jetson Package & Environment Advisor

Select Jetson-compatible containers and GPU package indexes by device architecture.

Dev & Engineering ✓ NVIDIA · Official

Jetson BSP Quick Start

Choose a Jetson BSP customization path and hand validated intake answers to the right setup skills.

Data & Analysis ✓ NVIDIA · Official

NVIDIA AI-Q Deep Research

Run deep research through a reachable local or self-hosted AI-Q Blueprint backend.

Dev & Engineering ✓ NVIDIA · Official

Jetson Fan Curve Customizer

Safely maintain nvfancontrol fan profiles and boot defaults in a Jetson BSP.

Automation & Ops ✓ NVIDIA · Official

Jetson LLM Serving

Deploy OpenAI-compatible LLM and VLM servers on Jetson with vLLM or SGLang.

Automation & Ops ✓ NVIDIA · Official

Jetson vLLM Speculative Decoding

Configure speculative decoding for lower single-stream generation latency on Jetson vLLM servers.

Dev & Engineering ✓ NVIDIA · Official

NVIDIA Skill Finder

Finds the right NVIDIA agent skill for product, hardware, and workflow requests.

Related skills