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 skills add IvanYangYangXi/artclaw_bridge --skill sd-node-cataloggit clone --depth 1 https://github.com/IvanYangYangXi/artclaw_bridgeWrote 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/ivanyangyangxi/artclaw_bridge/sd-node-catalog)<a href="https://agentmods.dev/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog"><img src="https://agentmods.dev/badge/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog/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.
<a href="https://agentmods.dev/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog"><img src="https://agentmods.dev/badge/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog.svg" alt="Reviewed on agentmods" width="80" 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.00112 | $0.02908 |
| Opus 5 | $0.00056 | $0.01454 |
| Sonnet 5 | $0.00022 | $0.00582 |
| Haiku 4.5 | $0.00011 | $0.00291 |
Grade A, and why
sd-node-catalog 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 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.
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.
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.
SD 节点目录
设计原则
- 选型用静态目录:sbs 文件名、输出端口名、用途分类 → 帮 Agent 决定"用哪个节点"
- 参数/端口用动态查询:创建节点后实时查询 → 永远准确,不怕 SD 版本变化
- 为什么不静态记录参数? 因为 SD 的"参数"和"连接端口"都是 Input 属性,静态记录容易混淆(如 blend 的
opacity实际是连接端口,opacitymult才是标量参数)
动态查询:节点参数和端口 🔴
创建节点后,用以下代码查询可设参数和连接端口:
# === 查询节点的可设参数(有默认值的)和连接端口(值为 None 的) ===
params = {}
ports = []
for p in node.getProperties(SDPropertyCategory.Input):
pid = p.getId()
if pid.startswith("$"):
continue
v = node.getPropertyValue(p)
val = v.get() if v else None
if val is None:
ports.append(pid) # 连接端口(只能连线,不能 setInputPropertyValueFromId)
else:
params[pid] = val # 可赋值参数
print(f"可设参数: {list(params.keys())}")
print(f"连接端口: {ports}")
# 查询输出端口
outputs = [p.getId() for p in node.getProperties(SDPropertyCategory.Output)]
print(f"输出端口: {outputs}")
⚠️ 连接端口(
val is None)不能用setInputPropertyValueFromId赋值,会抛DataIsReadOnly! 连接端口只能通过src.newPropertyConnectionFromId(out_port, dst, port_name)接收连线。
原子节点速查
原子节点用 graph.newNode(definition_id) 创建。
| 节点 | 定义 ID | 用途 |
|---|---|---|
| Blend | sbs::compositing::blend |
混合两个输入 |
| Levels | sbs::compositing::levels |
色阶/对比度调整 |
| Normal | sbs::compositing::normal |
灰度→法线图 |
| Warp | sbs::compositing::warp |
扭曲变形 |
| DirectionalWarp | sbs::compositing::directionalwarp |
方向扭曲 |
| Uniform | sbs::compositing::uniform |
纯色(灰度/彩色) |
| Output | sbs::compositing::output |
PBR 输出通道 |
| Curve | sbs::compositing::curve |
曲线调整 |
| HSL | sbs::compositing::hsl |
HSL 颜色调整 |
| Blur | sbs::compositing::blur |
模糊 |
| Sharpen | sbs::compositing::sharpen |
锐化 |
| Transform 2D | sbs::compositing::transformation |
平移/旋转/缩放 |
| Gradient Map | sbs::compositing::gradient |
灰度→彩色渐变映射 |
| Emboss | sbs::compositing::emboss |
浮雕 |
⛔ 不存在的原子节点(newNode 返回 None):
sbs::compositing::invert、sbs::compositing::edgedetect、sbs::compositing::histogramselect反转用 Levels(黑白点互换)或 Blend(Subtract)+Uniform(白) 实现。
What ships with it
1 file 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.
- 10d ago First seen · 197 lines · 112 tokens per session scan A 64edfc5f15d7
sd-node-catalog is a skill published in the GitHub repository IvanYangYangXi/artclaw_bridge (35 stars, last pushed 4mo ago), licensed MIT. It adds 112 tokens to every session and 2,908 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
dcc-mcp-core
Foundation library for the DCC Model Context Protocol (MCP) ecosystem. Provides Rust-powered action management, skills system, IPC transport, MCP Streamable HTTP server (2025-03-26 spec, with 2025-06-18 and 2025-11-25 awareness), sandbox security, shared memory, screen capture, USD scene support, and telemetry for…
maya-pipeline
Domain skill — Maya asset pipeline orchestration: set up project directory structures, export scenes to USD, and coordinate multi-step DCC workflows. Use when initialising a Maya project or exporting assets for a downstream pipeline. Not for raw geometry editing — use maya-geometry for that. Not for low-level USD file…
imagemagick-tools
Infrastructure skill — image processing and manipulation via ImageMagick: resize, composite, convert formats, add watermarks. Use when batch-processing textures, thumbnails, or rendered images at the file level. Not for in-DCC texture or material editing — use a domain skill bound to the specific DCC for that.
asset-source
Gateway skill for cross-DCC asset import — search and resolve assets into a validated AssetDescriptor (local path + attribution). Demo source returns static catalog entries; production sources can add download or remote resolution without changing the contract.
ffmpeg-media
Infrastructure skill — media conversion and processing via FFmpeg: convert video/audio formats, extract frames, resize, and transcode. Use when manipulating raw media files (mp4, mov, wav, image sequences) regardless of DCC context. Not for DCC-specific render output handling — use a domain pipeline skill for…
maya-geometry
Domain skill — Maya geometry primitives: create spheres, cubes, cylinders; bevel, extrude, and merge polygon components. Use for individual geometry creation or editing operations inside Maya. Not for full asset export pipelines — use maya-pipeline for that. Not for USD scene inspection — use usd-tools for that.