@atbash/sdk 0.10.13-dev.0 → 0.12.0-dev.0
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 +5 -0
- package/dist/browser.d.mts +32 -12
- package/dist/browser.mjs +105 -77
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +32 -12
- package/dist/index.d.ts +32 -12
- package/dist/index.js +144 -96
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +142 -94
- package/dist/index.mjs.map +1 -1
- package/index.d.ts +18 -10
- package/index.js +85 -196
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export interface AddAgentMemoryArgsJs {
|
|
|
5
5
|
content_cipher: Buffer
|
|
6
6
|
nonce: Buffer
|
|
7
7
|
score: number
|
|
8
|
+
file_path: string
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
export interface AgentAuthJs {
|
|
@@ -14,27 +15,30 @@ export interface AgentAuthJs {
|
|
|
14
15
|
|
|
15
16
|
export interface AgentPubkeyOnlyQueryJs {
|
|
16
17
|
agent_pubkey_hex: string
|
|
18
|
+
file_path?: string
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
export const ARG_AGENT_PUBKEY: string
|
|
20
22
|
|
|
23
|
+
export const ARG_FILE_PATH: string
|
|
24
|
+
|
|
21
25
|
export const ARG_ID: string
|
|
22
26
|
|
|
23
|
-
export declare function buildAddAgentMemoryArgs(agentPubkeyHex: string, contentCipher: Buffer, nonce: Buffer, score: number): AddAgentMemoryArgsJs
|
|
27
|
+
export declare function buildAddAgentMemoryArgs(agentPubkeyHex: string, contentCipher: Buffer, nonce: Buffer, score: number, filePath: string): AddAgentMemoryArgsJs
|
|
24
28
|
|
|
25
29
|
export declare function buildEncryptedToolcallArgs(toolCallId: string, action: string, context: string, toolName: string, toolArgsJson: string, orgEncryptionPubKeyHex: string): EncryptedToolCallArgsJs
|
|
26
30
|
|
|
27
|
-
export declare function
|
|
31
|
+
export declare function buildGetActiveAgentMemoryQuery(agentPubkeyHex: string, filePath?: string | undefined | null): AgentPubkeyOnlyQueryJs
|
|
28
32
|
|
|
29
|
-
export declare function
|
|
33
|
+
export declare function buildGetActiveMemoryIdQuery(agentPubkeyHex: string, filePath?: string | undefined | null): AgentPubkeyOnlyQueryJs
|
|
30
34
|
|
|
31
|
-
export declare function
|
|
35
|
+
export declare function buildGetAgentMemoryByIdQuery(agentPubkeyHex: string, id: number): MemoryByIdQueryJs
|
|
32
36
|
|
|
33
|
-
export declare function
|
|
37
|
+
export declare function buildGetAgentMemoryHistoryQuery(agentPubkeyHex: string, filePath?: string | undefined | null): AgentPubkeyOnlyQueryJs
|
|
34
38
|
|
|
35
|
-
export declare function buildGetAgentMemoryRollbackHistoryQuery(agentPubkeyHex: string): AgentPubkeyOnlyQueryJs
|
|
39
|
+
export declare function buildGetAgentMemoryRollbackHistoryQuery(agentPubkeyHex: string, filePath?: string | undefined | null): AgentPubkeyOnlyQueryJs
|
|
36
40
|
|
|
37
|
-
export declare function
|
|
41
|
+
export declare function buildGetRecentAgentMemoryQuery(agentPubkeyHex: string, filePath?: string | undefined | null): AgentPubkeyOnlyQueryJs
|
|
38
42
|
|
|
39
43
|
export declare function buildRollbackAgentMemoryArgs(agentPubkeyHex: string, toId: number, reason: string): RollbackAgentMemoryArgsJs
|
|
40
44
|
|
|
@@ -212,9 +216,9 @@ export declare function parseRollbackRows(value: any): Array<RawRollbackRowJs>
|
|
|
212
216
|
|
|
213
217
|
export declare function parseScoreFromReason(reason: string): ParsedScoreJs
|
|
214
218
|
|
|
215
|
-
export const
|
|
219
|
+
export const QUERY_GET_ACTIVE_AGENT_MEMORY: string
|
|
216
220
|
|
|
217
|
-
export const
|
|
221
|
+
export const QUERY_GET_ACTIVE_MEMORY_ID: string
|
|
218
222
|
|
|
219
223
|
export const QUERY_GET_AGENT_MEMORY_BY_ID: string
|
|
220
224
|
|
|
@@ -222,10 +226,11 @@ export const QUERY_GET_AGENT_MEMORY_HISTORY: string
|
|
|
222
226
|
|
|
223
227
|
export const QUERY_GET_AGENT_MEMORY_ROLLBACK_HISTORY: string
|
|
224
228
|
|
|
225
|
-
export const
|
|
229
|
+
export const QUERY_GET_RECENT_AGENT_MEMORY: string
|
|
226
230
|
|
|
227
231
|
export interface RawMemoryRowJs {
|
|
228
232
|
id: number
|
|
233
|
+
file_path: string
|
|
229
234
|
content_cipher: Buffer
|
|
230
235
|
nonce: Buffer
|
|
231
236
|
score: number
|
|
@@ -237,6 +242,7 @@ export interface RawMemoryRowJs {
|
|
|
237
242
|
export interface RawRollbackRowJs {
|
|
238
243
|
from_id: number
|
|
239
244
|
to_id: number
|
|
245
|
+
file_path: string
|
|
240
246
|
reason: string
|
|
241
247
|
signer: Buffer
|
|
242
248
|
created_at: number
|
|
@@ -275,6 +281,8 @@ export declare function signLogToolCall(toolCallId: string, action: string, cont
|
|
|
275
281
|
|
|
276
282
|
export declare function validateAgentPubkeyHex(pubkeyHex: string): Buffer
|
|
277
283
|
|
|
284
|
+
export declare function validateFilePath(filePath: string): string
|
|
285
|
+
|
|
278
286
|
export declare function validateMemoryId(id: number): void
|
|
279
287
|
|
|
280
288
|
export declare function validateMemoryNonce(nonce: Buffer): void
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('@atbash/sdk-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('@atbash/sdk-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.10.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
80
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('@atbash/sdk-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('@atbash/sdk-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.10.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
96
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('@atbash/sdk-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('@atbash/sdk-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.10.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
117
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('@atbash/sdk-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('@atbash/sdk-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.10.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
133
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('@atbash/sdk-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('@atbash/sdk-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.10.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
150
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('@atbash/sdk-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('@atbash/sdk-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.10.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
166
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('@atbash/sdk-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('@atbash/sdk-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.10.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
185
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('@atbash/sdk-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('@atbash/sdk-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.10.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
201
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('@atbash/sdk-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('@atbash/sdk-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.10.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
217
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('@atbash/sdk-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('@atbash/sdk-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.10.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
237
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('@atbash/sdk-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('@atbash/sdk-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.10.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
253
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('@atbash/sdk-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('@atbash/sdk-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.10.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
274
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('@atbash/sdk-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('@atbash/sdk-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.10.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
290
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('@atbash/sdk-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('@atbash/sdk-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.10.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
308
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('@atbash/sdk-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('@atbash/sdk-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.10.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
324
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('@atbash/sdk-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('@atbash/sdk-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.10.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
342
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('@atbash/sdk-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('@atbash/sdk-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.10.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
358
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('@atbash/sdk-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('@atbash/sdk-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.10.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
376
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('@atbash/sdk-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('@atbash/sdk-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.10.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
392
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('@atbash/sdk-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('@atbash/sdk-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.10.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
410
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('@atbash/sdk-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('@atbash/sdk-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.10.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
426
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('@atbash/sdk-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('@atbash/sdk-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.10.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
443
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('@atbash/sdk-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('@atbash/sdk-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.10.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
459
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('@atbash/sdk-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('@atbash/sdk-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.10.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
479
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('@atbash/sdk-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('@atbash/sdk-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.10.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
495
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('@atbash/sdk-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('@atbash/sdk-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.10.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.10.
|
|
511
|
+
if (bindingPackageVersion !== '0.10.13-dev.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.10.13-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
|
@@ -523,163 +523,47 @@ function requireNative() {
|
|
|
523
523
|
}
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
-
|
|
527
|
-
return errors.reduce((previous, current) => {
|
|
528
|
-
let message
|
|
529
|
-
try {
|
|
530
|
-
message =
|
|
531
|
-
current && typeof current.message === 'string'
|
|
532
|
-
? current.message
|
|
533
|
-
: String(current)
|
|
534
|
-
} catch {
|
|
535
|
-
message = 'Unknown error'
|
|
536
|
-
}
|
|
537
|
-
const error = new Error(message)
|
|
538
|
-
error.cause = previous
|
|
539
|
-
return error
|
|
540
|
-
}, null)
|
|
541
|
-
}
|
|
526
|
+
nativeBinding = requireNative()
|
|
542
527
|
|
|
543
528
|
// NAPI_RS_FORCE_WASI is a tri-state flag:
|
|
544
529
|
// unset / any other value → native binding preferred, WASI is only a fallback
|
|
545
|
-
// 'true' →
|
|
546
|
-
// 'error' →
|
|
530
|
+
// 'true' → force WASI fallback even if native loaded
|
|
531
|
+
// 'error' → force WASI and throw if no WASI binding is found
|
|
547
532
|
// Treating any non-empty string as truthy (the historical behavior) meant
|
|
548
533
|
// NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered
|
|
549
534
|
// the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file.
|
|
550
|
-
//
|
|
551
|
-
// NAPI_RS_WASI_FLAVOR selects one exact generated flavor and implies strict
|
|
552
|
-
// WASI loading. It never crosses into another flavor or falls back to native.
|
|
553
|
-
const __napiWasiFlavors = ["wasm32-wasi"]
|
|
554
|
-
const __napiWasiFlavor = process.env.NAPI_RS_WASI_FLAVOR
|
|
555
|
-
const __napiWasiFlavorRequested =
|
|
556
|
-
typeof __napiWasiFlavor === 'string' && __napiWasiFlavor.length > 0
|
|
557
|
-
if (
|
|
558
|
-
__napiWasiFlavorRequested &&
|
|
559
|
-
__napiWasiFlavors.indexOf(__napiWasiFlavor) === -1
|
|
560
|
-
) {
|
|
561
|
-
throw new Error(
|
|
562
|
-
'Unsupported WASI flavor "' +
|
|
563
|
-
__napiWasiFlavor +
|
|
564
|
-
'". Available flavors: ' +
|
|
565
|
-
__napiWasiFlavors.join(', '),
|
|
566
|
-
)
|
|
567
|
-
}
|
|
568
|
-
const forceWasiError = process.env.NAPI_RS_FORCE_WASI === 'error'
|
|
569
535
|
const forceWasi =
|
|
570
|
-
process.env.NAPI_RS_FORCE_WASI === 'true' ||
|
|
571
|
-
forceWasiError ||
|
|
572
|
-
__napiWasiFlavorRequested
|
|
573
|
-
|
|
574
|
-
if (!forceWasi) {
|
|
575
|
-
nativeBinding = requireNative()
|
|
576
|
-
}
|
|
536
|
+
process.env.NAPI_RS_FORCE_WASI === 'true' || process.env.NAPI_RS_FORCE_WASI === 'error'
|
|
577
537
|
|
|
578
538
|
if (!nativeBinding || forceWasi) {
|
|
579
539
|
let wasiBinding = null
|
|
580
|
-
let
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
throw resolveError
|
|
588
|
-
}
|
|
589
|
-
if (isPackage) {
|
|
590
|
-
try {
|
|
591
|
-
require.resolve(specifier + '/package.json')
|
|
592
|
-
} catch (packageError) {
|
|
593
|
-
if (packageError && packageError.code === 'MODULE_NOT_FOUND') {
|
|
594
|
-
return resolveError
|
|
595
|
-
}
|
|
596
|
-
// An exports restriction proves the package exists even when its
|
|
597
|
-
// package.json is not public. Preserve the root resolution failure.
|
|
598
|
-
throw resolveError
|
|
599
|
-
}
|
|
600
|
-
// The package exists but its main/export target is broken.
|
|
601
|
-
throw resolveError
|
|
602
|
-
}
|
|
603
|
-
return resolveError
|
|
604
|
-
}
|
|
605
|
-
if (localArtifacts) {
|
|
606
|
-
let artifactError = null
|
|
607
|
-
for (let i = 0; i < localArtifacts.length; i++) {
|
|
608
|
-
try {
|
|
609
|
-
require.resolve(localArtifacts[i])
|
|
610
|
-
return null
|
|
611
|
-
} catch (resolveError) {
|
|
612
|
-
if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') {
|
|
613
|
-
throw resolveError
|
|
614
|
-
}
|
|
615
|
-
artifactError = resolveError
|
|
616
|
-
}
|
|
617
|
-
}
|
|
618
|
-
return artifactError
|
|
540
|
+
let wasiBindingError = null
|
|
541
|
+
try {
|
|
542
|
+
wasiBinding = require('./atbash.wasi.cjs')
|
|
543
|
+
nativeBinding = wasiBinding
|
|
544
|
+
} catch (err) {
|
|
545
|
+
if (forceWasi) {
|
|
546
|
+
wasiBindingError = err
|
|
619
547
|
}
|
|
620
|
-
return null
|
|
621
548
|
}
|
|
622
|
-
if (!
|
|
623
|
-
let candidateError = null
|
|
624
|
-
let candidateFailed = false
|
|
549
|
+
if (!nativeBinding || forceWasi) {
|
|
625
550
|
try {
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
if (!candidateFailed) {
|
|
629
|
-
wasiBinding = require('./atbash.wasi.cjs')
|
|
630
|
-
nativeBinding = wasiBinding
|
|
631
|
-
wasiBindingLoaded = true
|
|
632
|
-
}
|
|
551
|
+
wasiBinding = require('@atbash/sdk-wasm32-wasi')
|
|
552
|
+
nativeBinding = wasiBinding
|
|
633
553
|
} catch (err) {
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
loadErrors.push(candidateError)
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === "wasm32-wasi")) {
|
|
643
|
-
let candidateError = null
|
|
644
|
-
let candidateFailed = false
|
|
645
|
-
try {
|
|
646
|
-
candidateError = __napiWasiResolveCandidate('@atbash/sdk-wasm32-wasi', true, undefined)
|
|
647
|
-
candidateFailed = candidateError !== null
|
|
648
|
-
if (!candidateFailed) {
|
|
649
|
-
if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
650
|
-
const bindingPackageVersion = require('@atbash/sdk-wasm32-wasi/package.json').version
|
|
651
|
-
if (bindingPackageVersion !== '0.10.0-dev.0') {
|
|
652
|
-
throw new Error(`WASI binding package version mismatch, expected 0.10.0-dev.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
653
|
-
}
|
|
554
|
+
if (forceWasi) {
|
|
555
|
+
if (!wasiBindingError) {
|
|
556
|
+
wasiBindingError = err
|
|
557
|
+
} else {
|
|
558
|
+
wasiBindingError.cause = err
|
|
654
559
|
}
|
|
655
|
-
|
|
656
|
-
nativeBinding = wasiBinding
|
|
657
|
-
wasiBindingLoaded = true
|
|
560
|
+
loadErrors.push(err)
|
|
658
561
|
}
|
|
659
|
-
} catch (err) {
|
|
660
|
-
candidateError = err
|
|
661
|
-
candidateFailed = true
|
|
662
|
-
}
|
|
663
|
-
if (candidateFailed) {
|
|
664
|
-
wasiBindingErrors.push(candidateError)
|
|
665
|
-
loadErrors.push(candidateError)
|
|
666
562
|
}
|
|
667
563
|
}
|
|
668
|
-
if (
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
!forceWasiError &&
|
|
672
|
-
!__napiWasiFlavorRequested
|
|
673
|
-
) {
|
|
674
|
-
nativeBinding = requireNative()
|
|
675
|
-
}
|
|
676
|
-
if ((forceWasiError || __napiWasiFlavorRequested) && !wasiBindingLoaded) {
|
|
677
|
-
const error = new Error(
|
|
678
|
-
__napiWasiFlavorRequested
|
|
679
|
-
? 'WASI binding for flavor "' + __napiWasiFlavor + '" not found'
|
|
680
|
-
: 'WASI binding not found and NAPI_RS_FORCE_WASI is set to error',
|
|
681
|
-
)
|
|
682
|
-
error.cause = createLoadErrorChain(wasiBindingErrors)
|
|
564
|
+
if (process.env.NAPI_RS_FORCE_WASI === 'error' && !wasiBinding) {
|
|
565
|
+
const error = new Error('WASI binding not found and NAPI_RS_FORCE_WASI is set to error')
|
|
566
|
+
error.cause = wasiBindingError
|
|
683
567
|
throw error
|
|
684
568
|
}
|
|
685
569
|
}
|
|
@@ -693,7 +577,10 @@ if (!nativeBinding) {
|
|
|
693
577
|
)
|
|
694
578
|
// assign instead of the `new Error(message, { cause })` options form,
|
|
695
579
|
// which Node < 16.9 silently ignores
|
|
696
|
-
error.cause =
|
|
580
|
+
error.cause = loadErrors.reduce((err, cur) => {
|
|
581
|
+
cur.cause = err
|
|
582
|
+
return cur
|
|
583
|
+
})
|
|
697
584
|
throw error
|
|
698
585
|
}
|
|
699
586
|
throw new Error(`Failed to load native binding`)
|
|
@@ -701,15 +588,16 @@ if (!nativeBinding) {
|
|
|
701
588
|
|
|
702
589
|
module.exports = nativeBinding
|
|
703
590
|
module.exports.ARG_AGENT_PUBKEY = nativeBinding.ARG_AGENT_PUBKEY
|
|
591
|
+
module.exports.ARG_FILE_PATH = nativeBinding.ARG_FILE_PATH
|
|
704
592
|
module.exports.ARG_ID = nativeBinding.ARG_ID
|
|
705
593
|
module.exports.buildAddAgentMemoryArgs = nativeBinding.buildAddAgentMemoryArgs
|
|
706
594
|
module.exports.buildEncryptedToolcallArgs = nativeBinding.buildEncryptedToolcallArgs
|
|
595
|
+
module.exports.buildGetActiveAgentMemoryQuery = nativeBinding.buildGetActiveAgentMemoryQuery
|
|
707
596
|
module.exports.buildGetActiveMemoryIdQuery = nativeBinding.buildGetActiveMemoryIdQuery
|
|
708
597
|
module.exports.buildGetAgentMemoryByIdQuery = nativeBinding.buildGetAgentMemoryByIdQuery
|
|
709
598
|
module.exports.buildGetAgentMemoryHistoryQuery = nativeBinding.buildGetAgentMemoryHistoryQuery
|
|
710
|
-
module.exports.buildGetAgentMemoryQuery = nativeBinding.buildGetAgentMemoryQuery
|
|
711
599
|
module.exports.buildGetAgentMemoryRollbackHistoryQuery = nativeBinding.buildGetAgentMemoryRollbackHistoryQuery
|
|
712
|
-
module.exports.
|
|
600
|
+
module.exports.buildGetRecentAgentMemoryQuery = nativeBinding.buildGetRecentAgentMemoryQuery
|
|
713
601
|
module.exports.buildRollbackAgentMemoryArgs = nativeBinding.buildRollbackAgentMemoryArgs
|
|
714
602
|
module.exports.buildScanRequest = nativeBinding.buildScanRequest
|
|
715
603
|
module.exports.claimHashHex = nativeBinding.claimHashHex
|
|
@@ -755,17 +643,18 @@ module.exports.parseMemoryRows = nativeBinding.parseMemoryRows
|
|
|
755
643
|
module.exports.parseRollbackRow = nativeBinding.parseRollbackRow
|
|
756
644
|
module.exports.parseRollbackRows = nativeBinding.parseRollbackRows
|
|
757
645
|
module.exports.parseScoreFromReason = nativeBinding.parseScoreFromReason
|
|
646
|
+
module.exports.QUERY_GET_ACTIVE_AGENT_MEMORY = nativeBinding.QUERY_GET_ACTIVE_AGENT_MEMORY
|
|
758
647
|
module.exports.QUERY_GET_ACTIVE_MEMORY_ID = nativeBinding.QUERY_GET_ACTIVE_MEMORY_ID
|
|
759
|
-
module.exports.QUERY_GET_AGENT_MEMORY = nativeBinding.QUERY_GET_AGENT_MEMORY
|
|
760
648
|
module.exports.QUERY_GET_AGENT_MEMORY_BY_ID = nativeBinding.QUERY_GET_AGENT_MEMORY_BY_ID
|
|
761
649
|
module.exports.QUERY_GET_AGENT_MEMORY_HISTORY = nativeBinding.QUERY_GET_AGENT_MEMORY_HISTORY
|
|
762
650
|
module.exports.QUERY_GET_AGENT_MEMORY_ROLLBACK_HISTORY = nativeBinding.QUERY_GET_AGENT_MEMORY_ROLLBACK_HISTORY
|
|
763
|
-
module.exports.
|
|
651
|
+
module.exports.QUERY_GET_RECENT_AGENT_MEMORY = nativeBinding.QUERY_GET_RECENT_AGENT_MEMORY
|
|
764
652
|
module.exports.redactSecrets = nativeBinding.redactSecrets
|
|
765
653
|
module.exports.signEncryptedToolCall = nativeBinding.signEncryptedToolCall
|
|
766
654
|
module.exports.signJudgeAction = nativeBinding.signJudgeAction
|
|
767
655
|
module.exports.signLogToolCall = nativeBinding.signLogToolCall
|
|
768
656
|
module.exports.validateAgentPubkeyHex = nativeBinding.validateAgentPubkeyHex
|
|
657
|
+
module.exports.validateFilePath = nativeBinding.validateFilePath
|
|
769
658
|
module.exports.validateMemoryId = nativeBinding.validateMemoryId
|
|
770
659
|
module.exports.validateMemoryNonce = nativeBinding.validateMemoryNonce
|
|
771
660
|
module.exports.validateRollbackReason = nativeBinding.validateRollbackReason
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atbash/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0-dev.0",
|
|
4
4
|
"description": "TypeScript SDK for Atbash — the safety layer that evaluates AI agent actions against operator-defined policies before execution.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"atbash",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
"typescript-eslint": "^8.62.1"
|
|
89
89
|
},
|
|
90
90
|
"optionalDependencies": {
|
|
91
|
-
"@atbash/sdk-linux-x64-gnu": "0.
|
|
92
|
-
"@atbash/sdk-linux-arm64-gnu": "0.
|
|
93
|
-
"@atbash/sdk-darwin-arm64": "0.
|
|
94
|
-
"@atbash/sdk-win32-x64-msvc": "0.
|
|
91
|
+
"@atbash/sdk-linux-x64-gnu": "0.12.0-dev.0",
|
|
92
|
+
"@atbash/sdk-linux-arm64-gnu": "0.12.0-dev.0",
|
|
93
|
+
"@atbash/sdk-darwin-arm64": "0.12.0-dev.0",
|
|
94
|
+
"@atbash/sdk-win32-x64-msvc": "0.12.0-dev.0"
|
|
95
95
|
}
|
|
96
96
|
}
|