Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

comfyui-research舒适研究

Agent Skill

comfyui-research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,402

周安装

59

GitHub Stars

50

下载量

491
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:comfyui-research(舒适研究)
来源仓库:https://github.com/mckruz/comfyui-expert
仓库路径:skills/comfyui-research
安装命令:
npx skills add https://github.com/mckruz/comfyui-expert --skill comfyui-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mckruz/comfyui-expert --skill comfyui-research

简介

comfyui-research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ComfyUI Research Skill

Keeps the VideoAgent knowledge base current by monitoring sources, extracting knowledge, and flagging stale information.

Triggers

  • On demand: User invokes /research comfyui or 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):

ChannelFocusURL
PixaromaComfyUI tutorials, GGUF, beginner-friendlyyoutube.com/@pixaroma
KijaiAdvanced nodes, model implementationsyoutube.com/@Kijai
Sebastian KamphComfyUI workflows, automationyoutube.com/@sebastiankamph
Olivio SarikasAI art techniques, ComfyUIyoutube.com/@OlivioSarikas
Matt WolfeAI tool roundupsyoutube.com/@maboroshi
Nerdy RodentStable Diffusion deep divesyoutube.com/@NerdyRodent

GitHub Repositories (node/model updates):

RepositoryWhat to Check
comfyanonymous/ComfyUIReleases, breaking changes
Kosinkadink/ComfyUI-AnimateDiff-EvolvedNew motion modules
cubiq/ComfyUI_IPAdapter_plusMaintenance status, forks
ltdrdata/ComfyUI-Impact-PackFaceDetailer updates
Wan-AI/Wan2.1-PreviewNew model versions
hzwer/Practical-RIFEInterpolation updates
resemble-ai/chatterboxVoice model updates
SWivid/F5-TTSTTS 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 TypeUpdate File
New modelreferences/models.md
New workflow techniquereferences/workflows.md
LoRA training discoveryreferences/lora-training.md
Voice tool updatereferences/voice-synthesis.md
New prompt techniquereferences/prompt-templates.md
Bug workaroundreferences/troubleshooting.md
Model landscape shiftfoundation/model-landscape.md

4. Staleness Audit

Scan all reference files for <!-- Updated: --> timestamps:

Thresholds:

CategoryMax AgeAction
Models3 monthsFlag: "Model recommendations may be outdated"
Nodes2 monthsFlag: "Custom node versions may have updates"
Techniques6 monthsFlag: "Techniques may have been superseded"
Voice tools3 monthsFlag: "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 comfyui for updates."

  1. 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

SkillHow Research Helps
comfyui-workflow-builderEnsures recommended models/nodes are current
comfyui-character-genUpdates identity method recommendations
comfyui-video-pipelineFlags new video models (Wan updates, new engines)
comfyui-voice-pipelineTracks voice synthesis tool releases
comfyui-troubleshooterAdds community-discovered workarounds

Reference

  • references/staleness-report.md - Current freshness status
  • references/evolution.md - Update protocol and changelog
  • skills/comfyui-research/references/watch-list.yaml - Monitored sources

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.41%
按下载量换算169

Claude

28.28%
按下载量换算139

Cursor

19.89%
按下载量换算98

Gemini CLI

9.66%
按下载量换算47

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills