@agentlayer.tech/wallet 0.1.101 → 0.1.102

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 (81) hide show
  1. package/.openclaw/extensions/agent-wallet/dist/index.js +46 -1
  2. package/.openclaw/extensions/agent-wallet/index.ts +46 -1
  3. package/.openclaw/extensions/agent-wallet/openclaw.plugin.json +1 -1
  4. package/.openclaw/extensions/agent-wallet/package.json +1 -1
  5. package/README.md +18 -0
  6. package/VERSION +1 -1
  7. package/agent-wallet/agent_wallet/__init__.py +1 -1
  8. package/agent-wallet/agent_wallet/connector_cli.py +198 -0
  9. package/agent-wallet/agent_wallet/connectors/__init__.py +28 -0
  10. package/agent-wallet/agent_wallet/connectors/catalog.py +68 -0
  11. package/agent-wallet/agent_wallet/connectors/client.py +308 -0
  12. package/agent-wallet/agent_wallet/connectors/intent_policy.py +243 -0
  13. package/agent-wallet/agent_wallet/connectors/manifest.py +192 -0
  14. package/agent-wallet/agent_wallet/connectors/registry.py +341 -0
  15. package/agent-wallet/agent_wallet/openclaw_adapter.py +56 -5
  16. package/agent-wallet/openclaw.plugin.json +1 -1
  17. package/agent-wallet/pyproject.toml +4 -2
  18. package/agent-wallet/scripts/build_release_bundle.py +1 -0
  19. package/agent-wallet/scripts/install_agent_wallet.py +1 -1
  20. package/bin/openclaw-agent-wallet.mjs +38 -0
  21. package/claude-code/plugins/agent-wallet/.claude-plugin/plugin.json +1 -1
  22. package/codex/plugins/agent-wallet/.codex-plugin/plugin.json +1 -1
  23. package/codex/plugins/agent-wallet/server.py +4 -1
  24. package/connectors/AGENTS.md +37 -0
  25. package/connectors/DEVELOPER_GUIDE.md +131 -0
  26. package/connectors/README.md +139 -0
  27. package/connectors/READ_ONLY_BETA.md +54 -0
  28. package/connectors/RELEASING.md +48 -0
  29. package/connectors/conformance/README.md +31 -0
  30. package/connectors/conformance/package.json +54 -0
  31. package/connectors/conformance/scripts/sync-license.mjs +3 -0
  32. package/connectors/conformance/scripts/sync-spec.mjs +16 -0
  33. package/connectors/conformance/src/cli.ts +43 -0
  34. package/connectors/conformance/src/index.ts +7 -0
  35. package/connectors/conformance/src/runner.ts +314 -0
  36. package/connectors/conformance/src/types.ts +27 -0
  37. package/connectors/conformance/test/fixtures/invalid-response-identity.json +14 -0
  38. package/connectors/conformance/test/fixtures/missing-tool-fixture.json +4 -0
  39. package/connectors/conformance/test/runner.test.mjs +151 -0
  40. package/connectors/conformance/tsconfig.json +17 -0
  41. package/connectors/examples/reference-crypto-data/Dockerfile +21 -0
  42. package/connectors/examples/reference-crypto-data/README.md +51 -0
  43. package/connectors/examples/reference-crypto-data/conformance.json +11 -0
  44. package/connectors/examples/reference-crypto-data/connector.json +95 -0
  45. package/connectors/examples/reference-crypto-data/package.json +21 -0
  46. package/connectors/examples/reference-crypto-data/railway.toml +9 -0
  47. package/connectors/examples/reference-crypto-data/src/connector.ts +137 -0
  48. package/connectors/examples/reference-crypto-data/src/server.ts +13 -0
  49. package/connectors/examples/reference-crypto-data/test/connector.test.mjs +97 -0
  50. package/connectors/examples/reference-crypto-data/tsconfig.json +17 -0
  51. package/connectors/package-lock.json +561 -0
  52. package/connectors/package.json +19 -0
  53. package/connectors/scripts/smoke-packed-packages.mjs +121 -0
  54. package/connectors/sdk-typescript/README.md +47 -0
  55. package/connectors/sdk-typescript/package.json +49 -0
  56. package/connectors/sdk-typescript/scripts/sync-license.mjs +3 -0
  57. package/connectors/sdk-typescript/src/connector.ts +204 -0
  58. package/connectors/sdk-typescript/src/errors.ts +11 -0
  59. package/connectors/sdk-typescript/src/http.ts +116 -0
  60. package/connectors/sdk-typescript/src/index.ts +26 -0
  61. package/connectors/sdk-typescript/src/types.ts +101 -0
  62. package/connectors/sdk-typescript/test/sdk.test.mjs +181 -0
  63. package/connectors/sdk-typescript/tsconfig.json +21 -0
  64. package/connectors/spec/connector-manifest.schema.json +340 -0
  65. package/connectors/spec/connector-protocol.md +159 -0
  66. package/connectors/spec/transaction-intent.schema.json +281 -0
  67. package/connectors/templates/read-only/.env.example +1 -0
  68. package/connectors/templates/read-only/Dockerfile +11 -0
  69. package/connectors/templates/read-only/README.md +33 -0
  70. package/connectors/templates/read-only/conformance.json +11 -0
  71. package/connectors/templates/read-only/connector.json +64 -0
  72. package/connectors/templates/read-only/package.json +21 -0
  73. package/connectors/templates/read-only/railway.toml +9 -0
  74. package/connectors/templates/read-only/src/connector.ts +61 -0
  75. package/connectors/templates/read-only/src/server.ts +14 -0
  76. package/connectors/templates/read-only/test/connector.test.mjs +62 -0
  77. package/connectors/templates/read-only/tsconfig.json +17 -0
  78. package/hermes/plugins/agent_wallet/plugin.yaml +1 -1
  79. package/package.json +2 -1
  80. package/wdk-btc-wallet/package.json +1 -1
  81. package/wdk-evm-wallet/package.json +1 -1
@@ -0,0 +1,561 @@
1
+ {
2
+ "name": "@agentlayer.tech/connectors-workspace",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "@agentlayer.tech/connectors-workspace",
8
+ "workspaces": [
9
+ "sdk-typescript",
10
+ "templates/read-only",
11
+ "conformance",
12
+ "examples/reference-crypto-data"
13
+ ],
14
+ "engines": {
15
+ "node": ">=24"
16
+ }
17
+ },
18
+ "conformance": {
19
+ "name": "@agentlayer.tech/connector-conformance",
20
+ "version": "0.1.0-beta.1",
21
+ "license": "SEE LICENSE IN LICENSE",
22
+ "dependencies": {
23
+ "ajv": "^8.20.0",
24
+ "ajv-formats": "^3.0.1"
25
+ },
26
+ "bin": {
27
+ "agentlayer-connector-conformance": "dist/cli.js"
28
+ },
29
+ "devDependencies": {
30
+ "@agentlayer.tech/connector-sdk": "0.1.0-beta.1",
31
+ "@types/node": "^24.0.0",
32
+ "typescript": "^7.0.2"
33
+ },
34
+ "engines": {
35
+ "node": ">=24"
36
+ }
37
+ },
38
+ "examples/reference-crypto-data": {
39
+ "name": "@agentlayer.tech/reference-crypto-data-connector",
40
+ "version": "0.1.0-beta.1",
41
+ "dependencies": {
42
+ "@agentlayer.tech/connector-sdk": "0.1.0-beta.1"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^24.0.0",
46
+ "typescript": "^7.0.2"
47
+ },
48
+ "engines": {
49
+ "node": ">=24"
50
+ }
51
+ },
52
+ "node_modules/@agentlayer.tech/connector-conformance": {
53
+ "resolved": "conformance",
54
+ "link": true
55
+ },
56
+ "node_modules/@agentlayer.tech/connector-sdk": {
57
+ "resolved": "sdk-typescript",
58
+ "link": true
59
+ },
60
+ "node_modules/@agentlayer.tech/read-only-connector-template": {
61
+ "resolved": "templates/read-only",
62
+ "link": true
63
+ },
64
+ "node_modules/@agentlayer.tech/reference-crypto-data-connector": {
65
+ "resolved": "examples/reference-crypto-data",
66
+ "link": true
67
+ },
68
+ "node_modules/@types/node": {
69
+ "version": "24.13.3",
70
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.3.tgz",
71
+ "integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==",
72
+ "dev": true,
73
+ "license": "MIT",
74
+ "dependencies": {
75
+ "undici-types": "~7.18.0"
76
+ }
77
+ },
78
+ "node_modules/@typescript/typescript-aix-ppc64": {
79
+ "version": "7.0.2",
80
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
81
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
82
+ "cpu": [
83
+ "ppc64"
84
+ ],
85
+ "dev": true,
86
+ "license": "Apache-2.0",
87
+ "optional": true,
88
+ "os": [
89
+ "aix"
90
+ ],
91
+ "engines": {
92
+ "node": ">=16.20.0"
93
+ }
94
+ },
95
+ "node_modules/@typescript/typescript-darwin-arm64": {
96
+ "version": "7.0.2",
97
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
98
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
99
+ "cpu": [
100
+ "arm64"
101
+ ],
102
+ "dev": true,
103
+ "license": "Apache-2.0",
104
+ "optional": true,
105
+ "os": [
106
+ "darwin"
107
+ ],
108
+ "engines": {
109
+ "node": ">=16.20.0"
110
+ }
111
+ },
112
+ "node_modules/@typescript/typescript-darwin-x64": {
113
+ "version": "7.0.2",
114
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
115
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
116
+ "cpu": [
117
+ "x64"
118
+ ],
119
+ "dev": true,
120
+ "license": "Apache-2.0",
121
+ "optional": true,
122
+ "os": [
123
+ "darwin"
124
+ ],
125
+ "engines": {
126
+ "node": ">=16.20.0"
127
+ }
128
+ },
129
+ "node_modules/@typescript/typescript-freebsd-arm64": {
130
+ "version": "7.0.2",
131
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
132
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
133
+ "cpu": [
134
+ "arm64"
135
+ ],
136
+ "dev": true,
137
+ "license": "Apache-2.0",
138
+ "optional": true,
139
+ "os": [
140
+ "freebsd"
141
+ ],
142
+ "engines": {
143
+ "node": ">=16.20.0"
144
+ }
145
+ },
146
+ "node_modules/@typescript/typescript-freebsd-x64": {
147
+ "version": "7.0.2",
148
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
149
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
150
+ "cpu": [
151
+ "x64"
152
+ ],
153
+ "dev": true,
154
+ "license": "Apache-2.0",
155
+ "optional": true,
156
+ "os": [
157
+ "freebsd"
158
+ ],
159
+ "engines": {
160
+ "node": ">=16.20.0"
161
+ }
162
+ },
163
+ "node_modules/@typescript/typescript-linux-arm": {
164
+ "version": "7.0.2",
165
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
166
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
167
+ "cpu": [
168
+ "arm"
169
+ ],
170
+ "dev": true,
171
+ "license": "Apache-2.0",
172
+ "optional": true,
173
+ "os": [
174
+ "linux"
175
+ ],
176
+ "engines": {
177
+ "node": ">=16.20.0"
178
+ }
179
+ },
180
+ "node_modules/@typescript/typescript-linux-arm64": {
181
+ "version": "7.0.2",
182
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
183
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
184
+ "cpu": [
185
+ "arm64"
186
+ ],
187
+ "dev": true,
188
+ "license": "Apache-2.0",
189
+ "optional": true,
190
+ "os": [
191
+ "linux"
192
+ ],
193
+ "engines": {
194
+ "node": ">=16.20.0"
195
+ }
196
+ },
197
+ "node_modules/@typescript/typescript-linux-loong64": {
198
+ "version": "7.0.2",
199
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
200
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
201
+ "cpu": [
202
+ "loong64"
203
+ ],
204
+ "dev": true,
205
+ "license": "Apache-2.0",
206
+ "optional": true,
207
+ "os": [
208
+ "linux"
209
+ ],
210
+ "engines": {
211
+ "node": ">=16.20.0"
212
+ }
213
+ },
214
+ "node_modules/@typescript/typescript-linux-mips64el": {
215
+ "version": "7.0.2",
216
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
217
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
218
+ "cpu": [
219
+ "mips64el"
220
+ ],
221
+ "dev": true,
222
+ "license": "Apache-2.0",
223
+ "optional": true,
224
+ "os": [
225
+ "linux"
226
+ ],
227
+ "engines": {
228
+ "node": ">=16.20.0"
229
+ }
230
+ },
231
+ "node_modules/@typescript/typescript-linux-ppc64": {
232
+ "version": "7.0.2",
233
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
234
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
235
+ "cpu": [
236
+ "ppc64"
237
+ ],
238
+ "dev": true,
239
+ "license": "Apache-2.0",
240
+ "optional": true,
241
+ "os": [
242
+ "linux"
243
+ ],
244
+ "engines": {
245
+ "node": ">=16.20.0"
246
+ }
247
+ },
248
+ "node_modules/@typescript/typescript-linux-riscv64": {
249
+ "version": "7.0.2",
250
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
251
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
252
+ "cpu": [
253
+ "riscv64"
254
+ ],
255
+ "dev": true,
256
+ "license": "Apache-2.0",
257
+ "optional": true,
258
+ "os": [
259
+ "linux"
260
+ ],
261
+ "engines": {
262
+ "node": ">=16.20.0"
263
+ }
264
+ },
265
+ "node_modules/@typescript/typescript-linux-s390x": {
266
+ "version": "7.0.2",
267
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
268
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
269
+ "cpu": [
270
+ "s390x"
271
+ ],
272
+ "dev": true,
273
+ "license": "Apache-2.0",
274
+ "optional": true,
275
+ "os": [
276
+ "linux"
277
+ ],
278
+ "engines": {
279
+ "node": ">=16.20.0"
280
+ }
281
+ },
282
+ "node_modules/@typescript/typescript-linux-x64": {
283
+ "version": "7.0.2",
284
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
285
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
286
+ "cpu": [
287
+ "x64"
288
+ ],
289
+ "dev": true,
290
+ "license": "Apache-2.0",
291
+ "optional": true,
292
+ "os": [
293
+ "linux"
294
+ ],
295
+ "engines": {
296
+ "node": ">=16.20.0"
297
+ }
298
+ },
299
+ "node_modules/@typescript/typescript-netbsd-arm64": {
300
+ "version": "7.0.2",
301
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
302
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
303
+ "cpu": [
304
+ "arm64"
305
+ ],
306
+ "dev": true,
307
+ "license": "Apache-2.0",
308
+ "optional": true,
309
+ "os": [
310
+ "netbsd"
311
+ ],
312
+ "engines": {
313
+ "node": ">=16.20.0"
314
+ }
315
+ },
316
+ "node_modules/@typescript/typescript-netbsd-x64": {
317
+ "version": "7.0.2",
318
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
319
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
320
+ "cpu": [
321
+ "x64"
322
+ ],
323
+ "dev": true,
324
+ "license": "Apache-2.0",
325
+ "optional": true,
326
+ "os": [
327
+ "netbsd"
328
+ ],
329
+ "engines": {
330
+ "node": ">=16.20.0"
331
+ }
332
+ },
333
+ "node_modules/@typescript/typescript-openbsd-arm64": {
334
+ "version": "7.0.2",
335
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
336
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
337
+ "cpu": [
338
+ "arm64"
339
+ ],
340
+ "dev": true,
341
+ "license": "Apache-2.0",
342
+ "optional": true,
343
+ "os": [
344
+ "openbsd"
345
+ ],
346
+ "engines": {
347
+ "node": ">=16.20.0"
348
+ }
349
+ },
350
+ "node_modules/@typescript/typescript-openbsd-x64": {
351
+ "version": "7.0.2",
352
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
353
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
354
+ "cpu": [
355
+ "x64"
356
+ ],
357
+ "dev": true,
358
+ "license": "Apache-2.0",
359
+ "optional": true,
360
+ "os": [
361
+ "openbsd"
362
+ ],
363
+ "engines": {
364
+ "node": ">=16.20.0"
365
+ }
366
+ },
367
+ "node_modules/@typescript/typescript-sunos-x64": {
368
+ "version": "7.0.2",
369
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
370
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
371
+ "cpu": [
372
+ "x64"
373
+ ],
374
+ "dev": true,
375
+ "license": "Apache-2.0",
376
+ "optional": true,
377
+ "os": [
378
+ "sunos"
379
+ ],
380
+ "engines": {
381
+ "node": ">=16.20.0"
382
+ }
383
+ },
384
+ "node_modules/@typescript/typescript-win32-arm64": {
385
+ "version": "7.0.2",
386
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
387
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
388
+ "cpu": [
389
+ "arm64"
390
+ ],
391
+ "dev": true,
392
+ "license": "Apache-2.0",
393
+ "optional": true,
394
+ "os": [
395
+ "win32"
396
+ ],
397
+ "engines": {
398
+ "node": ">=16.20.0"
399
+ }
400
+ },
401
+ "node_modules/@typescript/typescript-win32-x64": {
402
+ "version": "7.0.2",
403
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
404
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
405
+ "cpu": [
406
+ "x64"
407
+ ],
408
+ "dev": true,
409
+ "license": "Apache-2.0",
410
+ "optional": true,
411
+ "os": [
412
+ "win32"
413
+ ],
414
+ "engines": {
415
+ "node": ">=16.20.0"
416
+ }
417
+ },
418
+ "node_modules/ajv": {
419
+ "version": "8.20.0",
420
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
421
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
422
+ "license": "MIT",
423
+ "dependencies": {
424
+ "fast-deep-equal": "^3.1.3",
425
+ "fast-uri": "^3.0.1",
426
+ "json-schema-traverse": "^1.0.0",
427
+ "require-from-string": "^2.0.2"
428
+ },
429
+ "funding": {
430
+ "type": "github",
431
+ "url": "https://github.com/sponsors/epoberezkin"
432
+ }
433
+ },
434
+ "node_modules/ajv-formats": {
435
+ "version": "3.0.1",
436
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
437
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
438
+ "license": "MIT",
439
+ "dependencies": {
440
+ "ajv": "^8.0.0"
441
+ },
442
+ "peerDependencies": {
443
+ "ajv": "^8.0.0"
444
+ },
445
+ "peerDependenciesMeta": {
446
+ "ajv": {
447
+ "optional": true
448
+ }
449
+ }
450
+ },
451
+ "node_modules/fast-deep-equal": {
452
+ "version": "3.1.3",
453
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
454
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
455
+ "license": "MIT"
456
+ },
457
+ "node_modules/fast-uri": {
458
+ "version": "3.1.6",
459
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.6.tgz",
460
+ "integrity": "sha512-7Ical1vFEMr0onbVzEDIreM22I4khW+fzyQPwvAFWBp1iwdshSZRsL4jjRvPG9JP1uiqMHRto+YU6R2/CzDz5Q==",
461
+ "funding": [
462
+ {
463
+ "type": "github",
464
+ "url": "https://github.com/sponsors/fastify"
465
+ },
466
+ {
467
+ "type": "opencollective",
468
+ "url": "https://opencollective.com/fastify"
469
+ }
470
+ ],
471
+ "license": "BSD-3-Clause"
472
+ },
473
+ "node_modules/json-schema-traverse": {
474
+ "version": "1.0.0",
475
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
476
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
477
+ "license": "MIT"
478
+ },
479
+ "node_modules/require-from-string": {
480
+ "version": "2.0.2",
481
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
482
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
483
+ "license": "MIT",
484
+ "engines": {
485
+ "node": ">=0.10.0"
486
+ }
487
+ },
488
+ "node_modules/typescript": {
489
+ "version": "7.0.2",
490
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
491
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
492
+ "dev": true,
493
+ "license": "Apache-2.0",
494
+ "bin": {
495
+ "tsc": "bin/tsc"
496
+ },
497
+ "engines": {
498
+ "node": ">=16.20.0"
499
+ },
500
+ "optionalDependencies": {
501
+ "@typescript/typescript-aix-ppc64": "7.0.2",
502
+ "@typescript/typescript-darwin-arm64": "7.0.2",
503
+ "@typescript/typescript-darwin-x64": "7.0.2",
504
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
505
+ "@typescript/typescript-freebsd-x64": "7.0.2",
506
+ "@typescript/typescript-linux-arm": "7.0.2",
507
+ "@typescript/typescript-linux-arm64": "7.0.2",
508
+ "@typescript/typescript-linux-loong64": "7.0.2",
509
+ "@typescript/typescript-linux-mips64el": "7.0.2",
510
+ "@typescript/typescript-linux-ppc64": "7.0.2",
511
+ "@typescript/typescript-linux-riscv64": "7.0.2",
512
+ "@typescript/typescript-linux-s390x": "7.0.2",
513
+ "@typescript/typescript-linux-x64": "7.0.2",
514
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
515
+ "@typescript/typescript-netbsd-x64": "7.0.2",
516
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
517
+ "@typescript/typescript-openbsd-x64": "7.0.2",
518
+ "@typescript/typescript-sunos-x64": "7.0.2",
519
+ "@typescript/typescript-win32-arm64": "7.0.2",
520
+ "@typescript/typescript-win32-x64": "7.0.2"
521
+ }
522
+ },
523
+ "node_modules/undici-types": {
524
+ "version": "7.18.2",
525
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
526
+ "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
527
+ "dev": true,
528
+ "license": "MIT"
529
+ },
530
+ "sdk-typescript": {
531
+ "name": "@agentlayer.tech/connector-sdk",
532
+ "version": "0.1.0-beta.1",
533
+ "license": "SEE LICENSE IN LICENSE",
534
+ "dependencies": {
535
+ "ajv": "^8.20.0",
536
+ "ajv-formats": "^3.0.1"
537
+ },
538
+ "devDependencies": {
539
+ "@types/node": "^24.0.0",
540
+ "typescript": "^7.0.2"
541
+ },
542
+ "engines": {
543
+ "node": ">=24"
544
+ }
545
+ },
546
+ "templates/read-only": {
547
+ "name": "@agentlayer.tech/read-only-connector-template",
548
+ "version": "0.1.0",
549
+ "dependencies": {
550
+ "@agentlayer.tech/connector-sdk": "0.1.0-beta.1"
551
+ },
552
+ "devDependencies": {
553
+ "@types/node": "^24.0.0",
554
+ "typescript": "^7.0.2"
555
+ },
556
+ "engines": {
557
+ "node": ">=24"
558
+ }
559
+ }
560
+ }
561
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@agentlayer.tech/connectors-workspace",
3
+ "private": true,
4
+ "type": "module",
5
+ "workspaces": [
6
+ "sdk-typescript",
7
+ "templates/read-only",
8
+ "conformance",
9
+ "examples/reference-crypto-data"
10
+ ],
11
+ "scripts": {
12
+ "build": "npm run build --workspace @agentlayer.tech/connector-sdk && npm run build --workspace @agentlayer.tech/read-only-connector-template && npm run build --workspace @agentlayer.tech/connector-conformance && npm run build --workspace @agentlayer.tech/reference-crypto-data-connector",
13
+ "check": "npm run check --workspace @agentlayer.tech/connector-sdk && npm run check --workspace @agentlayer.tech/read-only-connector-template && npm run check --workspace @agentlayer.tech/connector-conformance && npm run check --workspace @agentlayer.tech/reference-crypto-data-connector",
14
+ "check:pack": "node scripts/smoke-packed-packages.mjs"
15
+ },
16
+ "engines": {
17
+ "node": ">=24"
18
+ }
19
+ }