用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/endman100/skill-router-nexus --skill comfyui-request命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
⚠️ MANDATORY ENTRY POINT — ALWAYS read this file FIRST before: (1) planning any task (plan / blueprint / roadmap / how to implement), (2) reviewing a plan (review / audit / stress-test), (3) executing a task (implement / build / run), (4) verifying completion (done / verify / submit / PR / confirm finished), (5) accessing, querying, or adding any sub-skill. Do NOT load or look up any sub-skill directly. Every agent, every task, and every skill query must route through this file first. | ⚠️ 強制入口 — 以下情境必須先完整讀取本檔再行動:(1) 制定計畫(計畫、規劃、plan、blueprint、怎麼做);(2) 計畫審查(review、審查、壓力測試);(3) 執行任務(執行、implement、build);(4) 驗證完成(驗證、done、verify、確認完成、submit、PR);(5) 存取、查詢或新增任何 skill。嚴禁直接載入或查詢子 skill、嚴禁繞過本檔。
Create complete stylized 3D animated shorts from a story idea through an ordered production workflow covering project brief, story outline, character and environment cards, standardized shot planning, text or optional pencil storyboards, video-model selection, single-shot generation, assembly, BGM matching, and final review. Use when the user wants an end-to-end narrative animation workflow with strong character consistency, scene continuity, timing, camera, performance, and audio control. Not for single images, simple edits, photorealistic live action, or one standalone clip.
从商业史、管理史、技术史、职业史和制度史中寻找与现实困境同构的成功、失败和反例,提炼带条件的重复机制。用户要求历史类比、经典解法或标准答案时使用。
基于 SOC 职业分类
正在显示 SKILL.md
| name | comfyui-request |
| description | Send a workflow request to ComfyUI and return image results. |
| metadata | {"clawdbot":{"emoji":"🧩","requires":{"bins":["node","curl"]},"entry":"bin/cli.js"}} |
Send a workflow request to a running ComfyUI instance and return the generated image URL or base64 data.
COMFYUI_HOST: Host/IP of the ComfyUI server (default 192.168.179.111).COMFYUI_PORT: Port of the ComfyUI server (default 28188).COMFYUI_USER: Optional username for basic auth.COMFYUI_PASS: Optional password for basic auth.These can be set via environment variables or a .env file in the skill directory.
{
"action": "run",
"workflow": { ... } // JSON workflow object
}
The skill will POST to http://{host}:{port}/run and return the response JSON.
{
"action": "run",
"workflow": {
"nodes": [ ... ],
"edges": [ ... ]
}
}
The skill expects the ComfyUI server to expose the /run endpoint and return a JSON object containing an image field with a URL or base64 string.