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.
npx agentmods add skills/seeed-projects/seeed-jetson-developtool/deploy-frigatenpx skills add Seeed-Projects/Seeed-Jetson-DevelopTool --skill deploy-frigategit clone --depth 1 https://github.com/Seeed-Projects/Seeed-Jetson-DevelopToolWrote 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.
[](https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-frigate)<a href="https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-frigate"><img src="https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/deploy-frigate.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00066 | $0.01373 |
| Opus 5 | $0.00033 | $0.00687 |
| Sonnet 5 | $0.00013 | $0.00275 |
| Haiku 4.5 | $0.00007 | $0.00137 |
Grade B, and why
deploy-frigate 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-get update && sudo apt-get upgrade -y Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
apt-transport-https ca-certificates curl software-properties-common How it starts
The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deploy Frigate on Jetson
Frigate is an open-source NVR with real-time AI object detection. This skill deploys it on Jetson via Docker with TensorRT-accelerated YOLOv7 for IP camera surveillance.
Execution model
Run one phase at a time. After each phase:
- Relay all output to the user.
- If output contains
[STOP]→ stop immediately, consult the failure decision tree. - If output ends with
[OK]→ tell the user "Phase N complete" and proceed.
Prerequisites
| Requirement | Detail |
|---|---|
| Jetson device | Nano, Xavier NX, or Orin series |
| JetPack | 5.x (e.g. 5.1.3) |
| Docker | Installed with NVIDIA runtime |
| IP Camera | RTSP-compatible (e.g. Dahua) |
| Storage | 32GB+ SD/eMMC/NVMe |
Phase 1 — Install Docker and dependencies (~5 min)
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y python3-pip python3-dev python3-venv \
build-essential libssl-dev libffi-dev git \
apt-transport-https ca-certificates curl software-properties-common
Install Docker:
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
Install Docker Compose:
sudo pip3 install docker-compose
docker-compose --version
Install NVIDIA Container Toolkit per https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html
[OK] when docker-compose --version prints a version. [STOP] if Docker install fails.
Phase 2 — Pull Frigate Docker image (~5–10 min)
docker pull ghcr.io/blakeblackshear/frigate:stable-tensorrt-jp5
Use stable-tensorrt-jp4 for JetPack 4.6 devices.
[OK] when pull completes. [STOP] if pull fails — check network and Docker permissions.
Phase 3 — Create Frigate configuration (~5 min)
mkdir -p ~/frigate/config ~/frigate/storage
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.
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.
- 5d ago First seen · 197 lines · 66 tokens per session scan B 49c296275a3d
deploy-frigate is a skill published in the GitHub repository Seeed-Projects/Seeed-Jetson-DevelopTool (54 stars, last pushed yesterday), licensed MIT. It adds 66 tokens to every session and 1,373 once invoked, about $0.0003 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.
Other skills, from other repositories
holoscan-install-container
Install Holoscan SDK via the NGC Docker container. Use for container-based installs; not for native apt/pip/Conda installs.
doca-urom-svc
Operate the DOCA UROM Service container on BlueField Arm for remote memory operations (puts, gets, atomics, collectives) enqueued by a paired host using doca-urom: pull the NGC image, choose the UCX component, size queues, configure Comch pairing, and align host and service versions. SECURITY: the service has no…
hsb-setup
Clone the latest NVIDIA Holoscan Sensor Bridge repo, ask which supported devkit is being used, configure the host per platform, build the correct demo container, run it, and verify HSB connectivity by pinging 192.168.0.2. Use for Holoscan Sensor Bridge setup, build, container launch, and first-connectivity bring-up.
holoscan-install-source
Build Holoscan SDK from source via the in-tree ./run script. Use only when published packages don't meet the user's needs.
dakota-image
OCI layer assembly, boot testing, installer boundaries, VM work, and local OTA verification for Dakota images.
xpu-container-run
Launch a Docker container with Intel GPU access on Linux. Encodes the correct combination of --device /dev/dri, render-group access, --ipc=host, ZEAFFINITYMASK pinning, Hugging Face cache mount, and --entrypoint /bin/bash for interactive use. Use when running any Intel-XPU container (vLLM-XPU, sglang-xpu, torch-XPU…