Orkeon 1.0.0-rc.4

Prefix Reserved
This is a prerelease version of Orkeon.
dotnet add package Orkeon --version 1.0.0-rc.4
                    
NuGet\Install-Package Orkeon -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" 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" Version="1.0.0-rc.4" />
                    
Directory.Packages.props
<PackageReference Include="Orkeon" />
                    
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 --version 1.0.0-rc.4
                    
#r "nuget: Orkeon, 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@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&version=1.0.0-rc.4&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Orkeon&version=1.0.0-rc.4&prerelease
                    
Install as a Cake Tool

Orkeon

Build and orchestrate AI agent teams in .NET, described in declarative YAML, programmatic TypeScript (.ork.ts) or pure C#.

Orkeon is the complete framework in a single package: the domain model (Agent, Crew, CrewTask, the 6 orchestration modes), the application services, and the adapters — 16 LLM providers (OpenAI, Anthropic, Azure OpenAI, Ollama, Mistral, DeepSeek, Kimi, Qwen, TogetherAI, HuggingFace, Z.AI, Gemini, Grok, MiniMax, and the OpenRouter and Mammouth AI aggregators), 6 memory stores (InMemory, Redis, SQLite, ChromaDB, Pinecone, LanceDB), the staged RAG pipeline with its corrective graph, the RaggableTree semantic codebase analysis, the virtual file system, and the A2A channel. One install, a working framework.

The package carries the framework assemblies (Orkeon.Domain, Orkeon.Application, Orkeon.Infrastructure, Orkeon.Rag, Orkeon.Analysis, the shared contracts and constants) — namespaces are unchanged, so code written against the earlier per-layer packages compiles as-is.

Install

dotnet add package Orkeon --prerelease

Add Orkeon.Tools for the built-in agent tool families, and Orkeon.Rag.Onnx for the offline ONNX reranker.

Quick start

using Orkeon.Domain.Agent;
using Orkeon.Domain.Crew;

var crew = new CrewBuilder()
    .Goal("Complete research")
    .Sequential()
    .WithAgent(a => a.Role("Researcher").Goal("Find data"))
    .WithTask(t => t.Description("Search web").ExpectedOutput("Report"))
    .Build();

Documentation

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 (5)

Showing the top 5 NuGet packages that depend on Orkeon:

Package Downloads
Orkeon.Rag.Onnx

Opt-in ONNX cross-encoder reranker for the Orkeon RAG pipeline (ms-marco-MiniLM-L-6-v2, offline; AddOrkeonOnnxReranker).

Orkeon.Tools.Embeddings.Local

Opt-in local on-device embeddings for Orkeon (SmartComponents BGE-micro-v2 ONNX, 384 dims, CPU, no API key).

Orkeon.Tools

The built-in tool families for Orkeon agents in one package: file system, web and HTTP, structured data (CSV, PDF, XLSX, XML, databases), code execution, EventHub messaging, RAG search and ingestion, and RaggableTree codebase analysis.

Orkeon.Hosting.Aspire

.NET Aspire hosting integration for Orkeon: add the orkeon-host service daemon or a single crew run to an AppHost, with the settings, mounts and OTLP export the Aspire dashboard reads.

Orkeon.Interop.AgentFramework

Microsoft Agent Framework interop for Orkeon: run an Orkeon crew as an AIAgent, and use an AIAgent as the brain or as a tool of an Orkeon agent.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-rc.4 45 9/22/2026
1.0.0-rc.3 84 9/9/2026