@getenki/ai-darwin-arm64 0.4.0 → 0.4.15

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 CHANGED
@@ -16,12 +16,17 @@ The package ships prebuilt native binaries for:
16
16
 
17
17
  ## What It Exports
18
18
 
19
- The current package surface is intentionally small:
19
+ The current package surface is:
20
20
 
21
21
  - `NativeEnkiAgent`
22
+ - `NativeMultiAgentRuntime`
23
+ - `JsAgentStatus`
22
24
  - `JsMemoryKind`
23
25
  - `JsMemoryModule`
24
26
  - `JsMemoryEntry`
27
+ - `JsAgentCard`
28
+ - `JsAgentRunResult`
29
+ - `JsExecutionStep`
25
30
 
26
31
  `NativeEnkiAgent` is the main entrypoint. It can be created in four modes:
27
32
 
@@ -30,6 +35,14 @@ The current package surface is intentionally small:
30
35
  - `NativeEnkiAgent.withMemory(...)`
31
36
  - `NativeEnkiAgent.withToolsAndMemory(...)`
32
37
 
38
+ `NativeMultiAgentRuntime` supports:
39
+
40
+ - `new(...)`
41
+ - `process(...)`
42
+ - `processWithTrace(...)`
43
+ - `registry(...)`
44
+ - `discover(...)`
45
+
33
46
  ## Basic Agent
34
47
 
35
48
  Use the constructor when you only need a session-based agent backed by the native runtime.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getenki/ai-darwin-arm64",
3
- "version": "0.4.0",
3
+ "version": "0.4.15",
4
4
  "cpu": [
5
5
  "arm64"
6
6
  ],
@@ -8,7 +8,7 @@
8
8
  "files": [
9
9
  "enki-ai.darwin-arm64.node"
10
10
  ],
11
- "description": "Node.js bindings for Enki AI, a high-performance AI inference engine written in Rust.",
11
+ "description": "Node.js bindings for Enki's Rust agent runtime.",
12
12
  "keywords": [
13
13
  "napi-rs",
14
14
  "napi-rs",
@@ -23,7 +23,7 @@
23
23
  "name": "Enki AI Team",
24
24
  "url": "https://getenki.com"
25
25
  },
26
- "license": " Apache License V2",
26
+ "license": "Apache-2.0",
27
27
  "engines": {
28
28
  "node": ">= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0"
29
29
  },