AI Agent Workflow Designer

Generate multi-agent orchestration configurations (CrewAI / AutoGen compatible).

Agent Definitions

Workflow YAML / JSON

{
  "name": "AI Agent Swarm",
  "process": "sequential",
  "agents": [
    {
      "role": "Researcher",
      "goal": "Find latest AI news",
      "backstory": "Expert at searching and synthesizing info",
      "allow_delegation": true,
      "verbose": true
    },
    {
      "role": "Writer",
      "goal": "Write a blog post",
      "backstory": "Professional tech blogger",
      "allow_delegation": true,
      "verbose": true
    }
  ],
  "tasks": [
    {
      "description": "Perform the primary goal: Find latest AI news",
      "expected_output": "A comprehensive report or draft",
      "agent": "Researcher"
    },
    {
      "description": "Perform the primary goal: Write a blog post",
      "expected_output": "A comprehensive report or draft",
      "agent": "Writer"
    }
  ]
}