By twwch
Generate importable JSON and YAML workflow files for ComfyUI, Coze, and Dify from natural language descriptions, enabling rapid creation and deployment of AI image/video generation pipelines with SDXL/FLUX models, low-code automation bots, and app workflows without manual node wiring.
npx claudepluginhub twwch/workflow-skillGenerate Dify workflow DSL files from natural language descriptions. Produces importable YAML/JSON workflow definitions with correct node schemas, edges, and layout.
Generate ready-to-use ComfyUI workflow JSON files through natural language conversation. Users describe what they want to create, and this skill produces valid ComfyUI API-format JSON that can be directly imported and executed.
Generate Coze workflow YAML files packaged as ZIP for import into coze.cn cloud platform. Produces importable workflow definitions with correct node schemas, edges, and layout.
中文 |
Generate importable workflow files from natural language descriptions.
Describe your workflow in one sentence, and get a complete workflow definition file ready to import into Coze, Dify, or ComfyUI — including node configuration, edges, layout, and all platform-specific format requirements.
git clone https://github.com/twwch/workflow-skill.git /tmp/workflow-skill
cp -r /tmp/workflow-skill/skills/coze-workflow ~/.claude/skills/
cp -r /tmp/workflow-skill/skills/dify-workflow ~/.claude/skills/
cp -r /tmp/workflow-skill/skills/comfyui-workflow ~/.claude/skills/

Generate .zip files for direct import into coze.cn via the UI import dialog.
/coze-workflow 创建一个金融研报自动生成工作流:5路并行数据采集 → 分章撰写 → 风控审核 → 发布
The skill generates a Python script using verified template functions, then runs it to produce a ZIP with byte-level Go archive/zip compatibility.




start / end / llm / loop / plugin / variable_merge / image_generate / code / http / condition / intent / knowledge
Generate .dify.yml / .dify.json files for import into Dify via UI "Import DSL".
/dify-workflow 创建一个客服工单自动分类和回复工作流


start / end / llm / code / http-request / if-else / iteration / knowledge-retrieval / variable-aggregator / template-transform / question-classifier / parameter-extractor / tool / answer
Generate .json files (Litegraph format) for drag & drop into ComfyUI.
/comfyui-workflow 创建一个 Flux 文生图 + WAN2.1 图生视频工作流




models field for automatic missing model detectionworkflow-skill/
├── .claude-plugin/
│ ├── plugin.json
│ └── marketplace.json
├── skills/
│ ├── coze-workflow/
│ │ ├── SKILL.md
│ │ ├── scripts/ # build_coze_zip.py + coze_yaml_builder.py
│ │ ├── examples/
│ │ └── references/
│ ├── dify-workflow/
│ │ ├── SKILL.md
│ │ ├── examples/
│ │ └── references/
│ └── comfyui-workflow/
│ ├── SKILL.md
│ ├── references/
│ └── templates/
├── images/
├── scripts/
└── README.md
Discovered through byte-level reverse engineering (16 rounds of experiments):
Workflow-<NAME>-draft-<DIGITS>/
├── MANIFEST.yml
└── workflow/<NAME>-draft.yaml
Requirements: Go archive/zip compatible (flags=0x08, vmade=20, time/date=0x0000), 4-space YAML indentation, double-quoted IDs, complete 14-field llmParam.
Standard Dify YAML DSL with version: "0.6.0", node IDs as 13-digit timestamps, {{#nodeId.variableName#}} variable references.
Standard Litegraph UI JSON with node definitions extracted from ComfyUI source, auto model download support via models array.
MIT
Share bugs, ideas, or general feedback.
Design complex n8n workflows with AI assistance - loops, branching, error handling
Generate n8n automation workflows from natural language descriptions
Claude Code plugin for ComfyUI — generate images, visualize workflows, manage models, and explore custom nodes
Claude Code plugin for n8n-as-code. Adds the n8n-architect skill and uses the n8nac CLI as its local knowledge/runtime bridge.
Workflow development tools