eidentic 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -7
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # eidentic
2
2
 
3
- **Agents that remember.** Eidentic is an open-source TypeScript SDK for building AI
4
- agents with self-improving memory and the production fundamentals (durable execution,
5
- cost ceilings, multi-tenant isolation, GDPR erasure, sandboxed tools) built in, not
6
- bolted on. Apache-2.0. Runs on **Node, Bun, Deno, and the edge**.
3
+ **Eidentic is the open-source TypeScript SDK for AI agents with self-improving memory and
4
+ production fundamentals built in.** Durable execution, enforced cost ceilings, multi-tenant
5
+ isolation, GDPR erasure, and sandboxed tools not bolted on. Apache-2.0. Runs on **Node, Bun,
6
+ Deno, and the edge**.
7
7
 
8
8
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/eidentic/eidentic/blob/main/LICENSE)
9
9
 
@@ -28,8 +28,8 @@ const agent = new Agent({
28
28
  });
29
29
 
30
30
  for await (const ev of agent.query("What did we decide last week?", { sessionId: "u-42" })) {
31
- if (ev.kind === "text_delta") process.stdout.write(ev.delta);
32
- if (ev.kind === "result") console.log("\nCost:", ev.cost?.usd, "USD");
31
+ if (ev.type === "stream.delta") process.stdout.write(ev.delta.text);
32
+ if (ev.type === "result") console.log("\nDone:", ev.subtype);
33
33
  }
34
34
  ```
35
35
 
@@ -46,6 +46,7 @@ The `eidentic` package re-exports the core stack so you get everything in one in
46
46
  | `@eidentic/types` | Canonical protocol types and port interfaces |
47
47
  | `@eidentic/model` | `AIModel`, `AIEmbedder`, price tables, Ollama adapter |
48
48
  | `@eidentic/sqlite` | `SqliteStore` — durable store over `better-sqlite3` (Node/Bun) |
49
+ | `@eidentic/convex` | `ConvexStore` — Convex-backed store + temporal KG + vector (reactive, TS-native) |
49
50
  | `@eidentic/memory` | `Memory` — four-tier recall, self-editing blocks, knowledge graph |
50
51
  | `@eidentic/cli` | `eidentic dev` / `eidentic studio` / `eidentic init` commands |
51
52
 
@@ -82,7 +83,8 @@ contradictions invalidate rather than accumulate), and sleep-time consolidation.
82
83
 
83
84
  **2. Production fundamentals built in.** Durable checkpoint/resume with exactly-once tool
84
85
  dispatch, enforced cost ceilings per turn, built-in rate-limiting and quotas,
85
- OpenTelemetry GenAI spans, deny-by-default permissions, sandboxed code execution, secret
86
+ OpenTelemetry GenAI spans, a structured audit-event stream (permission denials, quota/rate-limit
87
+ rejections, auth failures, erasure), deny-by-default permissions, sandboxed code execution, secret
86
88
  isolation, and one-call GDPR erasure that fans out across every store.
87
89
 
88
90
  **3. Runs everywhere.** Ports-and-adapters: swap the store, vector backend, embedder, or
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eidentic",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -26,12 +26,12 @@
26
26
  },
27
27
  "sideEffects": false,
28
28
  "dependencies": {
29
- "@eidentic/cli": "0.1.0",
30
- "@eidentic/types": "0.1.0",
31
- "@eidentic/core": "0.1.0",
32
- "@eidentic/memory": "0.1.0",
33
- "@eidentic/sqlite": "0.1.0",
34
- "@eidentic/model": "0.1.0"
29
+ "@eidentic/cli": "0.1.2",
30
+ "@eidentic/core": "0.2.0",
31
+ "@eidentic/model": "0.2.0",
32
+ "@eidentic/sqlite": "0.1.2",
33
+ "@eidentic/types": "0.2.0",
34
+ "@eidentic/memory": "0.1.2"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "ai": "^6.0.0"
@@ -39,7 +39,7 @@
39
39
  "devDependencies": {
40
40
  "ai": "^6.0.0"
41
41
  },
42
- "description": "Agents that remember. TypeScript SDK for AI agents with self-improving memory, durable workflows, and production fundamentals built in.",
42
+ "description": "The open-source TypeScript SDK for AI agents with self-improving memory and production fundamentals built in.",
43
43
  "keywords": [
44
44
  "ai",
45
45
  "agents",