Microsoft Build 2026 (June 2-3) is the biggest agent-framework event of the year. Here's what shipped, what it means for your projects, and what to build in the 90-day window.
The unified SDK for .NET and Python, merging Semantic Kernel and AutoGen into one framework. MIT-licensed, production-ready.
YAML-defined ambient agents for Windows machines, Windows 365 Cloud PCs, and Azure Arc-enabled edge devices.
Federated execution across on-prem + cloud. Same agent code, Mesh handles routing and placement. GA targeted Q4 2026.
Agent Framework agents emit OTel traces into Foundry. Tool calls, reasoning steps, multi-agent handoffs — all traceable in one dashboard.
Sandboxed Python code execution in micro-VMs. Run generated code with process-level isolation, configurable memory limits, and import whitelists.
Token usage, latency (p50/p95/p99), run success rate, evaluator scores, cost tracking — all in the Foundry Operate view.
| Window | What's Happening | Your Move |
|---|---|---|
| Week 1 (June 2-8) | WAF samples drop, Mesh preview opens | Build a WAF ambient agent, test escalation |
| Weeks 2-3 (June 9-22) | Developers hit first WAF/YAML questions | Publish patterns, templates, guides |
| Month 2 (July) | Copilot Extensions SDK opens, Polaris preview | Build Copilot Extensions for your agents |
| Month 3 (August) | Polaris becomes default, enterprise adoption | Production migration guides, cost comparisons |
| Q4 2026 | Agent Mesh GA | Enterprise deployment guides, multi-site orchestration |
from microsoft.agentframework import Agent, AgentSession
agent = Agent(
name="research-agent",
instructions="You are a research assistant.",
tools=[search_web, summarize]
)
session = AgentSession(agent=agent)
result = await session.run("Summarize the latest Agent Framework docs")
print(result)
from microsoft.agentframework import Agent, TracingConfig
agent = Agent(
name="traced-agent",
tools=[fetch, process],
tracing=TracingConfig(
backend="foundry",
include_tool_io=True,
sample_rate=1.0
)
)
agent:
name: "drift-detector"
version: "1.0"
runtime: "local"
trigger: "schedule"
schedule: "*/15 * * * *"
tools:
- git-diff
- notify-teams
escalation:
condition: "diff_size > 500_lines"
target: "cloud-pc"
This guide covers the essentials. The full Microsoft Agent Framework Quickstart includes 11 chapters, 35+ code templates, deployment configs, and the complete Build 2026 survival guide with session map.
Get the Quickstart — $39 View All Products