Eidet.Sdk 0.9.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Eidet.Sdk --version 0.9.0
                    
NuGet\Install-Package Eidet.Sdk -Version 0.9.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" Version="0.9.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Eidet.Sdk" Version="0.9.0" />
                    
Directory.Packages.props
<PackageReference Include="Eidet.Sdk" />
                    
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 --version 0.9.0
                    
#r "nuget: Eidet.Sdk, 0.9.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@0.9.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&version=0.9.0
                    
Install as a Cake Addin
#tool nuget:?package=Eidet.Sdk&version=0.9.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

C# client SDK for Eidet — long-term memory for AI coding agents.

Install

dotnet add package Eidet.Sdk

Usage

using Eidet.Sdk;

using var client = new EidetClient(); // defaults to http://localhost:19380

// Store a memory
var result = await client.StoreAsync(new StoreRequest
{
    Repo = "/path/to/project",
    Content = "The auth module uses JWT with RS256 signing",
    Type = MemoryType.Observation,
    Tags = ["auth", "jwt"],
});

// Search memories
var results = await client.RecallAsync("/path/to/project", "authentication");

// Get session context (L0 identity + L1 top memories, < 600 tokens)
var context = await client.GetContextAsync("/path/to/project");

// Browse all memories
var page = await client.BrowseAsync("/path/to/project", skip: 0, take: 50);

// Feedback loop
await client.FeedbackAsync("memories/...", wasUsed: true);  // echo (useful)
await client.FeedbackAsync("memories/...", wasUsed: false); // fizzle (irrelevant)

API Key Authentication

using var client = new EidetClient("http://localhost:19380", apiKey: "your-api-key");

All Methods

Method Description
StoreAsync(request) Store a memory (observation, insight, procedure, heuristic; Negative/Valence for dead-ends, Stage for subtask scoping)
RecallAsync(repo, query, ...) Search memories by meaning and keywords (filters: type, tags, valence, stage, crossRepo)
GetContextAsync(repo) Get compact session context (< 600 tokens)
GetMemoryAsync(id) Get a specific memory by ID (includes ContentSha256 for optimistic concurrency)
UpdateAsync(id, request) Update a memory (content changes create versions; ExpectedContentSha256 precondition)
RedactAsync(id, reason) Scrub a memory's content to a tombstone
ForgetAsync(id, reason?) Soft-delete a memory
FeedbackAsync(memoryId, wasUsed, reason?) Echo (useful) or fizzle (irrelevant) feedback
GetHistoryAsync(id) Get version chain for a memory
BrowseAsync(repo, ...) Paginated memory listing
GetGraphAsync(repo, limit?) Graph data for visualization
GetReposAsync() List all known repositories
IntakeAsync(repo) Ingest project files as seed memories
IntakeGitAsync(repo, options?) Seed memories from git commit history
IntakeClaudeMemoryAsync(repo, dryRun?) Import Claude Code's native per-project memory
ConsolidateAsync(repo) Merge related observations into insights
MaintenanceAsync(repo) Run maintenance pipeline
ExportMarkdownAsync(repo, format?) Export memories as markdown ("agents" for AGENTS.md shape)
HealthAsync() Health check
StatusAsync() Service status and stats
IsAvailableAsync() Check if service is reachable

Requirements

  • Eidet service running locally (eidet serve or installed as system service)
  • .NET 8.0+

License

MIT

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.
  • net8.0

    • No dependencies.

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.14.1 115 9/4/2026
0.14.0 92 9/4/2026
0.13.0 91 9/1/2026
0.12.0 110 8/11/2026
0.11.6 104 8/10/2026
0.11.4 105 8/9/2026
0.11.3 116 8/8/2026
0.11.0 110 8/7/2026
0.10.0 129 7/21/2026
0.9.1 117 7/12/2026
0.9.0 117 7/12/2026
0.8.0 129 6/24/2026
0.7.0 132 6/12/2026
0.6.0 123 6/5/2026
0.5.2 120 5/13/2026
0.5.1 114 5/13/2026
0.5.0 139 5/8/2026
0.4.2 139 4/26/2026
0.4.1 146 4/14/2026
0.4.0 145 4/13/2026
Loading failed