@paybond/kit 0.11.0 → 0.11.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 (33) hide show
  1. package/README.md +60 -16
  2. package/dist/cli/agent/demo-loaders.d.ts +4 -0
  3. package/dist/cli/agent/demo-loaders.js +66 -0
  4. package/dist/cli/commands/agent.js +5 -4
  5. package/dist/dev/trace-buffer.js +1 -1
  6. package/dist/mcp-server.js +1 -1
  7. package/package.json +2 -2
  8. package/templates/manifest.json +9 -9
  9. package/templates/openai-shopping-agent/.github/workflows/smoke.yml +1 -1
  10. package/templates/openai-shopping-agent/package-lock.json +1521 -0
  11. package/templates/openai-shopping-agent/package.json +1 -1
  12. package/templates/paybond-aws-operator/.github/workflows/smoke.yml +1 -1
  13. package/templates/paybond-aws-operator/package-lock.json +205 -0
  14. package/templates/paybond-aws-operator/package.json +1 -1
  15. package/templates/paybond-claude-agents-demo/.github/workflows/smoke.yml +1 -1
  16. package/templates/paybond-claude-agents-demo/package-lock.json +1490 -0
  17. package/templates/paybond-claude-agents-demo/package.json +1 -1
  18. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  19. package/templates/paybond-mcp-coding-agent/.github/workflows/smoke.yml +1 -1
  20. package/templates/paybond-mcp-coding-agent/package-lock.json +205 -0
  21. package/templates/paybond-mcp-coding-agent/package.json +1 -1
  22. package/templates/paybond-openai-agents-demo/.github/workflows/smoke.yml +1 -1
  23. package/templates/paybond-openai-agents-demo/package-lock.json +1521 -0
  24. package/templates/paybond-openai-agents-demo/package.json +1 -1
  25. package/templates/paybond-procurement-agent/.github/workflows/smoke.yml +1 -1
  26. package/templates/paybond-procurement-agent/package-lock.json +205 -0
  27. package/templates/paybond-procurement-agent/package.json +1 -1
  28. package/templates/paybond-travel-agent/.github/workflows/smoke.yml +1 -1
  29. package/templates/paybond-travel-agent/package-lock.json +498 -0
  30. package/templates/paybond-travel-agent/package.json +1 -1
  31. package/templates/paybond-vercel-shopping-agent/.github/workflows/smoke.yml +1 -1
  32. package/templates/paybond-vercel-shopping-agent/package-lock.json +319 -0
  33. package/templates/paybond-vercel-shopping-agent/package.json +1 -1
@@ -0,0 +1,498 @@
1
+ {
2
+ "name": "paybond-travel-agent",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "paybond-travel-agent",
8
+ "dependencies": {
9
+ "@langchain/core": "^1.2.1",
10
+ "@langchain/langgraph": "^1.4.7",
11
+ "@paybond/kit": "^0.11.2",
12
+ "zod": "^4.2.0"
13
+ },
14
+ "devDependencies": {
15
+ "@types/node": "^22.10.1",
16
+ "typescript": "^5.7.2"
17
+ },
18
+ "engines": {
19
+ "node": ">=22"
20
+ }
21
+ },
22
+ "node_modules/@cfworker/json-schema": {
23
+ "version": "4.1.1",
24
+ "resolved": "https://registry.npmjs.org/@cfworker/json-schema/-/json-schema-4.1.1.tgz",
25
+ "integrity": "sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==",
26
+ "license": "MIT"
27
+ },
28
+ "node_modules/@langchain/core": {
29
+ "version": "1.2.1",
30
+ "resolved": "https://registry.npmjs.org/@langchain/core/-/core-1.2.1.tgz",
31
+ "integrity": "sha512-NNG/cC5FGuHDOAP56h0ddp8Rfk8p+othWzEK5RV9JIG6RvnF5vGa5r0AEGtKfQieed7s1kC42GuIzVOBvMBL/g==",
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "@cfworker/json-schema": "^4.0.2",
35
+ "@standard-schema/spec": "^1.1.0",
36
+ "js-tiktoken": "^1.0.12",
37
+ "langsmith": ">=0.5.0 <1.0.0",
38
+ "mustache": "^4.2.0",
39
+ "p-queue": "^6.6.2",
40
+ "zod": "^3.25.76 || ^4"
41
+ },
42
+ "engines": {
43
+ "node": ">=20"
44
+ }
45
+ },
46
+ "node_modules/@langchain/langgraph": {
47
+ "version": "1.4.7",
48
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph/-/langgraph-1.4.7.tgz",
49
+ "integrity": "sha512-2tcyf3QGC7v89kqSxMCtRvzg/3L/4yHtOaWC49A8KieCciWJs7LGaxHoPB6QRxXyUgyR+Zg9Q1ss/XJIE+JuSQ==",
50
+ "license": "MIT",
51
+ "dependencies": {
52
+ "@langchain/langgraph-checkpoint": "^1.1.3",
53
+ "@langchain/langgraph-sdk": "~1.9.25",
54
+ "@langchain/protocol": "^0.0.18",
55
+ "@standard-schema/spec": "1.1.0"
56
+ },
57
+ "engines": {
58
+ "node": ">=18"
59
+ },
60
+ "peerDependencies": {
61
+ "@langchain/core": "^1.1.48",
62
+ "zod": "^3.25.32 || ^4.2.0"
63
+ }
64
+ },
65
+ "node_modules/@langchain/langgraph-checkpoint": {
66
+ "version": "1.1.3",
67
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.1.3.tgz",
68
+ "integrity": "sha512-wgzdQNeEsdw1e+4lvlj0tdq/RYR/k1vPin10g0ymGoehZDDgd9nvIllGXSXN4TFgF9sf5qQP/KTkOcLfeseIhA==",
69
+ "license": "MIT",
70
+ "engines": {
71
+ "node": ">=18"
72
+ },
73
+ "peerDependencies": {
74
+ "@langchain/core": "^1.1.48"
75
+ }
76
+ },
77
+ "node_modules/@langchain/langgraph-sdk": {
78
+ "version": "1.9.25",
79
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph-sdk/-/langgraph-sdk-1.9.25.tgz",
80
+ "integrity": "sha512-mRKW8zyQUaHox+HirRFMRrPqOvNbQI3xeXDt6kkk4PbBg77V92bsO1WzUVNrmJ81zCkvxyOrWSK8D6ioCj0a8A==",
81
+ "license": "MIT",
82
+ "dependencies": {
83
+ "@langchain/protocol": "^0.0.18",
84
+ "@types/json-schema": "^7.0.15",
85
+ "p-queue": "^9.0.1",
86
+ "p-retry": "^7.1.1"
87
+ },
88
+ "peerDependencies": {
89
+ "@langchain/core": "^1.1.48",
90
+ "react": "^18 || ^19",
91
+ "react-dom": "^18 || ^19",
92
+ "svelte": "^4.0.0 || ^5.0.0",
93
+ "vue": "^3.0.0"
94
+ },
95
+ "peerDependenciesMeta": {
96
+ "react": {
97
+ "optional": true
98
+ },
99
+ "react-dom": {
100
+ "optional": true
101
+ },
102
+ "svelte": {
103
+ "optional": true
104
+ },
105
+ "vue": {
106
+ "optional": true
107
+ }
108
+ }
109
+ },
110
+ "node_modules/@langchain/langgraph-sdk/node_modules/eventemitter3": {
111
+ "version": "5.0.4",
112
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
113
+ "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
114
+ "license": "MIT"
115
+ },
116
+ "node_modules/@langchain/langgraph-sdk/node_modules/p-queue": {
117
+ "version": "9.3.0",
118
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.0.tgz",
119
+ "integrity": "sha512-7NED7xhQ74Ngp4JP/2e0VZHp7vSWfJfqeiR92jPgxsz6m0Se4P03YoTKa9dDXyZ3r6P616gUXttrB6nnHYKang==",
120
+ "license": "MIT",
121
+ "dependencies": {
122
+ "eventemitter3": "^5.0.4",
123
+ "p-timeout": "^7.0.0"
124
+ },
125
+ "engines": {
126
+ "node": ">=20"
127
+ },
128
+ "funding": {
129
+ "url": "https://github.com/sponsors/sindresorhus"
130
+ }
131
+ },
132
+ "node_modules/@langchain/langgraph-sdk/node_modules/p-timeout": {
133
+ "version": "7.0.1",
134
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz",
135
+ "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==",
136
+ "license": "MIT",
137
+ "engines": {
138
+ "node": ">=20"
139
+ },
140
+ "funding": {
141
+ "url": "https://github.com/sponsors/sindresorhus"
142
+ }
143
+ },
144
+ "node_modules/@langchain/protocol": {
145
+ "version": "0.0.18",
146
+ "resolved": "https://registry.npmjs.org/@langchain/protocol/-/protocol-0.0.18.tgz",
147
+ "integrity": "sha512-XW1egQtPfsGI41w2AMZNFZrUIwFSQHTjVMZs0OaTpCAvht/QLoaPN8FQcsysMVypOhupG28J29yOorrc70otBQ==",
148
+ "license": "MIT"
149
+ },
150
+ "node_modules/@noble/ed25519": {
151
+ "version": "2.3.0",
152
+ "resolved": "https://registry.npmjs.org/@noble/ed25519/-/ed25519-2.3.0.tgz",
153
+ "integrity": "sha512-M7dvXL2B92/M7dw9+gzuydL8qn/jiqNHaoR3Q+cb1q1GHV7uwE17WCyFMG+Y+TZb5izcaXk5TdJRrDUxHXL78A==",
154
+ "license": "MIT",
155
+ "funding": {
156
+ "url": "https://paulmillr.com/funding/"
157
+ }
158
+ },
159
+ "node_modules/@noble/hashes": {
160
+ "version": "1.8.0",
161
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
162
+ "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
163
+ "license": "MIT",
164
+ "engines": {
165
+ "node": "^14.21.3 || >=16"
166
+ },
167
+ "funding": {
168
+ "url": "https://paulmillr.com/funding/"
169
+ }
170
+ },
171
+ "node_modules/@noble/secp256k1": {
172
+ "version": "2.3.0",
173
+ "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-2.3.0.tgz",
174
+ "integrity": "sha512-0TQed2gcBbIrh7Ccyw+y/uZQvbJwm7Ao4scBUxqpBCcsOlZG0O4KGfjtNAy/li4W8n1xt3dxrwJ0beZ2h2G6Kw==",
175
+ "license": "MIT",
176
+ "funding": {
177
+ "url": "https://paulmillr.com/funding/"
178
+ }
179
+ },
180
+ "node_modules/@paybond/kit": {
181
+ "version": "0.11.2",
182
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
183
+ "integrity": "sha512-qsklp8fV/5q1o5/LsJja4+v1UhU7vLhwXcieHs2U7DHYI3d0IrotlgoG/vK22Ol0SUW0jVF7ncJh9MShLxvnsw==",
184
+ "license": "Apache-2.0",
185
+ "dependencies": {
186
+ "@noble/ed25519": "^2.2.1",
187
+ "@noble/hashes": "^1.7.1",
188
+ "@noble/secp256k1": "^2.2.3",
189
+ "ajv": "^8.17.1",
190
+ "blake3": "^2.1.7",
191
+ "uuid": "^14.0.0"
192
+ },
193
+ "bin": {
194
+ "paybond": "dist/cli.js",
195
+ "paybond-init": "dist/init.js",
196
+ "paybond-kit-login": "dist/login.js",
197
+ "paybond-mcp-server": "dist/mcp-server.js"
198
+ },
199
+ "engines": {
200
+ "node": ">=22"
201
+ },
202
+ "peerDependencies": {
203
+ "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
204
+ "@langchain/core": ">=0.3.0",
205
+ "@langchain/langgraph": ">=0.2.50",
206
+ "@openai/agents": ">=0.12.0",
207
+ "ai": ">=4.0.0",
208
+ "zod": "^3.25.32 || ^4.2.0"
209
+ },
210
+ "peerDependenciesMeta": {
211
+ "@anthropic-ai/claude-agent-sdk": {
212
+ "optional": true
213
+ },
214
+ "@langchain/core": {
215
+ "optional": true
216
+ },
217
+ "@langchain/langgraph": {
218
+ "optional": true
219
+ },
220
+ "@openai/agents": {
221
+ "optional": true
222
+ },
223
+ "ai": {
224
+ "optional": true
225
+ },
226
+ "zod": {
227
+ "optional": true
228
+ }
229
+ }
230
+ },
231
+ "node_modules/@standard-schema/spec": {
232
+ "version": "1.1.0",
233
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
234
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
235
+ "license": "MIT"
236
+ },
237
+ "node_modules/@types/json-schema": {
238
+ "version": "7.0.15",
239
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
240
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
241
+ "license": "MIT"
242
+ },
243
+ "node_modules/@types/node": {
244
+ "version": "22.20.0",
245
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
246
+ "integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
247
+ "dev": true,
248
+ "license": "MIT",
249
+ "dependencies": {
250
+ "undici-types": "~6.21.0"
251
+ }
252
+ },
253
+ "node_modules/ajv": {
254
+ "version": "8.20.0",
255
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
256
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
257
+ "license": "MIT",
258
+ "dependencies": {
259
+ "fast-deep-equal": "^3.1.3",
260
+ "fast-uri": "^3.0.1",
261
+ "json-schema-traverse": "^1.0.0",
262
+ "require-from-string": "^2.0.2"
263
+ },
264
+ "funding": {
265
+ "type": "github",
266
+ "url": "https://github.com/sponsors/epoberezkin"
267
+ }
268
+ },
269
+ "node_modules/base64-js": {
270
+ "version": "1.5.1",
271
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
272
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
273
+ "funding": [
274
+ {
275
+ "type": "github",
276
+ "url": "https://github.com/sponsors/feross"
277
+ },
278
+ {
279
+ "type": "patreon",
280
+ "url": "https://www.patreon.com/feross"
281
+ },
282
+ {
283
+ "type": "consulting",
284
+ "url": "https://feross.org/support"
285
+ }
286
+ ],
287
+ "license": "MIT"
288
+ },
289
+ "node_modules/blake3": {
290
+ "version": "2.1.7",
291
+ "resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
292
+ "integrity": "sha512-5d+TdKJvju96IyEaGJ0eO6CHbckWi+NBrCezGYM/WsnI3R03aLL2TWfsuZSh1rs0fTv/L3ps/r0vykjYurcIwA==",
293
+ "hasInstallScript": true,
294
+ "license": "MIT"
295
+ },
296
+ "node_modules/eventemitter3": {
297
+ "version": "4.0.7",
298
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
299
+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
300
+ "license": "MIT"
301
+ },
302
+ "node_modules/fast-deep-equal": {
303
+ "version": "3.1.3",
304
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
305
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
306
+ "license": "MIT"
307
+ },
308
+ "node_modules/fast-uri": {
309
+ "version": "3.1.3",
310
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
311
+ "integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
312
+ "funding": [
313
+ {
314
+ "type": "github",
315
+ "url": "https://github.com/sponsors/fastify"
316
+ },
317
+ {
318
+ "type": "opencollective",
319
+ "url": "https://opencollective.com/fastify"
320
+ }
321
+ ],
322
+ "license": "BSD-3-Clause"
323
+ },
324
+ "node_modules/is-network-error": {
325
+ "version": "1.3.2",
326
+ "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz",
327
+ "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==",
328
+ "license": "MIT",
329
+ "engines": {
330
+ "node": ">=16"
331
+ },
332
+ "funding": {
333
+ "url": "https://github.com/sponsors/sindresorhus"
334
+ }
335
+ },
336
+ "node_modules/js-tiktoken": {
337
+ "version": "1.0.21",
338
+ "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.21.tgz",
339
+ "integrity": "sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==",
340
+ "license": "MIT",
341
+ "dependencies": {
342
+ "base64-js": "^1.5.1"
343
+ }
344
+ },
345
+ "node_modules/json-schema-traverse": {
346
+ "version": "1.0.0",
347
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
348
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
349
+ "license": "MIT"
350
+ },
351
+ "node_modules/langsmith": {
352
+ "version": "0.7.15",
353
+ "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.7.15.tgz",
354
+ "integrity": "sha512-huRfzLKcREE+ABkqKEriXK8Ax9V+xuV3d3x4PINEGi+hi4qyTvB4Nc2dpLSyfW/Ioj6+6d7T8majjWCe7mXc8A==",
355
+ "license": "MIT",
356
+ "dependencies": {
357
+ "p-queue": "6.6.2"
358
+ },
359
+ "peerDependencies": {
360
+ "@opentelemetry/api": "*",
361
+ "@opentelemetry/exporter-trace-otlp-proto": "*",
362
+ "@opentelemetry/sdk-trace-base": "*",
363
+ "openai": "*",
364
+ "ws": ">=7"
365
+ },
366
+ "peerDependenciesMeta": {
367
+ "@opentelemetry/api": {
368
+ "optional": true
369
+ },
370
+ "@opentelemetry/exporter-trace-otlp-proto": {
371
+ "optional": true
372
+ },
373
+ "@opentelemetry/sdk-trace-base": {
374
+ "optional": true
375
+ },
376
+ "openai": {
377
+ "optional": true
378
+ },
379
+ "ws": {
380
+ "optional": true
381
+ }
382
+ }
383
+ },
384
+ "node_modules/mustache": {
385
+ "version": "4.2.0",
386
+ "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz",
387
+ "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==",
388
+ "license": "MIT",
389
+ "bin": {
390
+ "mustache": "bin/mustache"
391
+ }
392
+ },
393
+ "node_modules/p-finally": {
394
+ "version": "1.0.0",
395
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
396
+ "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==",
397
+ "license": "MIT",
398
+ "engines": {
399
+ "node": ">=4"
400
+ }
401
+ },
402
+ "node_modules/p-queue": {
403
+ "version": "6.6.2",
404
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
405
+ "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
406
+ "license": "MIT",
407
+ "dependencies": {
408
+ "eventemitter3": "^4.0.4",
409
+ "p-timeout": "^3.2.0"
410
+ },
411
+ "engines": {
412
+ "node": ">=8"
413
+ },
414
+ "funding": {
415
+ "url": "https://github.com/sponsors/sindresorhus"
416
+ }
417
+ },
418
+ "node_modules/p-retry": {
419
+ "version": "7.1.1",
420
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-7.1.1.tgz",
421
+ "integrity": "sha512-J5ApzjyRkkf601HpEeykoiCvzHQjWxPAHhyjFcEUP2SWq0+35NKh8TLhpLw+Dkq5TZBFvUM6UigdE9hIVYTl5w==",
422
+ "license": "MIT",
423
+ "dependencies": {
424
+ "is-network-error": "^1.1.0"
425
+ },
426
+ "engines": {
427
+ "node": ">=20"
428
+ },
429
+ "funding": {
430
+ "url": "https://github.com/sponsors/sindresorhus"
431
+ }
432
+ },
433
+ "node_modules/p-timeout": {
434
+ "version": "3.2.0",
435
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
436
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
437
+ "license": "MIT",
438
+ "dependencies": {
439
+ "p-finally": "^1.0.0"
440
+ },
441
+ "engines": {
442
+ "node": ">=8"
443
+ }
444
+ },
445
+ "node_modules/require-from-string": {
446
+ "version": "2.0.2",
447
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
448
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
449
+ "license": "MIT",
450
+ "engines": {
451
+ "node": ">=0.10.0"
452
+ }
453
+ },
454
+ "node_modules/typescript": {
455
+ "version": "5.9.3",
456
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
457
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
458
+ "dev": true,
459
+ "license": "Apache-2.0",
460
+ "bin": {
461
+ "tsc": "bin/tsc",
462
+ "tsserver": "bin/tsserver"
463
+ },
464
+ "engines": {
465
+ "node": ">=14.17"
466
+ }
467
+ },
468
+ "node_modules/undici-types": {
469
+ "version": "6.21.0",
470
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
471
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
472
+ "dev": true,
473
+ "license": "MIT"
474
+ },
475
+ "node_modules/uuid": {
476
+ "version": "14.0.1",
477
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.1.tgz",
478
+ "integrity": "sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==",
479
+ "funding": [
480
+ "https://github.com/sponsors/broofa",
481
+ "https://github.com/sponsors/ctavan"
482
+ ],
483
+ "license": "MIT",
484
+ "bin": {
485
+ "uuid": "dist-node/bin/uuid"
486
+ }
487
+ },
488
+ "node_modules/zod": {
489
+ "version": "4.4.3",
490
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
491
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
492
+ "license": "MIT",
493
+ "funding": {
494
+ "url": "https://github.com/sponsors/colinhacks"
495
+ }
496
+ }
497
+ }
498
+ }
@@ -8,7 +8,7 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation travel.book_hotel --requested-spend-cents 18700 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":18700}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.0",
11
+ "@paybond/kit": "^0.11.2",
12
12
  "@langchain/core": "^1.2.1",
13
13
  "@langchain/langgraph": "^1.4.7",
14
14
  "zod": "^4.2.0"
@@ -14,7 +14,7 @@ jobs:
14
14
  with:
15
15
  node-version: "22"
16
16
  cache: npm
17
- - run: npm install
17
+ - run: npm ci
18
18
  - run: npm run smoke
19
19
  env:
20
20
  PAYBOND_API_KEY: ${{ secrets.PAYBOND_SANDBOX_API_KEY }}