Translates natural language requests into executable ComfyUI workflow JSON. Always validates against inventory before generating.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioncomfyui-workflow-builderExecute the skills CLI command in your project's root directory to begin installation:
Fetches comfyui-workflow-builder from mckruz/comfyui-expert and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate comfyui-workflow-builder. Access via /comfyui-workflow-builder in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
2
total installs
2
this week
35
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
35
stars
Translates natural language requests into executable ComfyUI workflow JSON. Always validates against inventory before generating.
Parse the user's intent into:
Read state/inventory.json to determine:
Based on request + inventory, choose from:
| Pattern | When | Key Nodes |
|---|---|---|
| Text-to-Image | Simple generation | Checkpoint → CLIP → KSampler → VAE |
| Identity-Preserved Image | Character consistency | + InstantID/PuLID/IP-Adapter |
| LoRA Character | Trained character | + LoRA Loader |
| Image-to-Video (Wan) | High-quality video | Diffusion Model → Wan I2V → Video Combine |
| Image-to-Video (AnimateDiff) | Fast video, motion control | + AnimateDiff Loader + Motion LoRAs |
| Talking Head | Character speaks | Image → Video → Voice → Lip-Sync |
| Upscale | Enhance resolution | Image → UltimateSDUpscale → Save |
| Inpainting | Edit regions | Image + Mask → Inpaint Model → KSampler |
ComfyUI workflow format:
{
"{node_id}": {
"class_type": "{NodeClassName}",
"inputs": {
"{param_name}": "{value}",
"{connected_param}": ["{source_node_id}", {output_index}]
}
}
}
Rules:
["source_node_id", output_index]Before presenting to user:
class_type exists in inventory's node listIf online mode: Queue via comfyui-api skill
If offline mode: Save JSON to projects/{project}/workflows/ with descriptive name
{
"1": {
"class_type": "LoadCheckpoint",
"inputs": {"ckpt_name": "flux1-dev.safetensors"}
},
"2": {
"class_type": "CLIPTextEncode",
"inputs": {"text": "{positive_prompt}", "clip": ["1", 1]}
},
"3": {
"class_type": "CLIPTextEncode",
"inputs": {"text": "{negative_prompt}", "clip": ["1", 1]}
},
"4": {
"class_type": "EmptyLatentImage",
"inputs": {"width": 1024, "height": 1024, "batch_size": 1}
},
"5": {
"class_type": "KSampler",
"inputs": {
"seed": 42,
"steps": 25,
"cfg": 3.5,
"sampler_name": "euler",
"scheduler": "normal",
"denoise": 1.0,
"model": ["1", 0],
"positive": ["2", 0],
"negative": ["3", 0],
"latent_image": ["4", 0]
}
},
"6": {
"class_type": "VAEDecode",
"inputs": {"samples": ["5", 0], "vae": ["1", 2]}
},
"7": {
"class_type": "SaveImage",
"inputs": {"filename_prefix": "output", "images": ["6", 0]}
}
}
Extends basic template by adding:
See references/workflows.md for complete node settings.
Uses different loader chain:
See references/workflows.md Workflow 4 for complete settings.
| Component | Approximate VRAM |
|---|---|
| FLUX FP16 | 16GB |
| FLUX FP8 | 8GB |
| SDXL | 6GB |
| SD1.5 | 4GB |
| InstantID | +4GB |
| IP-Adapter | +2GB |
| ControlNet (each) | +1.5GB |
| Wan 14B | 20GB |
| Wan 1.3B | 5GB |
| AnimateDiff | +3GB |
| FaceDetailer | +2GB |
[model, clip, vae] at indices [0, 1, 2]ae.safetensors)LoadDiffusionModel, not LoadCheckpointreferences/workflows.md - Detailed node-by-node templatesreferences/models.md - Model files and pathsreferences/prompt-templates.md - Model-specific promptsstate/inventory.json - Current inventory cachePrerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
anthropics/claude-code
mblode/agent-skills
github/awesome-copilot
leonxlnx/taste-skill
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
comfyui-workflow-builder is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: comfyui-workflow-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added comfyui-workflow-builder from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: comfyui-workflow-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: comfyui-workflow-builder is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: comfyui-workflow-builder is focused, and the summary matches what you get after install.
comfyui-workflow-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
comfyui-workflow-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
comfyui-workflow-builder has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: comfyui-workflow-builder is focused, and the summary matches what you get after install.
showing 1-10 of 69