Generate importable workflow definition files for ComfyUI, Coze, and Dify from natural language descriptions, supporting multi-modal AI tasks and automation workflows
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 Dify workflow DSL files from natural language descriptions. Produces importable YAML/JSON workflow definitions with correct node schemas, edges, and layout.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
中文 |
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".
Tracked Dify version:
dify-api 1.13.3· DSL0.6.0· source pinned at commiteca0cdc(2026-04-04). Schema rules and node references inskills/dify-workflow/were last verified against this snapshot — bump it after pulling a newersource/dify/and re-checking the node entity changes.
/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. Verified against dify-api 1.13.3 (commit eca0cdc, 2026-04-04). When upgrading dify, re-check:
npx claudepluginhub lingyichen-ai/workflow-skillCore workflow engine - Execute workflow-as-markdown definitions with validation-driven completion
Design complex n8n workflows with AI assistance - loops, branching, error handling
Multi-agent workflow orchestration via YAML. Ships the conductor skill so the assistant can validate, run, debug, and author workflow files for the conductor CLI.
Expert LangGraph/LangChain agent builder with MCP integration, workflow orchestration, and CLI accessibility. Creates production-ready AI agents that are reachable via command line and Claude Code.
Claude Code plugin for n8n-as-code. Adds the n8n-architect skill and uses the n8nac CLI as its local knowledge/runtime bridge.
Build, test, and deploy n8n workflows through incremental REST API automation. Convert discovery call transcripts into implementation-ready automation blueprints.