comfyui-node-scaffold

comfyui-node-scaffold is a skill for Claude Code, Codex from laurigates/claude-plugins. It costs 59 tokens per session (2,616 once invoked), scanned A, original, MIT.

A project starter for creating a new ComfyUI custom-node repository with TypeScript, automated checks, release setup, and a frontend interface foundation.

In plain words
What is it for?
It helps bootstrap a new ComfyUI node pack, including its TypeScript source, browser build, continuous integration checks, tests, and registry publishing setup.
Why use it?
It removes the need to assemble the repository structure and basic development tools before writing the node's actual behavior.

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/laurigates/claude-plugins/comfyui-node-scaffold
Any agent
npx skills add laurigates/claude-plugins --skill comfyui-node-scaffold
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

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 comfyui-node-scaffold

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/comfyui-node-scaffold.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/comfyui-node-scaffold)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/comfyui-node-scaffold"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/comfyui-node-scaffold.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,616 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown 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.00059 $0.02616
Opus 5 $0.00030 $0.01308
Sonnet 5 $0.00012 $0.00523
Haiku 4.5 $0.00006 $0.00262

Measured today against content hash 5357f82b6213, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

comfyui-node-scaffold 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 today.

The scan reads SKILL.md. This mod also ships 6 executable files (scaffold.py, scripts/check-fleet-drift.py, scripts/tests/test-finishing-pass.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

comfyui-plugin/skills/comfyui-node-scaffold/SKILL.md · 175 lines

How it starts

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

comfyui-node-scaffold

Bootstrap a new ComfyUI custom-node pack that matches the established mobile-first TypeScript + bun build architecture of comfyui-gallery-loader, comfyui-sampler-info, and comfyui-touch-numeric, leaving only the actual node logic to implement.

Supporting material is split across references/ by the path that needs it; see REFERENCE.md for the index.

When to Use This Skill

Use this skill when... Use the alternative when...
Starting a new ComfyUI usability pack repo — CI-green TS toolchain, Comfy Registry publish, and the widget-intercept/gesture skeleton before writing pack logic You want the full pipeline (repo created + seeded + gitops-adopted) → comfy-node
Spinning up a project:comfyui-nodes backlog idea (touch-numeric, prompt-editor, model-gallery…) Adding a node to an existing pack — this creates a new repo

The architecture it scaffolds

TypeScript source in src/ (entry src/index.ts), built to web/dist/ via bun build — typed authoring against @comfyorg/comfyui-frontend-types, browser-ESM output, the /scripts/app.js runtime import left unbundled. This supersedes the old vanilla-JS (web/js/*.js + copied modal primitives) template. The generated pack starts with an ADR (docs/blueprint/adrs/0001-…) recording the decision, mirroring sampler-info's ADR-0010.

  • Type gate: bun run typechecktsc --noEmit (never emits).
  • Emit: bun build ./src/index.ts --target browser --format esm --outdir web/dist --external '/scripts/*'. If the pack ships a static data corpus, append && cp -R web/data web/dist/data.
  • Serve: __init__.py sets WEB_DIRECTORY = "./web/dist"; ComfyUI serves that tree at /extensions/<name>/.
  • Distribute: web/dist/ is committed (tracked) so git clone/update carries the served bundle; [tool.comfy] includes = ["web/dist"] also force-ships it to the registry, and publish.yml runs bun run build first.
  • The /scripts/app.js type shim: a paths mapping in tsconfig.json points the rooted import at src/comfyui-shims.d.ts (TypeScript will not match an ambient declare module against a /… specifier). The emitted import string stays /scripts/app.js and --external '/scripts/*' keeps it unbundled.

Read the full file on GitHub · 175 lines

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. today First seen · 175 lines · 59 tokens per session scan A 5357f82b6213

Subscribe to this mod's changes

comfyui-node-scaffold is a skill published in the GitHub repository laurigates/claude-plugins (57 stars, last pushed yesterday), licensed MIT. It adds 59 tokens to every session and 2,616 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

kanban-dev-lane

Use when a Hermes Kanban worker wants to run an autonomous implementation delegation lane with a 3-tier fallback chain across claudy -> codex (--yolo) -> agyd (agy --dangerously-skip-permissions) -> Hermes direct on quota exhaustion.

epicsagas/plugins · 58 tokens

process-backlog

Internal crew primitive, dispatched by /crew:run — do not invoke directly or select it for a user request; route backlog/catch-up requests to /crew:run, which decides the full workflow. (Function: find and advance stalled issues/PRs or ledger tasks, bounded; never merges.).

tessaryai/plugins · 65 tokens

ma

티켓 → PRD → 설계 → PLAN → 승인 → 구현 → 코드 리뷰 → MR까지 품질 게이트가 걸린 풀 파이프라인 오케스트레이터. "ma", "풀 파이프라인", "티켓부터 MR까지" 요청에 사용.

JeonJe/claude-plugins · 61 tokens

ma-review

Run an evidence-backed review of MA artifacts. Load only the selected mode; plan and code have different inputs, mutation boundaries, and completion gates.

JeonJe/claude-plugins · 143 tokens

ma-dispatch

MA impl 승인 뒤 등록된 worktree에 구현을 위임한다. "ma-dispatch", "구현 위임", "디스패치" 요청 또는 MA Phase 4에서 사용.

JeonJe/claude-plugins · 45 tokens

scrum

Scrum framework fundamentals, sprint goal writing, and agile ceremony facilitation. Use when the user asks to plan a sprint, write sprint goals, facilitate daily scrums, run sprint reviews or retrospectives, define scrum roles, manage the product backlog, or apply agile estimation techniques. Covers the three pillars…

krzysztofsurdy/code-virtuoso · 90 tokens