eidentic 0.1.1 → 0.1.3
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.
- package/README.md +9 -7
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# eidentic
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
[](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.
|
|
32
|
-
if (ev.
|
|
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 + durable execution (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,
|
|
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.
|
|
3
|
+
"version": "0.1.3",
|
|
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.
|
|
30
|
-
"@eidentic/core": "0.
|
|
31
|
-
"@eidentic/types": "0.
|
|
32
|
-
"@eidentic/model": "0.
|
|
33
|
-
"@eidentic/sqlite": "0.1.
|
|
34
|
-
"@eidentic/memory": "0.1.
|
|
29
|
+
"@eidentic/cli": "0.1.2",
|
|
30
|
+
"@eidentic/core": "0.2.0",
|
|
31
|
+
"@eidentic/types": "0.2.0",
|
|
32
|
+
"@eidentic/model": "0.2.0",
|
|
33
|
+
"@eidentic/sqlite": "0.1.2",
|
|
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": "
|
|
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",
|