Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计提醒

comfyui-skill-openclawcomfyui 技能 OpenClaw

Agent Skill

comfyui-skill-openclaw 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

784

周安装

33

GitHub Stars

241

下载量

275
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/huangyuchuh/comfyui_skills_openclaw --skill comfyui-skill-openclaw

简介

comfyui-skill-openclaw 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前无原始 SKILL.md 内容可参考,功能描述基于通用协作场景推断。

SKILL.md

ComfyUI Agent SKILL

Prerequisites: Install the CLI: pip install -U comfyui-skill-cli. All commands must run from this project's root directory (where this SKILL.md is located). [!IMPORTANT] Directory Sensitivity: The CLI reads config.json and data/ from the current directory. You MUST cd into the project root before running any command. Symptom: list returns [] or server status reports not found → you are in the wrong directory.

Quick Decision

  • User says "generate image / draw a picture" → Execution Flow (Step 1–4)
  • User says "import workflow / add workflow" → comfyui-skill --json workflow import <path>
  • User says "img2img / use this image" → first comfyui-skill --json upload <image>, then execute
  • User says "inpainting / mask this area" → comfyui-skill --json upload <mask> --mask, then execute
  • User says "show previous results" → comfyui-skill --json history list <id>
  • User says "what failed / check job status" → comfyui-skill --json jobs list --status failed
  • User says "which server has more VRAM" → comfyui-skill --json server stats --all
  • User says "what nodes are available" → comfyui-skill --json nodes list
  • User says "dry run / test without executing" → comfyui-skill --json run <id> --validate
  • User says "open management UI" → python3./ui/open_ui.py

Core Concepts

  • Skill ID: <server_id>/<workflow_id> (e.g., local/txt2img). If server is omitted, the default server is used.
  • Schema: Each workflow has a schema.json that maps business parameter names (e.g., prompt, seed) to internal ComfyUI node fields. Never expose node IDs to the user.
  • Server: One or more ComfyUI instances configured in config.json. Check health with server status.

Command Reference

CommandPurpose
comfyui-skill --json server statusCheck if ComfyUI server is online
comfyui-skill --json server statsShow VRAM, RAM, GPU, versions (--all for multi-server)
comfyui-skill --json listList all available workflows and parameters
comfyui-skill --json info <id>Show workflow details and parameter schema
comfyui-skill --json submit <id> --args '{...}'Submit a workflow (non-blocking)
comfyui-skill --json status <prompt_id>Check execution status
comfyui-skill --json run <id> --args '{...}'Execute a workflow (blocking, real-time streaming)
comfyui-skill --json run <id> --validateValidate workflow without executing
comfyui-skill --json upload <path>Upload image to ComfyUI (for img2img workflows)
comfyui-skill --json upload <path> --maskUpload mask image (for inpainting workflows)
comfyui-skill --json nodes listList all available ComfyUI nodes
comfyui-skill --json jobs listList server-side job history (--status failed to filter)
comfyui-skill --json deps check <id>Check missing dependencies
comfyui-skill --json deps install <id> --repos '[...]'Install missing custom nodes
comfyui-skill --json workflow import <path>Import workflow (auto-detect, warns about deprecated nodes)
comfyui-skill --json history list <id>List execution history for a workflow

Execution Flow

Step 1: Query Available Workflows

comfyui-skill --json list

Returns a JSON array of all enabled workflows with their parameters.

  • required: true parameters → ask the user if not provided.
  • required: false parameters → infer from context (e.g., seed = random number), or omit.
  • Never expose node IDs; only use business parameter names (e.g., prompt, style).
  • If multiple workflows match, pick the most relevant one or list candidates.

Step 2: Parameter Assembly

Assemble parameters into a JSON string. Example:

{"prompt": "A beautiful landscape, high quality, masterpiece", "seed": 40128491}

If critical parameters are missing, ask the user (e.g., "What visual style would you like?").

Step 3: Pre-flight Dependency Check

Always run before first execution of a workflow:

comfyui-skill --json deps check <server_id>/<workflow_id>
  • If is_ready is true → proceed to Step 4.
  • If is_ready is false:

1. Present missing nodes and models to the user. 2. If user agrees to install, run: comfyui-skill --json deps install <id> --repos '["https://github.com/repo1"]' Use source_repo URLs from the check report as --repos values. 3. If needs_restart is true, inform the user to restart ComfyUI, then re-check. 4. Missing models must be downloaded manually — tell the user which folder to place them in (e.g., checkpoints).

Step 4: Execute the Workflow

Note: JSON args must be wrapped in single quotes to prevent bash from parsing double quotes.

Choose the execution mode based on your environment:

Interactive mode: submit + status (recommended for chat)

Step 4a — Submit:

comfyui-skill --json submit <id> --args '{"prompt": "..."}'

Returns: {"status": "submitted", "prompt_id": "..."}. Tell the user generation has started.

Step 4b — Poll:

comfyui-skill --json status <prompt_id>

Status values: queued (with position) → runningsuccess (with outputs) or error.

Polling pattern — critical for real-time feedback:

Each status call must be a separate tool invocation (a separate bash command). Do NOT write a shell loop. The correct pattern is:

  1. Run status as a standalone bash command.
  2. Read the returned JSON.
  3. If queued or running: send a text message to the user with progress, then run status again.
  4. If success: proceed to Step 5.
  5. If error: report the error.

Non-interactive mode: one-shot blocking (for scripts/CI)

comfyui-skill --json run <id> --args '{"prompt": "..."}'

Blocks until finished. Returns the same result format as status with success.

Step 5: Present Results

On success, the result contains an outputs array with file references (filename, subfolder, type). Use your native capabilities to present the files to the user (e.g., image preview, file path).


Workflow Import

When the user wants to add new workflows (not execute existing ones):

comfyui-skill --json workflow import <json_path>
  • Supports both API format and editor format (auto-detected, auto-converted).
  • Automatically generates schema.json with smart parameter extraction.
  • After import, check dependencies before first execution.

For bulk import from ComfyUI server or local folders, see references/workflow-import.md.

Troubleshooting

  1. ComfyUI Offline: Run comfyui-skill --json server status. If offline, ask the user to start ComfyUI.
  2. Workflow Not Found: Run comfyui-skill --json list to see available workflows. If missing, the user needs to import it first.
  3. Parameter Format Error: Ensure --args is valid JSON wrapped in single quotes.
  4. Cloud Node Unauthorized: Workflow uses cloud API nodes (Kling, Sora, etc.). Guide user to: (1) Generate an API Key at https://platform.comfy.org, (2) Open Web UI → Server Settings → fill in "ComfyUI API Key".

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

37.64%
按下载量换算104

Claude

30.62%
按下载量换算84

Cursor

18.4%
按下载量换算51

Gemini CLI

9.01%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills