
Comfyui Research
- 255 installs
- 85 repo stars
- Updated March 18, 2026
- mckruz/comfyui-expert
Research ComfyUI nodes, techniques, and community workflows before committing to a generative media stack or custom diffusion pipeline.
About
ComfyUI research from mckruz/comfyui-expert equips Claude to investigate ComfyUI ecosystems—surveying nodes, workflows, models, and community techniques to inform early generative media and agent pipeline decisions before implementation.
- Node and extension landscape surveys
- Workflow pattern comparisons
- Model and sampler evaluation
- Community best-practice synthesis
- Pipeline feasibility assessment
Comfyui Research by the numbers
- 255 all-time installs (skills.sh)
- +20 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #551 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mckruz/comfyui-expert --skill comfyui-researchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 255 |
|---|---|
| repo stars | ★ 85 |
| Last updated | March 18, 2026 |
| Repository | mckruz/comfyui-expert ↗ |
What it does
Research ComfyUI nodes, techniques, and community workflows before committing to a generative media stack or custom diffusion pipeline.
Files
ComfyUI Research Skill
Keeps the VideoAgent knowledge base current by monitoring sources, extracting knowledge, and flagging stale information.
Triggers
- On demand: User invokes
/research comfyuior asks to check for updates - Session start: Quick staleness check (read
references/staleness-report.md) - Before workflow generation: Targeted check if the specific model/technique is >2 months old
Research Pipeline
1. Discovery
Search for new developments across three source types:
YouTube Channels (technique extraction):
| Channel | Focus | URL |
|---|---|---|
| Pixaroma | ComfyUI tutorials, GGUF, beginner-friendly | youtube.com/@pixaroma |
| Kijai | Advanced nodes, model implementations | youtube.com/@Kijai |
| Sebastian Kamph | ComfyUI workflows, automation | youtube.com/@sebastiankamph |
| Olivio Sarikas | AI art techniques, ComfyUI | youtube.com/@OlivioSarikas |
| Matt Wolfe | AI tool roundups | youtube.com/@maboroshi |
| Nerdy Rodent | Stable Diffusion deep dives | youtube.com/@NerdyRodent |
GitHub Repositories (node/model updates):
| Repository | What to Check |
|---|---|
| comfyanonymous/ComfyUI | Releases, breaking changes |
| Kosinkadink/ComfyUI-AnimateDiff-Evolved | New motion modules |
| cubiq/ComfyUI_IPAdapter_plus | Maintenance status, forks |
| ltdrdata/ComfyUI-Impact-Pack | FaceDetailer updates |
| Wan-AI/Wan2.1-Preview | New model versions |
| hzwer/Practical-RIFE | Interpolation updates |
| resemble-ai/chatterbox | Voice model updates |
| SWivid/F5-TTS | TTS updates |
HuggingFace (model releases):
- Trending models:
huggingface.co/models?sort=trending - Filter: diffusers, video, audio, text-to-image
- Watch for: New FLUX variants, Wan updates, identity models, voice models
2. Extraction
For each discovery, extract structured knowledge:
From YouTube videos: Use youtube-video-analyst or youtube-chapter-clipper skills to: 1. Get transcript 2. Identify new models mentioned (name, source, requirements) 3. Identify new techniques (workflow changes, parameter discoveries) 4. Identify new nodes (package name, what it does) 5. Note any benchmark results or comparisons
From GitHub releases: 1. Check release notes for breaking changes 2. Identify new features or supported models 3. Note version requirements 4. Check if deprecated features affect our workflows
From HuggingFace: 1. Model card: architecture, training data, requirements 2. VRAM requirements and quantization options 3. ComfyUI compatibility (is there a node?) 4. Quality comparison vs current recommendations
3. Integration
Update reference files with timestamped entries:
<!-- Updated: 2026-02-06 | Source: Pixaroma Ep 45 -->
### New Model: XYZ
- Download: {url}
- VRAM: {requirement}
- Notes: {key findings}Which file to update:
| Finding Type | Update File |
|---|---|
| New model | references/models.md |
| New workflow technique | references/workflows.md |
| LoRA training discovery | references/lora-training.md |
| Voice tool update | references/voice-synthesis.md |
| New prompt technique | references/prompt-templates.md |
| Bug workaround | references/troubleshooting.md |
| Model landscape shift | foundation/model-landscape.md |
4. Staleness Audit
Scan all reference files for <!-- Updated: --> timestamps:
Thresholds:
| Category | Max Age | Action |
|---|---|---|
| Models | 3 months | Flag: "Model recommendations may be outdated" |
| Nodes | 2 months | Flag: "Custom node versions may have updates" |
| Techniques | 6 months | Flag: "Techniques may have been superseded" |
| Voice tools | 3 months | Flag: "Voice synthesis landscape may have changed" |
Generate report: Update references/staleness-report.md with current status.
Research State
Maintained in skills/comfyui-research/state/:
state/
last-research-run.json # When, what was checked, what was found
watch-list.yaml # Sources to monitor (see references/)last-research-run.json
{
"last_run": "2026-02-06T12:00:00Z",
"sources_checked": 15,
"findings": 3,
"updates_made": [
{"file": "models.md", "entry": "Added ModelX", "source": "HuggingFace"},
{"file": "workflows.md", "entry": "Updated Wan settings", "source": "Pixaroma Ep 50"}
],
"stale_entries": 0
}Quick Staleness Check (Session Start)
Fast check without full research:
1. Read references/staleness-report.md 2. If last_run is >2 weeks ago:
- Notify: "Research data is {N} days old. Run
/research comfyuifor updates."
3. If any entries are beyond their threshold:
- Notify: "Stale items found: {list}. These may have newer alternatives."
Full Research Run
When user triggers /research comfyui:
1. Check all YouTube channels for recent uploads (last 30 days) 2. Check all GitHub repos for new releases 3. Check HuggingFace trending for relevant models 4. Extract findings using youtube-video-analyst 5. Update reference files with timestamped entries 6. Run staleness audit on all references 7. Update staleness report 8. Summarize findings for user
Targeted Research
When asked about a specific topic:
1. Search YouTube for recent videos on the topic 2. Search HuggingFace for related models 3. Check GitHub for related node packages 4. Synthesize findings 5. Update relevant reference files if significant discoveries
Integration with Other Skills
| Skill | How Research Helps |
|---|---|
comfyui-workflow-builder | Ensures recommended models/nodes are current |
comfyui-character-gen | Updates identity method recommendations |
comfyui-video-pipeline | Flags new video models (Wan updates, new engines) |
comfyui-voice-pipeline | Tracks voice synthesis tool releases |
comfyui-troubleshooter | Adds community-discovered workarounds |
Reference
references/staleness-report.md- Current freshness statusreferences/evolution.md- Update protocol and changelogskills/comfyui-research/references/watch-list.yaml- Monitored sources
# ComfyUI Research Watch List
# Sources monitored by the comfyui-research skill
# Last reviewed: 2026-02-06
youtube_channels:
- name: Pixaroma
url: "https://www.youtube.com/@pixaroma"
focus: ComfyUI tutorials, GGUF models, beginner workflows
check_frequency: weekly
priority: high
- name: Kijai
url: "https://www.youtube.com/@Kijai"
focus: Advanced node development, model implementations
check_frequency: weekly
priority: high
- name: Sebastian Kamph
url: "https://www.youtube.com/@sebastiankamph"
focus: ComfyUI automation, advanced workflows
check_frequency: weekly
priority: high
- name: Olivio Sarikas
url: "https://www.youtube.com/@OlivioSarikas"
focus: AI art techniques, character consistency
check_frequency: biweekly
priority: medium
- name: Matt Wolfe
url: "https://www.youtube.com/@maboroshi"
focus: AI tool roundups, industry trends
check_frequency: biweekly
priority: medium
- name: Nerdy Rodent
url: "https://www.youtube.com/@NerdyRodent"
focus: Stable Diffusion deep dives, technical analysis
check_frequency: biweekly
priority: medium
- name: Banodoco
url: "https://www.youtube.com/@banodoco"
focus: Steerable Motion, AI video techniques
check_frequency: monthly
priority: low
github_repos:
- name: ComfyUI
repo: comfyanonymous/ComfyUI
watch: releases
check_frequency: weekly
priority: critical
notes: Breaking changes affect all workflows
- name: AnimateDiff-Evolved
repo: Kosinkadink/ComfyUI-AnimateDiff-Evolved
watch: releases
check_frequency: biweekly
priority: high
- name: IPAdapter_plus
repo: cubiq/ComfyUI_IPAdapter_plus
watch: releases
check_frequency: monthly
priority: medium
notes: Maintenance mode since April 2025, watch for forks
- name: InstantID
repo: cubiq/ComfyUI_InstantID
watch: releases
check_frequency: monthly
priority: medium
notes: Maintenance mode since April 2025
- name: Impact-Pack
repo: ltdrdata/ComfyUI-Impact-Pack
watch: releases
check_frequency: biweekly
priority: high
notes: FaceDetailer is critical for character workflows
- name: Wan-AI
repo: Wan-AI/Wan2.1-Preview
watch: releases
check_frequency: weekly
priority: high
notes: Watch for 2.2 MoE updates and new model sizes
- name: FramePack
repo: lllyasviel/FramePack
watch: releases
check_frequency: biweekly
priority: high
- name: Chatterbox
repo: resemble-ai/chatterbox
watch: releases
check_frequency: monthly
priority: medium
- name: F5-TTS
repo: SWivid/F5-TTS
watch: releases
check_frequency: monthly
priority: medium
- name: RIFE
repo: hzwer/Practical-RIFE
watch: releases
check_frequency: monthly
priority: low
- name: ComfyUI-Manager
repo: ltdrdata/ComfyUI-Manager
watch: releases
check_frequency: biweekly
priority: high
huggingface:
trending_filters:
- tag: diffusers
check_frequency: weekly
- tag: text-to-image
check_frequency: weekly
- tag: text-to-video
check_frequency: weekly
- tag: text-to-speech
check_frequency: biweekly
watched_orgs:
- black-forest-labs # FLUX models
- Wan-AI # Wan video models
- ByteDance # InfiniteYou, LatentSync
- InstantX # ControlNet, identity models
- h94 # IP-Adapter
- guozinan # PuLID
subreddits:
- name: r/StableDiffusion
check_frequency: weekly
priority: medium
- name: r/comfyui
check_frequency: weekly
priority: high
staleness_thresholds:
models: 90 # days
nodes: 60 # days
techniques: 180 # days
voice_tools: 90 # days