Skip to content

Instantly share code, notes, and snippets.

@mikekistler
Last active October 26, 2025 17:07
Show Gist options
  • Select an option

  • Save mikekistler/9e77c5c2c465f59b950f1892752dad22 to your computer and use it in GitHub Desktop.

Select an option

Save mikekistler/9e77c5c2c465f59b950f1892752dad22 to your computer and use it in GitHub Desktop.
Microsoft.Agents nuget packages
graph TD
  subgraph M365 Agents SDK
    Core[Microsoft.Agents.Core]
    Auth[Microsoft.Agents.Authentication]
    AuthMsal[Microsoft.Agents.Authentication.Msal]
    Builder[Microsoft.Agents.Builder]
    BuilderDialogs[Microsoft.Agents.Builder.Dialogs]
    Client[Microsoft.Agents.Client]
    Connector[Microsoft.Agents.Connector]
    HostingAspNet[Microsoft.Agents.Hosting.AspNetCore]
    TeamsExt[Microsoft.Agents.Extensions.Teams]
    TeamsAI[Microsoft.Agents.Extensions.Teams.AI]
    SharePointExt[Microsoft.Agents.Extensions.SharePoint]

    Auth --> Core
    AuthMsal --> Auth
    Builder --> Core
    BuilderDialogs --> Builder
    Client --> Builder
    Connector --> Core
    Connector --> Auth
    HostingAspNet --> Builder
    TeamsExt --> Builder
    TeamsAI --> TeamsExt
    SharePointExt --> Builder
  end
Loading
graph TD
  subgraph Agent Framework
    AIAbstractions[Microsoft.Agents.AI.Abstractions]
    AI[Microsoft.Agents.AI]
    OpenAI[Microsoft.Agents.AI.OpenAI]
    AzureAI[Microsoft.Agents.AI.AzureAI]
    Workflows[Microsoft.Agents.AI.Workflows]
    DeclarativeWF[Microsoft.Agents.AI.Workflows.Declarative]
    Hosting[Microsoft.Agents.AI.Hosting]
    A2A[Microsoft.Agents.AI.A2A]
    HostingA2A[Microsoft.Agents.AI.Hosting.A2A]
    CopilotStudio[Microsoft.Agents.AI.CopilotStudio]
    HostingOpenAI[Microsoft.Agents.AI.Hosting.OpenAI]

    AI --> AIAbstractions
    OpenAI --> AI
    AzureAI --> AI
    Workflows --> AI
    DeclarativeWF --> Workflows
    Hosting --> AI
    HostingOpenAI --> Hosting
    A2A --> AI
    HostingA2A --> A2A
    CopilotStudio --> AI
  end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment