project-structure
Explains the project structure of the agent-framework .NET solution
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "project-structure" description: "Explains the project structure of the agent-framework .NET solution" license: "MIT" --- # 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 tests ``` ## Main 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) |
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

