local-llm-text-to-image

local-llm-text-to-image is a skill for Claude Code, Codex from Seeed-Projects/Seeed-Jetson-DevelopTool. It costs 76 tokens per session (1,908 once invoked), scanned D, original, MIT.

A guide for generating images from text locally on a Jetson Orin NX 16GB using Stable Diffusion, an image-generation model. It covers KerasCV, Hugging Face diffusers, and NVIDIA’s containerized AUTOMATIC1111 WebUI, plus a Flask API.

In plain words
What is it for?
Use it to install a local text-to-image setup on JetPack 5.1.1 or newer, choose one of the three deployment paths, or expose generation through a Flask service.
Why use it?
It explains several ways to run image generation on the device and includes checks for the hardware, software, storage, and memory requirements.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to install a local text-to-image setup on JetPack 5.1.1 or newer, choose one of the three deployment paths, or expose generation through a Flask service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image
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.

Any agent
npx skills add Seeed-Projects/Seeed-Jetson-DevelopTool --skill local-llm-text-to-image
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 local-llm-text-to-image

README.md
[![agentmods](https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image/github.svg)](https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image)
Your own site
<a href="https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image"><img src="https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for local-llm-text-to-image

Your own site · 80×15
<a href="https://agentmods.dev/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image"><img src="https://agentmods.dev/badge/skills/seeed-projects/seeed-jetson-developtool/local-llm-text-to-image.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,908 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00076 $0.01908
Opus 5 $0.00038 $0.00954
Sonnet 5 $0.00015 $0.00382
Haiku 4.5 $0.00008 $0.00191

Measured 10d ago against content hash 5fa6380144e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade D, and why

local-llm-text-to-image scanned grade D with 3 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 10d 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 install python3.8-venv

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

| Model download fails | Check disk space: `df -h`. Clear cache: `rm -rf ~/.cache/huggingface`. |

Makes network callslowCapability

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

wget -P $MODEL_DIR https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors
seeed_jetson_develop/skills/openclaw/local-llm-text-to-image/SKILL.md · 216 lines

How it starts

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

Text-to-Image with Stable Diffusion on Jetson

Generate images from text prompts locally on Jetson using Stable Diffusion. Three deployment paths: KerasCV with TensorFlow, Hugging Face diffusers with PyTorch, and NVIDIA's containerized AUTOMATIC1111 WebUI.


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 Orin NX 16GB (e.g. reComputer J4012)
JetPack 5.1.1+
Storage ~20 GB free (models are large)
RAM tips Disable desktop GUI to save ~800 MB. Consider disabling ZRAM and using swap.

Path A — KerasCV Stable Diffusion

Phase A1 — Create virtual environment and install TensorFlow (~10 min)

sudo apt install python3.8-venv
python3 -m venv kerasStableEnvironment
source kerasStableEnvironment/bin/activate
cd kerasStableEnvironment
pip install -U pip
pip install -U numpy grpcio absl-py py-cpuinfo psutil portpicker six mock requests gast h5py astor termcolor protobuf keras-applications keras-preprocessing wrapt google-pasta setuptools testresources

Install TensorFlow for your JetPack version (example for JP 5.1.1):

pip install --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v511 tensorflow==2.12.0+nv23.05

Verify:

python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"

[OK] when GPU device is listed.

Phase A2 — Install PyTorch and KerasCV (~5 min)

sudo apt install libopenblas-dev
pip install --no-cache https://developer.download.nvidia.com/compute/redist/jp/v511/pytorch/torch-2.0.0+nv23.05-cp38-cp38-linux_aarch64.whl
pip install keras-cv==0.5.1 keras==2.12.0 Pillow

Verify PyTorch CUDA:

python -c "import torch; print(torch.cuda.is_available())"

Read the full file on GitHub · 216 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. 10d ago First seen · 216 lines · 76 tokens per session scan D 5fa6380144e9

Subscribe to this mod's changes

local-llm-text-to-image is a skill published in the GitHub repository Seeed-Projects/Seeed-Jetson-DevelopTool (54 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 1,908 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, recursive force delete, 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

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

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

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

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens