skillfed

agent-framework-orchestrations

Orchestration patterns for Microsoft Agent Framework. Includes SequentialBuilder, ConcurrentBuilder, HandoffBuilder, GroupChatBuilder, and MagenticBuilder.

agent-framework-orchestrations v1.1.0 345.3K downloads/30d#7,365 on PyPI12,804
Permissive license Active released

What it is and what it does

Agent Framework Orchestrations is a builder library for composing multi-agent workflows on top of Microsoft Agent Framework. It abstracts common orchestration patterns—sequential execution with context passing, parallel fan-out with aggregation, decentralized agent routing, orchestrator-directed conversations, and the Magentic One multi-agent pattern—into reusable builder classes. Each builder constructs a Workflow object that chains or coordinates agents, with fine-grained control over which agent outputs appear as final Workflow Output versus Intermediate Output (visible as reasoning steps).

The package depends only on agent-framework-core and targets Python 3.10+. It is designed for developers building agentic systems who need to move beyond single-agent patterns and coordinate multiple specialized agents toward a common goal. The builders handle the plumbing of message passing, context preservation, and output selection, so you focus on defining participants and orchestration logic rather than low-level coordination.

Use it for:

  • Chain multiple agents in sequence (e.g., research → analysis → writing) while preserving intermediate outputs for transparency.
  • Fan out tasks to parallel agents (e.g., multiple data sources) and aggregate results into a single response.
  • Route requests between agents based on content (e.g., triage → billing or support) without a central orchestrator.
  • Facilitate multi-agent conversations where an orchestrator selects which agent speaks next based on context.
  • Implement the Magentic One pattern for sophisticated multi-agent collaboration with a manager agent coordinating specialists.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides high-level builder patterns for orchestrating multi-agent workflows in Microsoft Agent Framework, including sequential, concurrent, handoff, group chat, and Magentic One orchestration strategies.

Yes. The package is production-stable, actively maintained, has no known vulnerabilities, and low install friction. It fills a clear gap for developers building multi-agent systems on Agent Framework who need structured orchestration patterns beyond single-agent logic. Install it if you are composing multiple agents and want to avoid reimplementing coordination logic.

Install

agent-framework-orchestrations on PyPI

pip

pip install agent-framework-orchestrations

uv

uv add agent-framework-orchestrations

poetry

poetry add agent-framework-orchestrations

Installing agent-framework-orchestrations

Before you install

Low install friction with a single pure-Python dependency (agent-framework-core). Package is actively maintained with a recent release and no known vulnerabilities.

License in practice

Permissive license allows use in most commercial and open-source projects without significant restrictions.

Quickstart

pip install agent-framework-orchestrations

from agent_framework.orchestrations import SequentialBuilder

workflow = SequentialBuilder(participants=[agent1, agent2, agent3]).build()

Requires Python 3.10 or later; agent-framework-core must be installed as a runtime dependency.

Verify before relying

  • Whether intermediate_output_from='all_other' and output_from selections work reliably across all builder types in production use.
  • Performance characteristics and scaling limits when orchestrating large numbers of agents in concurrent or group chat patterns.
  • Whether the Magentic One pattern implementation matches the original research or has Microsoft-specific modifications.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 1 — agent-framework-core
Maintenance actively maintained — 0 days since the last release
Last repo commit
First released
Downloads 345,343/month — #7,365 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: agent_framework_orchestrations-1.1.0-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Typing :: Typed

Tags

multi-agent orchestration patternsagent workflow builderssequential concurrent agent executionagent handoff routinggroup chat orchestrationmagentic one patternagent framework orchestrations
multi-agent-systemsorchestration-patternsagent-framework

More Application Frameworks packages

Further reading