Eidet.Sdk.Anthropic 0.12.0

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

<div align="center"> <img src="https://raw.githubusercontent.com/stevehansen/eidet/main/logo-512x512.png" alt="Eidet" width="96" height="96"> </div>

Eidet.Sdk.Anthropic

Anthropic SDK adapter for Eidet — plug Eidet in as the Claude memory-tool (memory_20250818) backend.

Install

dotnet add package Eidet.Sdk.Anthropic

Usage

Two lines to make a locally running Eidet daemon the persistent memory backend for any Claude tool-use loop:

using Anthropic;
using Anthropic.Models.Beta.Messages;
using Eidet.Sdk.Anthropic;

var client = new AnthropicClient();
using var memory = new EidetMemoryTool(repo: "P:/MyApp"); // defaults: localhost daemon, cwd

var runner = client.Beta.Messages.ToolRunner(
    new MessageCreateParams
    {
        Model = "claude-opus-4-8",
        MaxTokens = 4096,
        Messages = [new() { Role = Role.User, Content = "Refactor auth; remember what you learn." }],
    },
    [memory]);

await foreach (var message in runner) { /* Claude drives view/create/str_replace against Eidet */ }

Memory files are stored byte-exact in Eidet's memoryfiles collection — path-safe (everything constrained under /memories), secret-gated (writes containing credentials are rejected with a visible tool error), and size-capped. They persist across sessions and processes.

Requires a running Eidet daemon (dotnet tool install -g eidet && eidet serve). Pass apiKey: when the daemon has API-key auth enabled.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.12.0 141 8/11/2026
0.11.6 87 8/10/2026
0.11.4 88 8/9/2026
0.11.3 100 8/8/2026
0.11.0 89 8/7/2026
0.10.0 109 7/21/2026
0.9.1 111 7/12/2026
0.9.0 96 7/12/2026