Orkeon.Interop.AgentFramework 1.0.0-rc.4

Prefix Reserved
This is a prerelease version of Orkeon.Interop.AgentFramework.
dotnet add package Orkeon.Interop.AgentFramework --version 1.0.0-rc.4
                    
NuGet\Install-Package Orkeon.Interop.AgentFramework -Version 1.0.0-rc.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Orkeon.Interop.AgentFramework" Version="1.0.0-rc.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Orkeon.Interop.AgentFramework" Version="1.0.0-rc.4" />
                    
Directory.Packages.props
<PackageReference Include="Orkeon.Interop.AgentFramework" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Orkeon.Interop.AgentFramework --version 1.0.0-rc.4
                    
#r "nuget: Orkeon.Interop.AgentFramework, 1.0.0-rc.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Orkeon.Interop.AgentFramework@1.0.0-rc.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Orkeon.Interop.AgentFramework&version=1.0.0-rc.4&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Orkeon.Interop.AgentFramework&version=1.0.0-rc.4&prerelease
                    
Install as a Cake Tool

Orkeon.Interop.AgentFramework

Part of Orkeon — AI agent teams that stay inside the lines.

The bridge to Microsoft Agent Framework (Microsoft.Agents.AI), in both directions:

  • An Orkeon crew as a MAF AIAgent — CrewAgent. Every RunAsync is one crew kickoff: the conversation becomes the crew's initial context, the crew's final output comes back as the assistant message, token telemetry as Usage. Drop it into any MAF workflow, orchestration or AsAIFunction() chain.
  • A MAF AIAgent inside an Orkeon crew, two ways:
    • as the brain of an Orkeon agent — new AgentBuilder().WithAgentFrameworkAgent(agent): the Orkeon agent keeps its role, goal and tasks; what answers is the MAF agent, on one continuous MAF session (AIAgentLlmProvider);
    • as a tool — WithAgentFrameworkTool(agent) (AIAgentTool): the Orkeon agent delegates to the MAF agent like to any other tool, the mirror of MAF's AsAIFunction().
// Orkeon -> MAF
services.AddOrkeonAgentFramework();
var crewAgent = host.Services.GetRequiredService<ICrewAgentFactory>().Create(crew);
var answer = await crewAgent.RunAsync("Summarise last week's incidents");

// MAF -> Orkeon
AIAgent reviewer = chatClient.AsAIAgent(name: "Reviewer", instructions: "Review code for security issues.");
var orkeonAgent = new AgentBuilder().Role("Auditor").Goal("Audit the change")
    .WithAgentFrameworkTool(reviewer)      // delegate to it...
    .WithAgentFrameworkAgent(reviewer)     // ...or let it answer for the Orkeon agent
    .Build();

Depends on the Orkeon umbrella package and on Microsoft.Agents.AI.Abstractions. The runnable example lives in examples/interop/agent-framework/.

MIT © Orkeon Contributors

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-rc.4 43 9/22/2026