Agents.Git 0.1.0

dotnet add package Agents.Git --version 0.1.0
                    
NuGet\Install-Package Agents.Git -Version 0.1.0
                    
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="Agents.Git" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Agents.Git" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Agents.Git" />
                    
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 Agents.Git --version 0.1.0
                    
#r "nuget: Agents.Git, 0.1.0"
                    
#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 Agents.Git@0.1.0
                    
#: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=Agents.Git&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Agents.Git&version=0.1.0
                    
Install as a Cake Tool

Agents.NET SDK

A .NET framework for building AI agents with multi-provider support, tool execution, and pipeline middleware.

Features

  • Multi-Provider: OpenAI, Anthropic Claude, Ollama, Kiro (AWS), Google Gemini
  • Tool System: Built-in tools (file I/O, shell, search, image generation) + custom tool support
  • Pipeline: Middleware chain (retry, context guard, fallback, tracing)
  • Agent Loop: AI + tool execution cycle with automatic iteration
  • Session Management: Persistent conversations with compaction
  • Memory System: Hybrid retrieval (BM25 + semantic) with time decay
  • Git Integration: Unified API for Gitea, GitHub, GitLab
  • Sandbox: Docker container isolation for parallel task execution

Quick Start

// Minimal setup — just OpenAI
dotnet add package Agents.SDK
dotnet add package Agents.SDK.Providers.OpenAI

// Or all providers at once
dotnet add package Agents.SDK.Providers.All
using Agents.SDK.Providers;

// Register providers at startup
OpenAIProviderRegistration.Register();

// Create a provider
var provider = ProviderFactory.CreateProvider("openai", config, logger);
await provider.InitializeAsync();

// Chat
var response = await provider.ChatAsync(new ChatRequest
{
    Messages = [new ChatMessage { Role = "user", Content = "Hello!" }]
});

Packages

Package Description
Agents.SDK.Abstractions Pure interfaces and models (zero dependencies)
Agents.SDK Core runtime (pipeline, tools, diagnostics)
Agents.SDK.Auth Authentication (OAuth, profile management)
Agents.SDK.Providers.OpenAI OpenAI + compatible providers
Agents.SDK.Providers.Anthropic Anthropic Claude
Agents.SDK.Providers.Ollama Ollama local models
Agents.SDK.Providers.Kiro Kiro (AWS)
Agents.SDK.Providers.Antigravity Google Gemini
Agents.SDK.Providers.All Meta-package (all providers)
Agents.Git Git platform abstraction (Gitea/GitHub/GitLab)

License

MIT

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
0.1.0 118 3/11/2026