🧩
AI EngineeringPython

ComfyUI Custom Nodes

by ConstantineB6

ComfyUI Custom Nodes is an AI Engineering skill for Claude Code, published by ConstantineB6 in comfy-pilot.

231 stars44 forkson ConstantineB6/comfy-pilotAdded 2026/09/03Repository updated 2026/02/16
aiclaudeclaude-codecomfyuicomfyui-custom-nodegenerative-aiimage-generationmcpmodel-context-protocolstable-diffusionworkflow-automation
Install in seconds
Install ComfyUI Custom Nodes
Copy ComfyUI Custom Nodes into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/ConstantineB6/comfy-pilot/tree/main/.claude/skills/comfy-nodes ~/.claude/skills/comfy-nodes

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/ConstantineB6/comfy-pilot.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/comfy-nodes/SKILL.md in ConstantineB6/comfy-pilot
Installs to
~/.claude/skills/comfy-nodes
Collection
The only skill cataloged from this repository
Category
AI Engineering2793 skills

What ComfyUI Custom Nodes does

ComfyUI Custom Nodes helps you create ComfyUI custom nodes from Python code. Use it when converting a script into a node, defining INPUT_TYPES and RETURN_TYPES, or structuring a node class.

ComfyUI Custom Nodes is cataloged under AI Engineering on DirSkills. ComfyUI Custom Nodes comes from a repository tagged ai, claude, claude-code, comfyui and comfyui-custom-node.

Documentation

README

ComfyUI Custom Node Development

This skill helps you create custom ComfyUI nodes from Python code.

Quick Template

class MyNode:
    @classmethod
    def INPUT_TYPES(cls):
        return {
            "required": {
                "image": ("IMAGE",),
                "value": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0}),
            },
            "optional": {
                "mask": ("MASK",),
            }
        }

    RETURN_TYPES = ("IMAGE",)
    RETURN_NAMES = ("output",)
    FUNCTION = "execute"
    CATEGORY = "Custom/MyNodes"

    def execute(self, image, value, mask=None):
        result = image * value
        return (result,)

NODE_CLASS_MAPPINGS = {"MyNode": MyNode}
NODE_DISPLAY_NAME_MAPPINGS = {"MyNode": "My Node"}

Converting Python to Node

This is the opening of the README. Read the full README on GitHub.

Frequently asked about ComfyUI Custom Nodes

  • How does ComfyUI Custom Nodes compare to other AI Engineering skills?

    ComfyUI Custom Nodes ranks #2464 by stars among the 2793 AI Engineering skills in this catalog. The most-starred ones next to it are Architecture Decision Records, AI-First Engineering and Agentic OS. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of ComfyUI Custom Nodes against them. Open each page to compare what they document and how they install.