stable-diffusion

stable-diffusion is a skill for Claude Code, Codex from aivrar/portable-hermes-agent. It costs 18 tokens per session (3,292 once invoked), scanned A, a copy of stable-diffusion, MIT.

An open-source toolkit for creating images from text and transforming existing images. It supports tasks such as filling masked areas, extending images, and creating variations.

In plain words
What is it for?
Use it for text-to-image generation, image editing, inpainting, outpainting, style changes, and custom model workflows.
Why use it?
It lets developers run and customise image-generation workflows through code instead of relying only on a hosted image editor or service.

Skill for Claude CodeCodex

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

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/aivrar/portable-hermes-agent/stable-diffusion
Any agent
npx skills add aivrar/portable-hermes-agent --skill stable-diffusion
Clone the repo
git clone --depth 1 https://github.com/aivrar/portable-hermes-agent

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 stable-diffusion

README.md
[![agentmods](https://agentmods.dev/badge/skills/aivrar/portable-hermes-agent/stable-diffusion.svg)](https://agentmods.dev/skills/aivrar/portable-hermes-agent/stable-diffusion)
Your own site
<a href="https://agentmods.dev/skills/aivrar/portable-hermes-agent/stable-diffusion"><img src="https://agentmods.dev/badge/skills/aivrar/portable-hermes-agent/stable-diffusion.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,292 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00018 $0.03292
Opus 5 $0.00009 $0.01646
Sonnet 5 $0.00004 $0.00658
Haiku 4.5 $0.00002 $0.00329

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

Security

Grade A, and why

stable-diffusion scanned grade A with 0 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to stable-diffusion — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

optional-skills/mlops/stable-diffusion/SKILL.md · 524 lines

How it starts

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

Stable Diffusion Image Generation

Guide to generating images with Stable Diffusion using the HuggingFace Diffusers library.

When to use Stable Diffusion

Use Stable Diffusion when:

  • Generating images from text descriptions
  • Performing image-to-image translation (style transfer, enhancement)
  • Inpainting (filling in masked regions)
  • Outpainting (extending images beyond boundaries)
  • Creating variations of existing images
  • Building custom image generation workflows

Key features:

  • Text-to-Image: Generate images from natural language prompts
  • Image-to-Image: Transform existing images with text guidance
  • Inpainting: Fill masked regions with context-aware content
  • ControlNet: Add spatial conditioning (edges, poses, depth)
  • LoRA Support: Efficient fine-tuning and style adaptation
  • Multiple Models: SD 1.5, SDXL, SD 3.0, Flux support

Use alternatives instead:

  • DALL-E 3: For API-based generation without GPU
  • Midjourney: For artistic, stylized outputs
  • Imagen: For Google Cloud integration
  • Leonardo.ai: For web-based creative workflows

Quick start

Installation

pip install diffusers transformers accelerate torch
pip install xformers  # Optional: memory-efficient attention

Basic text-to-image

from diffusers import DiffusionPipeline
import torch

# Load pipeline (auto-detects model type)
pipe = DiffusionPipeline.from_pretrained(
    "stable-diffusion-v1-5/stable-diffusion-v1-5",
    torch_dtype=torch.float16
)
pipe.to("cuda")

# Generate image
image = pipe(
    "A serene mountain landscape at sunset, highly detailed",
    num_inference_steps=50,
    guidance_scale=7.5
).images[0]

image.save("output.png")

Using SDXL (higher quality)

from diffusers import AutoPipelineForText2Image
import torch

pipe = AutoPipelineForText2Image.from_pretrained(
    "stabilityai/stable-diffusion-xl-base-1.0",
    torch_dtype=torch.float16,
    variant="fp16"
)
pipe.to("cuda")

# Enable memory optimization
pipe.enable_model_cpu_offload()

image = pipe(
    prompt="A futuristic city with flying cars, cinematic lighting",
    height=1024,
    width=1024,
    num_inference_steps=30
).images[0]

Read the full file on GitHub · 524 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. 2d ago First seen · 524 lines · 18 tokens per session scan A fe828c165dec

Subscribe to this mod's changes

stable-diffusion is a skill published in the GitHub repository aivrar/portable-hermes-agent (216 stars, last pushed yesterday), licensed MIT. It adds 18 tokens to every session and 3,292 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to stable-diffusion, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

mmx-cli

Use mmx to generate text, images, video, speech, and music via the MiniMax AI platform. Use when the user wants to create media content, chat with MiniMax models, perform web search, or manage MiniMax API resources from the terminal.

Peiiii/nextclaw · 56 tokens

emotion-to-camera-language

当用户要为 AI 生图/生视频写画面提示词,却只说得出「氛围感」「电影感」「高级感」「唯美」「治愈」「压抑」这类情绪形容词时调用。 也在用户说「出来的图很平/没感觉/像证件照/不像电影」而说不清哪里不对时调用。 本 skill 把情绪翻译成四个可观测变量:光位、景深、机位、人物状态。 不适用于:已经明确给出机位光位的具体提示词(无需翻译)、纯文字脚本创作、非视觉类需求、角色形象还没锁定(先用 lock-character-reference)。 Trigger: 氛围感 / 电影感 / 高级感 / 情绪片 / 写提示词 / 图很平 / 没感觉 / atmospheric / cinematic / mood.

L-Trunks/ai-film-skills · 202 tokens

ernie-image

ERNIE-Image parameter planning and prompt design for Baidu AI Studio image generation. Use when the user wants to create images with ERNIE-Image, improve ERNIE prompts, or choose ERNIE-specific arguments such as size, seed, usepe, numinferencesteps, guidancescale, n, and responseformat.

openmaster-ai/clawmaster · 72 tokens

stable-diffusion-image-generation

State-of-the-art text-to-image generation with Stable Diffusion models via HuggingFace Diffusers. Use when generating images from text prompts, performing image-to-image translation, inpainting, or building custom diffusion pipelines.

cyborg-garden/hermes-agent-mt · 50 tokens

分镜提示词

给定一句话视频需求,通过对话补全关键信息后,按「基础设定/氛围画质/画面内容」三层范式生成可直接投喂视频模型(偏 Seedance 2.0)的完整分镜提示词。触发词:分镜提示词、生成分镜、视频提示词、写提示词。.

wopanda/storyboard-prompt-skill · 87 tokens

inference-sh-cli

Run 150+ AI apps via inference.sh CLI (infsh) — image generation, video creation, LLMs, search, 3D, social automation. Uses the terminal tool. Triggers: inference.sh, infsh, ai apps, flux, veo, image generation, video generation, seedream, seedance, tavily.

cyborg-garden/hermes-agent-mt · 74 tokens