Eidet.Sdk
0.8.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Eidet.Sdk --version 0.8.0
NuGet\Install-Package Eidet.Sdk -Version 0.8.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.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Eidet.Sdk" Version="0.8.0" />
<PackageReference Include="Eidet.Sdk" />
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.8.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Eidet.Sdk, 0.8.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.8.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.8.0
#tool nuget:?package=Eidet.Sdk&version=0.8.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
<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 = "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.ContextAsync("/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) |
RecallAsync(repo, query, ...) |
Search memories by meaning and keywords |
ContextAsync(repo) |
Get compact session context (< 600 tokens) |
GetMemoryAsync(id) |
Get a specific memory by ID |
ForgetAsync(id, reason?) |
Soft-delete a memory |
FeedbackAsync(memoryId, wasUsed) |
Echo (useful) or fizzle (irrelevant) feedback |
HistoryAsync(id) |
Get version chain for a memory |
BrowseAsync(repo, ...) |
Paginated memory listing |
GraphAsync(repo, limit?) |
Graph data for visualization |
ReposAsync() |
List all known repositories |
IntakeAsync(repo) |
Ingest project files as seed memories |
ConsolidateAsync(repo) |
Merge related observations into insights |
MaintenanceAsync(repo) |
Run maintenance pipeline |
ExportMarkdownAsync(repo) |
Export memories as markdown |
HealthAsync() |
Health check |
StatusAsync() |
Service status and stats |
IsAvailableAsync() |
Check if service is reachable |
Requirements
- Eidet service running locally (
eidet serveor installed as system service) - .NET 8.0+
License
| Product | Versions 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 | 105 | 9/4/2026 |
| 0.14.0 | 82 | 9/4/2026 |
| 0.13.0 | 87 | 9/1/2026 |
| 0.12.0 | 107 | 8/11/2026 |
| 0.11.6 | 99 | 8/10/2026 |
| 0.11.4 | 102 | 8/9/2026 |
| 0.11.3 | 112 | 8/8/2026 |
| 0.11.0 | 107 | 8/7/2026 |
| 0.10.0 | 125 | 7/21/2026 |
| 0.9.1 | 115 | 7/12/2026 |
| 0.9.0 | 114 | 7/12/2026 |
| 0.8.0 | 129 | 6/24/2026 |
| 0.7.0 | 131 | 6/12/2026 |
| 0.6.0 | 121 | 6/5/2026 |
| 0.5.2 | 120 | 5/13/2026 |
| 0.5.1 | 114 | 5/13/2026 |
| 0.5.0 | 138 | 5/8/2026 |
| 0.4.2 | 139 | 4/26/2026 |
| 0.4.1 | 146 | 4/14/2026 |
| 0.4.0 | 144 | 4/13/2026 |
Loading failed