
Microsoft Agent Framework
- 1.8k installs
- 37.1k repo stars
- Updated July 28, 2026
- github/awesome-copilot
microsoft-agent-framework is an agent skill that Create, update, refactor, explain, or review Microsoft Agent Framework solutions using shared guidance plus language-specific references for .NET and Python.
About
The microsoft-agent-framework skill. Create, update, refactor, explain, or review Microsoft Agent Framework solutions using shared guidance plus language-specific references for .NET and Python. Microsoft Agent Framework is the unified successor to Semantic Kernel and AutoGen, combining their strengths with new capabilities. Because it is still in public preview and changes quickly, always ground implementation advice in the latest official documentation and samples rather than relying on stale knowledge. Use the **.NET** workflow when the repository contains , , , , or other .NET project files, or when the user explicitly asks for C# or .NET guidance. Follow [references/dotnet.md](references/dotnet.md). Use the **Python** workflow when the repository contains , , , or the user explicitly asks for Python guidance. Follow [references/python.md](references/python.md). The workflow follows the source SKILL.md contract with progressive reference loading, clear trigger phrases, and practical steps developers can apply directly in agent sessions.
- If the repository contains both ecosystems, match the language used by the files being edited or the user's stated targe
- If the language is ambiguous, inspect the current workspace first and then choose the closest language-specific referenc
- Read the Microsoft Agent Framework overview first: <https://learn.microsoft.com/agent-framework/overview/agent-framework
- Prefer official docs and samples for the current API surface.
- Use the Microsoft Docs MCP tooling when available to fetch up-to-date framework guidance and examples.
Microsoft Agent Framework by the numbers
- 1,792 all-time installs (skills.sh)
- +22 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #696 of 16,659 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
microsoft-agent-framework capabilities & compatibility
- Capabilities
- if the repository contains both ecosystems, matc · if the language is ambiguous, inspect the curren · read the microsoft agent framework overview firs · prefer official docs and samples for the current · use the microsoft docs mcp tooling when availabl
- Use cases
- testing · debugging · ci cd
What microsoft-agent-framework says it does
Microsoft Agent Framework is the unified successor to Semantic Kernel and AutoGen, combining their strengths with new capabilities.
Because it is still in public preview and changes quickly, always ground implementation advice in the latest official documentation and samples rather than relying on stale knowledge.
npx skills add https://github.com/github/awesome-copilot --skill microsoft-agent-frameworkAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.8k |
|---|---|
| repo stars | ★ 37.1k |
| Security audit | 2 / 3 scanners passed |
| Last updated | July 28, 2026 |
| Repository | github/awesome-copilot ↗ |
How do I apply microsoft-agent-framework correctly using the SKILL.md workflows and reference files?
Create, update, refactor, explain, or review Microsoft Agent Framework solutions using shared guidance plus language-specific references for .NET and Python.
Who is it for?
Developers and software engineers working with microsoft-agent-framework patterns from the skill documentation.
Skip if: Skip when cached docs are empty, boilerplate-only, or outside the skill documented scope.
When should I use this skill?
Create, update, refactor, explain, or review Microsoft Agent Framework solutions using shared guidance plus language-specific references for .NET and Python.
What you get
Grounded microsoft-agent-framework guidance with highlights, triggers, and evidence quotes from SKILL.md.
- Agent service scaffold
- SDK-aligned workflow implementation
Files
Microsoft Agent Framework
Use this skill when working with applications, agents, workflows, or migrations built on Microsoft Agent Framework.
Microsoft Agent Framework is the unified successor to Semantic Kernel and AutoGen, combining their strengths with new capabilities. Because it is still in public preview and changes quickly, always ground implementation advice in the latest official documentation and samples rather than relying on stale knowledge.
Determine the target language first
Choose the language workflow before making recommendations or code changes:
1. Use the .NET workflow when the repository contains .cs, .csproj, .sln, .slnx, or other .NET project files, or when the user explicitly asks for C# or .NET guidance. Follow references/dotnet.md. 2. Use the Python workflow when the repository contains .py, pyproject.toml, requirements.txt, or the user explicitly asks for Python guidance. Follow references/python.md. 3. If the repository contains both ecosystems, match the language used by the files being edited or the user's stated target. 4. If the language is ambiguous, inspect the current workspace first and then choose the closest language-specific reference.
Always consult live documentation
- Read the Microsoft Agent Framework overview first: <https://learn.microsoft.com/agent-framework/overview/agent-framework-overview>
- Prefer official docs and samples for the current API surface.
- Use the Microsoft Docs MCP tooling when available to fetch up-to-date framework guidance and examples.
- Treat older Semantic Kernel or AutoGen patterns as migration inputs, not as the default implementation model.
Shared guidance
When working with Microsoft Agent Framework in any language:
- Use async patterns for agent and workflow operations.
- Implement explicit error handling and logging.
- Prefer strong typing, clear interfaces, and maintainable composition patterns.
- Use
DefaultAzureCredentialwhen Azure authentication is appropriate. - Use agents for autonomous decision-making, ad hoc planning, conversation flows, tool usage, and MCP server interactions.
- Use workflows for multi-step orchestration, predefined execution graphs, long-running tasks, and human-in-the-loop scenarios.
- Support model providers such as Azure AI Foundry, Azure OpenAI, OpenAI, and others, but prefer Azure AI Foundry services for new projects when that matches user needs.
- Use thread-based or equivalent state handling, context providers, middleware, checkpointing, routing, and orchestration patterns when they fit the problem.
Migration guidance
- If migrating from Semantic Kernel, use the official migration guide: <https://learn.microsoft.com/agent-framework/migration-guide/from-semantic-kernel/>
- If migrating from AutoGen, use the official migration guide: <https://learn.microsoft.com/agent-framework/migration-guide/from-autogen/>
- Preserve behavior first, then adopt native Agent Framework patterns incrementally.
Workflow
1. Determine the target language and read the matching reference file. 2. Fetch the latest official docs and samples before making implementation choices. 3. Apply the shared agent and workflow guidance from this skill. 4. Use the language-specific package, repository, sample paths, and coding practices from the chosen reference. 5. When examples in the repo differ from current docs, explain the difference and follow the current supported pattern.
References
- .NET reference
- Python reference
Completion criteria
- Recommendations match the target language.
- Package names, repository paths, and sample locations match the selected ecosystem.
- Guidance reflects current Microsoft Agent Framework documentation rather than legacy assumptions.
- Migration advice calls out Semantic Kernel and AutoGen only when relevant.
Microsoft Agent Framework for .NET
Use this reference when the target project is written in C# or another .NET language.
Authoritative sources
- Repository: <https://github.com/microsoft/agent-framework/tree/main/dotnet>
- Samples: <https://github.com/microsoft/agent-framework/tree/main/dotnet/samples>
Installation
For new projects, install the package with:
dotnet add package Microsoft.Agents.AI.NET-specific guidance
- Use
async/awaitpatterns consistently for agent operations and workflow execution. - Follow .NET type-safety and dependency-injection conventions.
- Keep service registration, configuration, and authentication aligned with standard .NET hosting patterns.
- Use middleware, context providers, and orchestration components idiomatically within the .NET application model.
- Check the latest .NET samples before introducing new APIs or workflow patterns.
Microsoft Agent Framework for Python
Use this reference when the target project is written in Python.
Authoritative sources
- Repository: <https://github.com/microsoft/agent-framework/tree/main/python>
- Samples: <https://github.com/microsoft/agent-framework/tree/main/python/samples>
Installation
For new projects, install the package with:
pip install agent-frameworkPython-specific guidance
- Use modern async patterns throughout agent and workflow operations.
- Add type hints and keep APIs explicit even in dynamic code.
- Follow standard Python packaging and environment practices for dependencies and tooling.
- Use middleware, context providers, and orchestration patterns in ways that fit the Python application structure.
- Check the latest Python samples before introducing new APIs or workflow patterns.
Related skills
FAQ
Who is microsoft-agent-framework for?
Developers and software engineers working with microsoft-agent-framework patterns from the skill documentation.
When should I use microsoft-agent-framework?
Create, update, refactor, explain, or review Microsoft Agent Framework solutions using shared guidance plus language-specific references for .NET and Python.
Is microsoft-agent-framework safe to install?
Review the Security Audits panel on this page before installing in production.