MeshFlow
  • Cloud PlatformDeployIntegrationsInit CLIWhy MeshFlow
  • DocsLearn
  • CustomersCertificationBlogChangelogCommunity
  • Pricing
Sign inGet started
Pricing
Sign inGet started
MeshFlow

The production-safe standard for agentic AI.
Apache 2.0 — free forever.

Product
  • Pricing
  • Cloud
  • Compare
  • Init CLI
  • Changelog
Docs
  • Quickstart
  • Core concepts
  • Compliance guide
  • Token optimization
  • API reference
Resources
  • Blog
  • Customers
  • Community
  • PyPI
  • GitHub
Company
  • Discord
  • Twitter
  • Security
  • License
MeshFlow © 2026 · Yaya Systems · Apache 2.0
All systems operational
MeshFlowdocs
Search docs...⌘K
v1.13.0 GitHub Discord
Getting startedQuickstartInstallationCore conceptsHarness architectureSkills vs ToolsSandbox mode
GuidesBuilding agentsMulti-agent workflowsModel RoutersCost AnalyticsCompliance guideToken optimization
Claude & AIAdvisor patternThinking budgetsDynamic workflowsContext compactionTool streaming
Governancemeshflow-forensicZero-Trust PoliciesSOC 2 assertionEU AI ActProduction Readiness
IntegrationsOpenAI Agents SDKLangGraphCrewAIMCP ToolsTypeScript SDKOTel / OTLPAutoGen 0.4+
API ReferenceWorkflowAgentCostCapAdvisorAgentCostRegressionGate
Docs/Guides/Multi-agent workflows

Multi-agent workflows

MeshFlow ships 21 pre-built specialist agents, a Team API, GroupChat, Crew-compatible primitives, and typed StateGraph orchestration. Team policies apply across every agent run.

Supervised team

python
from meshflow import Team, agents

team = Team(
name="research_team",
agents=[agents.ResearchAgent(), agents.WriterAgent(), agents.CriticAgent()],
pattern="supervised",
policy="standard",
)

Parallel execution

python
team = Team(name="parallel_research", agents=[planner, market, competitor, synthesizer], pattern="parallel")
result = await team.run("Compare agentic AI frameworks")
Previous
Building agents
Next
Compliance guide
On this pageSequential crewParallel execution