
project-structure
✓ Official★ 11,900by microsoft · part of microsoft/agent-framework
Explains the project structure of the agent-framework .NET solution
🔥🔥✓ VerifiedFreeQuick setup
🔒 Repo-maintenance skill. It exists to help maintain microsoft/agent-framework itself — it's only useful if you contribute code to that project.
This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.
name: project-structure description: Explains the project structure of the agent-framework .NET solution
Agent Framework .NET Project Structure
dotnet/
├── src/
│ ├── Microsoft.Agents.AI/ # Core AI agent implementations
│ ├── Microsoft.Agents.AI.Abstractions/ # Core AI agent abstractions
│ ├── Microsoft.Agents.AI.A2A/ # Agent-to-Agent (A2A) provider
│ ├── Microsoft.Agents.AI.OpenAI/ # OpenAI provider
│ ├── Microsoft.Agents.AI.Foundry/ # Microsoft Foundry Agents (v2) provider
│ ├── Microsoft.Agents.AI.AzureAI.Persistent/ # Legacy Microsoft Foundry Agents (v1) provider
│ ├── Microsoft.Agents.AI.Anthropic/ # Anthropic provider
│ ├── Microsoft.Agents.AI.Workflows/ # Workflow orchestration
│ └── ... # Other packages
├── samples/ # Sample applications
└── tests/ # Unit and integration testsMain Folders
| Folder | Contents |
|---|---|
src/ | Source code projects |
tests/ | Test projects — named <Source-Code-Project>.UnitTests or <Source-Code-Project>.IntegrationTests |
samples/ | Sample projects |
src/Shared, src/LegacySupport | Shared code files included by multiple source code projects (see README.md files in these folders or their subdirectories for instructions on how to include them in a project) |
Copy & paste — that's it
npx skills add https://github.com/microsoft/agent-framework --skill project-structureRun this in your project — your agent picks the skill up automatically.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.