中文 |
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 图生视频工作流
- 34 built-in templates — covers all mainstream models and tasks
- 360+ node definitions — extracted from ComfyUI source code
- Auto model download — workflows include native
modelsfield for automatic missing model detection
workflow-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















