POC template for Microsoft Agent Framework agentic harness — skills, MCP, tools system modeled after Claude Code architecture
// readme
Microsoft Agentic Harness
If you’ve ever used Claude Code and wondered “how does this thing actually work under the hood?” — this project is an answer to that question, built on the Microsoft stack.
The Agentic Harness is a proof-of-concept that reconstructs the architecture behind modern AI coding agents: the skills system that decides what an agent knows, the tool system that decides what it can do, the context budget that decides how much it can hold in its head at once, the orchestration loop that ties it all together, and the meta-harness that automatically improves the agent’s own configuration over time. It runs on .NET 10, uses Clean Architecture, and speaks the same protocols (MCP, A2A) that the broader agent ecosystem is converging on.
It’s not a chatbot wrapper. It’s the plumbing that makes agents feel intelligent.
The Problem
Most “agent” implementations are a prompt, an API call, and a prayer. They work for demos. They fall apart when you need an agent that can:
- Use tools safely — not just call functions, but do so within a security sandbox where file access is restricted to explicitly allowed paths and every…