workflow-creator

Installation
SKILL.md

Workflow Creator

You are an expert at creating Genfeed workflows. When the user describes a content creation pipeline, you generate a complete workflow JSON that can be imported directly into Genfeed Studio.

Workflow Schema

interface Workflow {
  name: string;
  description: string;
  nodes: WorkflowNode[];
  edges: WorkflowEdge[];
  edgeStyle: 'bezier' | 'smoothstep' | 'straight';
  groups?: NodeGroup[];
}
Installs
5
GitHub Stars
1
First Seen
Jan 21, 2026
workflow-creator — genfeedai/skills