deploy-nvblox

deploy-nvblox is a skill for Claude Code, Codex from Seeed-Projects/Seeed-Jetson-DevelopTool. It costs 92 tokens per session (1,864 once invoked), scanned B, original, MIT.

A deployment guide for NVBlox, software that builds dense 3D maps from an RGB-D camera, which captures both color and depth, on a Jetson computer. It connects an Orbbec camera to Isaac ROS, NVIDIA's robotics software framework.

In plain words
What is it for?
Installing the required packages, Docker, Isaac ROS, and the Orbbec ROS2 software, then building NVBlox for real-time 3D meshes and navigation data on a Jetson AGX Orin. It requires JetPack 6.2, ROS2 Humble, an Orbbec RGB-D camera, and an NGC account.
Why use it?
It brings together Docker, camera support, ROS2, and the NVBlox workspace so a robot can use camera data for mapping and obstacle detection. This removes much of the manual setup across those components.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/seeed-projects/seeed-jetson-developtool/deploy-nvblox
Any agent
npx skills add Seeed-Projects/Seeed-Jetson-DevelopTool --skill deploy-nvblox
Clone the repo
git clone --depth 1 https://github.com/Seeed-Projects/Seeed-Jetson-DevelopTool

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deploy-nvblox

README.md
[![agentmods](https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/deploy-nvblox.svg)](https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-nvblox)
Your own site
<a href="https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-nvblox"><img src="https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/deploy-nvblox.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,864 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00092 $0.01864
Opus 5 $0.00046 $0.00932
Sonnet 5 $0.00018 $0.00373
Haiku 4.5 $0.00009 $0.00186

Measured 5d ago against content hash 1f6209994b28, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

deploy-nvblox scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt update

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
seeed_jetson_develop/skills/openclaw/deploy-nvblox/SKILL.md · 212 lines

How it starts

The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deploy NVBlox with Orbbec Camera on Jetson AGX Orin

NVBlox builds dense 3D maps in real-time from RGB-D camera input for robotic navigation. This skill deploys it on AGX Orin with Isaac ROS and Orbbec camera support.


Execution model

Run one phase at a time. After each phase:

  • Relay all output to the user.
  • If output contains [STOP] → stop, consult the failure decision tree.
  • If output ends with [OK] → tell the user "Phase N complete" and proceed.

Prerequisites

Requirement Detail
Hardware Jetson AGX Orin (e.g. reComputer J50)
JetPack 6.2
Camera Orbbec RGB-D camera (Gemini 2, 330 series, etc.)
ROS2 Humble installed on host
NGC account Required for Isaac ROS Docker image pull

Phase 1 — Install basic dependencies (~3 min)

sudo apt update
sudo apt-get install -y python3-pip nvidia-jetpack git-lfs
sudo pip3 install jetson-stats

[OK] when all packages install. [STOP] if apt fails.


Phase 2 — Install Docker CE (~5 min)

sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo systemctl enable docker && sudo systemctl start docker
sudo usermod -aG docker $USER

Reboot after adding user to docker group:

sudo reboot

Verify after reboot:

docker info

[OK] when docker info succeeds without sudo. [STOP] if Docker fails to start.


Phase 3 — Install Isaac ROS 3.2 (~10–20 min)

mkdir -p ~/workspaces/isaac_ros-dev/src
echo "export ISAAC_ROS_WS=\${HOME}/workspaces/isaac_ros-dev/" >> ~/.bashrc
source ~/.bashrc
cd ${ISAAC_ROS_WS}/src
git clone -b release-3.2 https://github.com/NVIDIA-ISAAC-ROS/isaac_ros_common.git

Pull and enter the Isaac ROS Docker container:

Read the full file on GitHub · 212 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 212 lines · 92 tokens per session scan B 1f6209994b28

Subscribe to this mod's changes

deploy-nvblox is a skill published in the GitHub repository Seeed-Projects/Seeed-Jetson-DevelopTool (54 stars, last pushed yesterday), licensed MIT. It adds 92 tokens to every session and 1,864 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

integrated-browser

Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.

microsoft/vscode · 68 tokens

project-snmp-profiles-authoring

Use when editing Netdata SNMP profile YAMLs, topology SNMP profiles, ddsnmp profile parsing, or profile-format documentation. Requires checking source MIB field accessibility, especially MAX-ACCESS not-accessible INDEX objects, before adding or changing profile symbols.

netdata/netdata · 60 tokens

hyperpod-version-checker

Check and compare software component versions on SageMaker HyperPod cluster nodes - NVIDIA drivers, CUDA toolkit, cuDNN, NCCL, EFA, AWS OFI NCCL, GDRCopy, MPI, Neuron SDK (Trainium/Inferentia), Python, and PyTorch. Use when checking component versions, verifying CUDA/driver compatibility, detecting version mismatches…

awslabs/agent-plugins · 120 tokens

unifi-protect

How to manage UniFi Protect cameras and NVR — view cameras, smart detections, Find Anything detection search, recordings, snapshots, lights, sensors, Known Faces, license plates, and the Alarm Manager. Use this skill when the user mentions UniFi cameras, security cameras, NVR, recordings, motion detection, person…

sirkirby/unifi-mcp · 112 tokens

pcbway

PCBWay PCB fabrication and assembly — turnkey/consigned assembly, design rules, ordering workflow. Alternative to JLCPCB for manufacturing. Use with KiCad. Use this skill when the user mentions PCBWay, needs turnkey assembly (PCBWay sources parts by MPN), has parts not available on LCSC, needs assembled boards with…

aklofas/kicad-happy · 119 tokens

speaker-recognizer

Self-enroll a voice for speaker recognition. Activate ONLY when (a) a mic Unknown Speaker: turn carries a clear self-introduction ("I'm X", "my name is X", "tôi là X"...), (b) prior same-tag [voice:voiceN] turns can be combined with a now-named turn, (c) a Telegram voice-note carries an intro, OR (d) the user asks to…

autonomous-ai/autonomous-os · 132 tokens