| name | openserv-multi-agent-workflows |
| description | Multi-agent workflow examples to work together on the OpenServ Platform. Covers agent discovery, multi-agent workspaces, task dependencies, and workflow orchestration using the Platform Client. Read reference.md for the full API reference. Read openserv-agent-sdk and openserv-client for building and running agents. |
Multi-Agent Workflows on OpenServ
Build workflows where multiple AI agents collaborate to complete complex tasks.
Reference files:
reference.md - Workflow patterns, declarative sync, triggers, monitoring
troubleshooting.md - Common issues and solutions
examples/ - Complete pipeline examples (blog, youtube-to-blog, etc.)
Quick Start
See examples/ for complete runnable examples:
blog-pipeline.md - Simple 2-agent workflow (research → write)
content-creation-pipeline.md - 3-agent workflow (research → write → image)
life-coaching-pipeline.md - Complex 6-agent workflow with comprehensive input schema
Recommended pattern using workflows.sync():
- Authenticate with
client.authenticate()
- Find agents with
client.agents.listMarketplace()
- Create workflow with
client.workflows.create() including:
- Triggers
- Tasks
- Edges (⚠️ CRITICAL - connects triggers and tasks together)
⚠️ CRITICAL: Always define edges when creating workflows. Setting task dependencies is NOT enough - you must create workflow edges to actually connect triggers to tasks and tasks to each other.