deploy-dia

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

A deployment guide for Dia, a speech-generation model that turns text into expressive audio with multiple speakers, on a reComputer Jetson. It launches the model through a Gradio web interface, a browser-based control screen.

In plain words
What is it for?
Installing the required ARM64 Python packages, downloading the Dia code, adjusting its project configuration, and launching a web UI for generating multi-speaker speech. It requires 8 GB or more of RAM and JetPack 6.1 or later.
Why use it?
It handles the Jetson-specific installation of PyTorch, audio libraries, and Triton, which are needed to run the model on its processor architecture. It also prepares the source code and starts the interface.

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-dia
Any agent
npx skills add Seeed-Projects/Seeed-Jetson-DevelopTool --skill deploy-dia
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-dia

README.md
[![agentmods](https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/deploy-dia.svg)](https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-dia)
Your own site
<a href="https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/deploy-dia"><img src="https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/deploy-dia.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,063 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00078 $0.01063
Opus 5 $0.00039 $0.00531
Sonnet 5 $0.00016 $0.00213
Haiku 4.5 $0.00008 $0.00106

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

Security

Grade B, and why

deploy-dia scanned grade B with 1 finding 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 4d 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.

| Gradio WebUI not accessible remotely | Confirm `GRADIO_SERVER_NAME=0.0.0.0` is set. Check firewall: `sudo ufw allow 7860`. |
seeed_jetson_develop/skills/openclaw/deploy-dia/SKILL.md · 114 lines

How it starts

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

Deploy Dia TTS on reComputer Jetson

Dia is an expressive neural speech generation model that produces natural multi-speaker audio from text. This skill deploys it on Jetson with a Gradio web interface.


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 to the next phase.

Prerequisites

Requirement Detail
Jetson device 8GB+ RAM (e.g. reComputer J4012 with Orin NX 16GB)
JetPack 6.1 or later
Python 3.10 with pip
Network Internet access for downloading wheels and cloning repo

Phase 1 — Download and install aarch64 PyTorch wheels (~5–10 min)

Download the following wheels from the Seeed shared drive:

  • torch-2.7.0-cp310-cp310-linux_aarch64.whl
  • torchaudio-2.7.0-cp310-cp310-linux_aarch64.whl
  • triton-3.3.0-cp310-cp310-linux_aarch64.whl

Install them:

pip install torch-2.7.0-cp310-cp310-linux_aarch64.whl
pip install torchaudio-2.7.0-cp310-cp310-linux_aarch64.whl
pip install triton-3.3.0-cp310-cp310-linux_aarch64.whl

Verify:

python3 -c "import torch; print(torch.__version__); print('CUDA:', torch.cuda.is_available())"

[OK] when torch imports and CUDA is available. [STOP] if wheel install fails.


Phase 2 — Clone Dia and patch dependencies (~2 min)

git clone https://github.com/nari-labs/dia.git
cd dia

Edit pyproject.toml to comment out the torch, torchaudio, and triton dependency lines (lines 19–22) since we installed custom Jetson wheels:

sed -i 's/^\(\s*"torch.*\)/#\1/' pyproject.toml
sed -i 's/^\(\s*"torchaudio.*\)/#\1/' pyproject.toml
sed -i 's/^\(\s*"triton.*\)/#\1/' pyproject.toml

Install Dia and fix numpy:

pip install -e .
pip install numpy==1.26.4

[OK] when pip install -e . completes without error. [STOP] if dependency resolution fails.

Read the full file on GitHub · 114 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. 4d ago First seen · 114 lines · 78 tokens per session scan B 832a3cc2f651

Subscribe to this mod's changes

deploy-dia is a skill published in the GitHub repository Seeed-Projects/Seeed-Jetson-DevelopTool (54 stars, last pushed yesterday), licensed MIT. It adds 78 tokens to every session and 1,063 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

media-ingest

Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.

garrytan/gbrain · 52 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-cut

剪辑中文口播原素材:逐词转录、词典修字出修字表、五轮扫描找口误与重复、汇总表与重复句子表、打开 Studio 让用户复核、复盘沉淀用户偏好与词典。只产出一份已复核的删词账本,不切媒体、不做字幕、不做分镜动画。用户说剪口播、处理口误、生成口播基础素材、继续剪口播,或确认卡回传 action=returncutreview 时使用。不要用于执行物理剪切、导出剪后视频、单独安装、单独打开工作台或口播分镜成片。.

Agentchengfeng/chengfeng-videocut-skills · 154 tokens

chengfeng-check-updates

剪辑环境的唯一管理者:就绪检查(skills 是否最新 → Runtime 是否配套)、Skills 更新激活、Runtime 安装与体检。用户说检查更新、安装剪辑环境、装播放器、检查剪辑环境、剪辑环境就绪了吗、配置转录凭证时使用;业务 Skill(剪口播/字幕/画面/导出)第 0 步也引用本 Skill 的就绪检查。不用于剪辑、字幕、画面、导出本身或项目数据迁移。.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens

infographic-template-updater

Update template catalogs and UI prompts after adding new infographic templates (src/templates/.ts), including SKILL.md template list, site gallery template mappings, and the AIPlayground prompt list.

antvis/Infographic · 43 tokens