comfyui-nodes-dev
Installation
SKILL.md
ComfyUI V3 Custom Nodes (Server-Side)
ComfyUI baseline: v0.12.0 (Comfy API v0_0_2). Update this line when revising the skill.
Scope
- Focus on server-side V3 nodes (Python).
- Exclude client-server extension patterns and frontend-only extensions.
Quick Workflow
- Choose API adapter:
comfy_api.v0_0_2for stability orcomfy_api.latestfor newest features. - (Optional) Scaffold a nodepack using
comfy node scaffold. - Implement a V3 node with
io.ComfyNode.define_schema()andexecute(). - Return
io.NodeOutput(or tuple/dict) fromexecute(). - Register nodes via
ComfyExtension.get_node_list()andcomfy_entrypoint(). - Restart ComfyUI and validate in UI/API.