sd-node-catalog

sd-node-catalog is a skill for Claude Code, Codex from IvanYangYangXi/artclaw_bridge. It costs 112 tokens per session (2,908 once invoked), scanned A, original, MIT.

A reference for choosing and querying Substance Designer nodes, which are building blocks for procedural materials and textures. It lists suitable library files and purposes, then checks a node's actual parameters and connection points at runtime.

In plain words
What is it for?
Use it to select noise, texture, blending, and adjustment nodes, find their library filenames and outputs, and inspect their available inputs before building a graph.
Why use it?
It avoids relying on outdated parameter lists as software versions change. It also distinguishes values that can be set directly from inputs that must receive a connection from another node.

Skill for Claude CodeCodex

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

Good fit Use it to select noise, texture, blending, and adjustment nodes, find their library filenames and outputs, and inspect their available inputs before building a graph.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog
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 IvanYangYangXi/artclaw_bridge --skill sd-node-catalog
Clone the repo
git clone --depth 1 https://github.com/IvanYangYangXi/artclaw_bridge

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 sd-node-catalog

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog/github.svg)](https://agentmods.dev/skills/ivanyangyangxi/artclaw_bridge/sd-node-catalog)
Your own site
<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.

agentmods 80×15 button for sd-node-catalog

Your own site · 80×15
<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>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,908 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00112 $0.02908
Opus 5 $0.00056 $0.01454
Sonnet 5 $0.00022 $0.00582
Haiku 4.5 $0.00011 $0.00291

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

Security

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.

skills/official/substance_designer/sd-node-catalog/SKILL.md · 197 lines

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::invertsbs::compositing::edgedetectsbs::compositing::histogramselect 反转用 Levels(黑白点互换)或 Blend(Subtract)+Uniform(白) 实现。

Read the full file on GitHub · 197 lines

Files

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.

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 · 197 lines · 112 tokens per session scan A 64edfc5f15d7

Subscribe to this mod's changes

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.

Related

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…

dcc-mcp/dcc-mcp-core · 109 tokens

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…

dcc-mcp/dcc-mcp-core · 74 tokens

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.

dcc-mcp/dcc-mcp-core · 67 tokens

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.

dcc-mcp/dcc-mcp-core · 47 tokens

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…

dcc-mcp/dcc-mcp-core · 77 tokens

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.

dcc-mcp/dcc-mcp-core · 65 tokens