Showing archive results for 2026

Jun 29, 2026
Post comments count2
Post likes count2

Agent Harness: Working with your data, safely

Wes Steyn

Part 2 of Build your own claw and agent harness with Microsoft Agent Framework. In Part 1 we stood up a harness and gave our personal finance assistant its first abilities: a custom tool, web search, and planning. It can talk about the markets - but it can't yet touch your data, and nothing stops it from taking a sensitive action on a whim. T...

Agent Framework.NETPython
Jun 22, 2026
Post comments count0
Post likes count3

Meet your agent harness and claw

Wes Steyn

Part 1 of Build your own claw and agent harness with Microsoft Agent Framework. In the overview we said a "claw" is really just an agent harness: a loop around a model, wired up with tools, planning, memory, and more. In this first post we stand up that loop and give our personal finance assistant its first three abilities: plan...

Agent Framework.NETPython
Jun 22, 2026
Post comments count0
Post likes count1

Build your own claw and agent harness with Microsoft Agent Framework

Wes Steyn

What does it take to build your own "claw" - a capable, CLI-style agent that can plan, use tools, remember things, and safely act on your behalf? Coding agents and assistants like these can feel like magic, but underneath they are an agent harness: a loop around a language model wired up with tools, planning, memory, approvals, and observability. ...

Agent Framework.NETPython
Jun 9, 2026
Post comments count0
Post likes count0

ICYMI: Inside the Microsoft Agent Framework: How we designed a layered SDK

Shawn Henry

In case you missed it, the Command Line blog was launched last week and has a great article (by yours truly) about our SDK design philosophy with Microsoft Agent Framework. Check it out: Inside the Microsoft Agent Framework: How we designed a layered SDK   Developers are moving quickly from simple chat-based AI experiences to applica...

Agent Framework
Jun 3, 2026
Post comments count0
Post likes count0

Microsoft Agent Framework at BUILD 2026: Agent Harness, Hosted Agents, CodeAct, and more

Shawn Henry

Microsoft Agent Framework at BUILD 2026: Agent Harness, Hosted Agents, CodeAct, and more BUILD 2026 is underway, and the Microsoft Agent Framework team have a round-up of exciting announcements! Microsoft Agent Framework (MAF) is our open-source SDK and runtime for building AI agents and multi-agent workflows, with the same concepts and APIs a...

Agent Framework
May 31, 2026
Post comments count0
Post likes count0

Microsoft Agent Framework at BUILD 2026

Shawn Henry

BUILD 2026 begins on Tuesday, June 2, and there will be tons of exciting announcements from the Microsoft Agent Framework team, Microsoft Foundry, and all things Microsoft AI. If you're traveling to San Francisco for BUILD, be sure to stop by the Microsoft Foundry booths to chat with folks from the Agent Framework team - there'll be stickers! ...

Agent Framework
May 22, 2026
Post comments count0
Post likes count1

Agent Skills for Python: File, Code, and Class – Composed in One Provider

Sergey Menshykh

Python developers working with Agent Skills can now author skills as files on disk, as inline Python code, or as reusable classes - and mix them freely through composable source classes that handle discovery, filtering, and deduplication. A skill living in your local repository, one installed from your organization's internal package index, and a q...

Agent FrameworkPythonAgent Skills
May 20, 2026
Post comments count0
Post likes count0

Stop prompt injection from hijacking your agent, new security capabilities now released within Agent Framework

Eduard,
Shruti

Prompt injection is the #1 risk on the OWASP LLM Top 10, and most agents in production today defend against it with one of two heuristics: a defensive system prompt, or a hand-rolled allowlist. Neither is deterministic. Both fail silently the day someone slips a line into an issue body, an email, or a tool result. With FIDES (Flow Integri...

AnnouncementPythonSamples
May 14, 2026
Post comments count0
Post likes count1

Governance at the Speed of Agents: Microsoft Agent Framework and Agent Governance Toolkit, Better Together

Imran,
Shawn

Building powerful AI agents is only half the story, running them safely in production is the real challenge. As customers adopt Microsoft Agent Framework for agent orchestration, a clear need has emerged for robust, built-in governance. In this post, Imran Siddique from the AGT team walks through how Agent Governance Toolkit pairs with Agent Framew...

Agent Framework.NETA2A
May 7, 2026
Post comments count1
Post likes count0

A Tour of Handoff Orchestration Pattern

Jacob Alber

A Tour of the Handoff Orchestration Pattern Most multi-agent systems start out simple: a router agent receives a user request, picks the right specialist, and forwards the conversation. As long as each specialist can complete its task in one pass, that model works fine. The first time it breaks is when an agent needs more: a follow-up questio...

Agent Framework.NETPython