@paybond/kit 0.12.4 → 0.12.6

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 (114) hide show
  1. package/dist/agent/facade.d.ts +2 -0
  2. package/dist/agent/facade.js +10 -2
  3. package/dist/agent/guarded-agent.d.ts +3 -1
  4. package/dist/agent/guarded-agent.js +13 -2
  5. package/dist/agent/index.d.ts +2 -2
  6. package/dist/agent/index.js +1 -1
  7. package/dist/agent/instrument.d.ts +3 -0
  8. package/dist/agent/instrument.js +21 -10
  9. package/dist/agent/interceptor.js +19 -0
  10. package/dist/agent/types.d.ts +14 -0
  11. package/dist/agent-receipt-acta.d.ts +58 -0
  12. package/dist/agent-receipt-acta.js +140 -0
  13. package/dist/agent-receipt-inclusion.d.ts +40 -0
  14. package/dist/agent-receipt-inclusion.js +209 -0
  15. package/dist/agent-receipt-owner-disclosure.d.ts +71 -0
  16. package/dist/agent-receipt-owner-disclosure.js +277 -0
  17. package/dist/agent-receipt-pef.d.ts +69 -0
  18. package/dist/agent-receipt-pef.js +121 -0
  19. package/dist/agent-receipt-scitt.d.ts +50 -0
  20. package/dist/agent-receipt-scitt.js +382 -0
  21. package/dist/agent-receipt.d.ts +55 -0
  22. package/dist/agent-receipt.js +297 -4
  23. package/dist/claude-agents/config.d.ts +21 -2
  24. package/dist/claude-agents/config.js +37 -0
  25. package/dist/claude-agents/index.d.ts +1 -1
  26. package/dist/claude-agents/index.js +1 -1
  27. package/dist/cli/agent/demo-loaders.d.ts +1 -0
  28. package/dist/cli/agent/demo-loaders.js +12 -0
  29. package/dist/cli/command-spec.js +16 -1
  30. package/dist/cli/commands/agent.d.ts +4 -0
  31. package/dist/cli/commands/agent.js +107 -1
  32. package/dist/cli/help.js +4 -1
  33. package/dist/cloudflare-agents/config.d.ts +1 -1
  34. package/dist/cloudflare-agents/config.js +2 -2
  35. package/dist/google-adk/config.d.ts +36 -0
  36. package/dist/google-adk/config.js +172 -0
  37. package/dist/google-adk/index.d.ts +2 -0
  38. package/dist/google-adk/index.js +2 -0
  39. package/dist/google-adk/sandbox-demo.d.ts +32 -0
  40. package/dist/google-adk/sandbox-demo.js +104 -0
  41. package/dist/index.d.ts +10 -2
  42. package/dist/index.js +11 -3
  43. package/dist/init.js +29 -0
  44. package/dist/mcp-receipt-resource.js +3 -1
  45. package/dist/mcp-server.js +182 -10
  46. package/dist/policy/adapter-options.d.ts +9 -0
  47. package/dist/policy/adapter-options.js +11 -0
  48. package/dist/policy/index.d.ts +1 -0
  49. package/dist/policy/index.js +1 -0
  50. package/dist/policy/load.d.ts +7 -0
  51. package/dist/policy/load.js +13 -0
  52. package/dist/policy/merge.js +26 -0
  53. package/dist/policy/schema.d.ts +20 -0
  54. package/dist/policy/schema.js +34 -2
  55. package/dist/shopify/instrument.d.ts +8 -8
  56. package/dist/template-init.d.ts +2 -2
  57. package/dist/template-init.js +12 -4
  58. package/dist/vercel-ai/config.d.ts +2 -1
  59. package/dist/vercel-ai/config.js +2 -2
  60. package/dist/vercel-ai/index.d.ts +2 -1
  61. package/dist/vercel-ai/index.js +2 -1
  62. package/dist/vercel-ai/provider-executed.d.ts +7 -0
  63. package/dist/vercel-ai/provider-executed.js +20 -0
  64. package/dist/vercel-ai/tool-approval.d.ts +5 -0
  65. package/dist/vercel-ai/tool-approval.js +8 -1
  66. package/dist/vercel-ai/wrap-tools.d.ts +8 -1
  67. package/dist/vercel-ai/wrap-tools.js +17 -4
  68. package/glama.json +6 -0
  69. package/package.json +15 -5
  70. package/templates/manifest.json +57 -12
  71. package/templates/openai-shopping-agent/package-lock.json +379 -14
  72. package/templates/openai-shopping-agent/package.json +2 -2
  73. package/templates/paybond-aws-operator/package-lock.json +376 -11
  74. package/templates/paybond-aws-operator/package.json +2 -2
  75. package/templates/paybond-claude-agents-demo/package-lock.json +379 -14
  76. package/templates/paybond-claude-agents-demo/package.json +2 -2
  77. package/templates/paybond-cloudflare-shopping-agent/.env.example +3 -0
  78. package/templates/paybond-cloudflare-shopping-agent/.github/workflows/smoke.yml +20 -0
  79. package/templates/paybond-cloudflare-shopping-agent/LICENSE +201 -0
  80. package/templates/paybond-cloudflare-shopping-agent/README.md +29 -0
  81. package/templates/paybond-cloudflare-shopping-agent/package-lock.json +2671 -0
  82. package/templates/paybond-cloudflare-shopping-agent/package.json +23 -0
  83. package/templates/paybond-cloudflare-shopping-agent/paybond.policy.yaml +22 -0
  84. package/templates/paybond-cloudflare-shopping-agent/src/agent.ts +109 -0
  85. package/templates/paybond-cloudflare-shopping-agent/src/index.ts +22 -0
  86. package/templates/paybond-cloudflare-shopping-agent/src/paybond.config.ts +51 -0
  87. package/templates/paybond-cloudflare-shopping-agent/tsconfig.json +13 -0
  88. package/templates/paybond-crewai-procurement-agent/.env.example +3 -0
  89. package/templates/paybond-crewai-procurement-agent/.github/workflows/smoke.yml +19 -0
  90. package/templates/paybond-crewai-procurement-agent/LICENSE +201 -0
  91. package/templates/paybond-crewai-procurement-agent/README.md +73 -0
  92. package/templates/paybond-crewai-procurement-agent/app.py +79 -0
  93. package/templates/paybond-crewai-procurement-agent/crew.py +117 -0
  94. package/templates/paybond-crewai-procurement-agent/package.json +6 -0
  95. package/templates/paybond-crewai-procurement-agent/paybond.policy.yaml +28 -0
  96. package/templates/paybond-crewai-procurement-agent/paybond_config.py +45 -0
  97. package/templates/paybond-crewai-procurement-agent/requirements.txt +2 -0
  98. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  99. package/templates/paybond-mastra-travel-agent/package-lock.json +379 -14
  100. package/templates/paybond-mastra-travel-agent/package.json +2 -2
  101. package/templates/paybond-mcp-coding-agent/package-lock.json +376 -11
  102. package/templates/paybond-mcp-coding-agent/package.json +2 -2
  103. package/templates/paybond-openai-agents-demo/package-lock.json +379 -14
  104. package/templates/paybond-openai-agents-demo/package.json +2 -2
  105. package/templates/paybond-procurement-agent/package-lock.json +376 -11
  106. package/templates/paybond-procurement-agent/package.json +2 -2
  107. package/templates/paybond-shopify-shopping-agent/package-lock.json +376 -11
  108. package/templates/paybond-shopify-shopping-agent/package.json +2 -2
  109. package/templates/paybond-stripe-agent-demo/package-lock.json +376 -11
  110. package/templates/paybond-stripe-agent-demo/package.json +2 -2
  111. package/templates/paybond-travel-agent/package-lock.json +376 -11
  112. package/templates/paybond-travel-agent/package.json +2 -2
  113. package/templates/paybond-vercel-shopping-agent/package-lock.json +376 -11
  114. package/templates/paybond-vercel-shopping-agent/package.json +2 -2
@@ -7,12 +7,12 @@
7
7
  "name": "paybond-claude-agents-demo",
8
8
  "dependencies": {
9
9
  "@anthropic-ai/claude-agent-sdk": "^0.2.100",
10
- "@paybond/kit": "^0.12.4",
10
+ "@paybond/kit": "^0.12.6",
11
11
  "zod": "^4.2.0"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^22.10.1",
15
- "typescript": "^5.7.2"
15
+ "typescript": "^7.0.2"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">=22"
@@ -260,9 +260,9 @@
260
260
  }
261
261
  },
262
262
  "node_modules/@paybond/kit": {
263
- "version": "0.12.4",
264
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.4.tgz",
265
- "integrity": "sha512-Wo2v0MBEdrvxGcSSJ/hG1TGOfw/hm0TTnpVXH70PVq0Y+xL97o4J9A1Z2dKVdfRnp5O0KM0AkJKA2MeOQ7qkFw==",
263
+ "version": "0.12.6",
264
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
265
+ "integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
266
266
  "license": "Apache-2.0",
267
267
  "dependencies": {
268
268
  "@noble/ed25519": "^2.2.1",
@@ -284,6 +284,7 @@
284
284
  },
285
285
  "peerDependencies": {
286
286
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
287
+ "@google/adk": ">=1.0.0",
287
288
  "@langchain/core": ">=0.3.0",
288
289
  "@langchain/langgraph": ">=0.2.50",
289
290
  "@mastra/core": ">=1.0.0",
@@ -296,6 +297,9 @@
296
297
  "@anthropic-ai/claude-agent-sdk": {
297
298
  "optional": true
298
299
  },
300
+ "@google/adk": {
301
+ "optional": true
302
+ },
299
303
  "@langchain/core": {
300
304
  "optional": true
301
305
  },
@@ -329,6 +333,346 @@
329
333
  "undici-types": "~6.21.0"
330
334
  }
331
335
  },
336
+ "node_modules/@typescript/typescript-aix-ppc64": {
337
+ "version": "7.0.2",
338
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
339
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
340
+ "cpu": [
341
+ "ppc64"
342
+ ],
343
+ "dev": true,
344
+ "license": "Apache-2.0",
345
+ "optional": true,
346
+ "os": [
347
+ "aix"
348
+ ],
349
+ "engines": {
350
+ "node": ">=16.20.0"
351
+ }
352
+ },
353
+ "node_modules/@typescript/typescript-darwin-arm64": {
354
+ "version": "7.0.2",
355
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
356
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
357
+ "cpu": [
358
+ "arm64"
359
+ ],
360
+ "dev": true,
361
+ "license": "Apache-2.0",
362
+ "optional": true,
363
+ "os": [
364
+ "darwin"
365
+ ],
366
+ "engines": {
367
+ "node": ">=16.20.0"
368
+ }
369
+ },
370
+ "node_modules/@typescript/typescript-darwin-x64": {
371
+ "version": "7.0.2",
372
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
373
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
374
+ "cpu": [
375
+ "x64"
376
+ ],
377
+ "dev": true,
378
+ "license": "Apache-2.0",
379
+ "optional": true,
380
+ "os": [
381
+ "darwin"
382
+ ],
383
+ "engines": {
384
+ "node": ">=16.20.0"
385
+ }
386
+ },
387
+ "node_modules/@typescript/typescript-freebsd-arm64": {
388
+ "version": "7.0.2",
389
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
390
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
391
+ "cpu": [
392
+ "arm64"
393
+ ],
394
+ "dev": true,
395
+ "license": "Apache-2.0",
396
+ "optional": true,
397
+ "os": [
398
+ "freebsd"
399
+ ],
400
+ "engines": {
401
+ "node": ">=16.20.0"
402
+ }
403
+ },
404
+ "node_modules/@typescript/typescript-freebsd-x64": {
405
+ "version": "7.0.2",
406
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
407
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
408
+ "cpu": [
409
+ "x64"
410
+ ],
411
+ "dev": true,
412
+ "license": "Apache-2.0",
413
+ "optional": true,
414
+ "os": [
415
+ "freebsd"
416
+ ],
417
+ "engines": {
418
+ "node": ">=16.20.0"
419
+ }
420
+ },
421
+ "node_modules/@typescript/typescript-linux-arm": {
422
+ "version": "7.0.2",
423
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
424
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
425
+ "cpu": [
426
+ "arm"
427
+ ],
428
+ "dev": true,
429
+ "license": "Apache-2.0",
430
+ "optional": true,
431
+ "os": [
432
+ "linux"
433
+ ],
434
+ "engines": {
435
+ "node": ">=16.20.0"
436
+ }
437
+ },
438
+ "node_modules/@typescript/typescript-linux-arm64": {
439
+ "version": "7.0.2",
440
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
441
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
442
+ "cpu": [
443
+ "arm64"
444
+ ],
445
+ "dev": true,
446
+ "license": "Apache-2.0",
447
+ "optional": true,
448
+ "os": [
449
+ "linux"
450
+ ],
451
+ "engines": {
452
+ "node": ">=16.20.0"
453
+ }
454
+ },
455
+ "node_modules/@typescript/typescript-linux-loong64": {
456
+ "version": "7.0.2",
457
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
458
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
459
+ "cpu": [
460
+ "loong64"
461
+ ],
462
+ "dev": true,
463
+ "license": "Apache-2.0",
464
+ "optional": true,
465
+ "os": [
466
+ "linux"
467
+ ],
468
+ "engines": {
469
+ "node": ">=16.20.0"
470
+ }
471
+ },
472
+ "node_modules/@typescript/typescript-linux-mips64el": {
473
+ "version": "7.0.2",
474
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
475
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
476
+ "cpu": [
477
+ "mips64el"
478
+ ],
479
+ "dev": true,
480
+ "license": "Apache-2.0",
481
+ "optional": true,
482
+ "os": [
483
+ "linux"
484
+ ],
485
+ "engines": {
486
+ "node": ">=16.20.0"
487
+ }
488
+ },
489
+ "node_modules/@typescript/typescript-linux-ppc64": {
490
+ "version": "7.0.2",
491
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
492
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
493
+ "cpu": [
494
+ "ppc64"
495
+ ],
496
+ "dev": true,
497
+ "license": "Apache-2.0",
498
+ "optional": true,
499
+ "os": [
500
+ "linux"
501
+ ],
502
+ "engines": {
503
+ "node": ">=16.20.0"
504
+ }
505
+ },
506
+ "node_modules/@typescript/typescript-linux-riscv64": {
507
+ "version": "7.0.2",
508
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
509
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
510
+ "cpu": [
511
+ "riscv64"
512
+ ],
513
+ "dev": true,
514
+ "license": "Apache-2.0",
515
+ "optional": true,
516
+ "os": [
517
+ "linux"
518
+ ],
519
+ "engines": {
520
+ "node": ">=16.20.0"
521
+ }
522
+ },
523
+ "node_modules/@typescript/typescript-linux-s390x": {
524
+ "version": "7.0.2",
525
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
526
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
527
+ "cpu": [
528
+ "s390x"
529
+ ],
530
+ "dev": true,
531
+ "license": "Apache-2.0",
532
+ "optional": true,
533
+ "os": [
534
+ "linux"
535
+ ],
536
+ "engines": {
537
+ "node": ">=16.20.0"
538
+ }
539
+ },
540
+ "node_modules/@typescript/typescript-linux-x64": {
541
+ "version": "7.0.2",
542
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
543
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
544
+ "cpu": [
545
+ "x64"
546
+ ],
547
+ "dev": true,
548
+ "license": "Apache-2.0",
549
+ "optional": true,
550
+ "os": [
551
+ "linux"
552
+ ],
553
+ "engines": {
554
+ "node": ">=16.20.0"
555
+ }
556
+ },
557
+ "node_modules/@typescript/typescript-netbsd-arm64": {
558
+ "version": "7.0.2",
559
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
560
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
561
+ "cpu": [
562
+ "arm64"
563
+ ],
564
+ "dev": true,
565
+ "license": "Apache-2.0",
566
+ "optional": true,
567
+ "os": [
568
+ "netbsd"
569
+ ],
570
+ "engines": {
571
+ "node": ">=16.20.0"
572
+ }
573
+ },
574
+ "node_modules/@typescript/typescript-netbsd-x64": {
575
+ "version": "7.0.2",
576
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
577
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
578
+ "cpu": [
579
+ "x64"
580
+ ],
581
+ "dev": true,
582
+ "license": "Apache-2.0",
583
+ "optional": true,
584
+ "os": [
585
+ "netbsd"
586
+ ],
587
+ "engines": {
588
+ "node": ">=16.20.0"
589
+ }
590
+ },
591
+ "node_modules/@typescript/typescript-openbsd-arm64": {
592
+ "version": "7.0.2",
593
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
594
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
595
+ "cpu": [
596
+ "arm64"
597
+ ],
598
+ "dev": true,
599
+ "license": "Apache-2.0",
600
+ "optional": true,
601
+ "os": [
602
+ "openbsd"
603
+ ],
604
+ "engines": {
605
+ "node": ">=16.20.0"
606
+ }
607
+ },
608
+ "node_modules/@typescript/typescript-openbsd-x64": {
609
+ "version": "7.0.2",
610
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
611
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
612
+ "cpu": [
613
+ "x64"
614
+ ],
615
+ "dev": true,
616
+ "license": "Apache-2.0",
617
+ "optional": true,
618
+ "os": [
619
+ "openbsd"
620
+ ],
621
+ "engines": {
622
+ "node": ">=16.20.0"
623
+ }
624
+ },
625
+ "node_modules/@typescript/typescript-sunos-x64": {
626
+ "version": "7.0.2",
627
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
628
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
629
+ "cpu": [
630
+ "x64"
631
+ ],
632
+ "dev": true,
633
+ "license": "Apache-2.0",
634
+ "optional": true,
635
+ "os": [
636
+ "sunos"
637
+ ],
638
+ "engines": {
639
+ "node": ">=16.20.0"
640
+ }
641
+ },
642
+ "node_modules/@typescript/typescript-win32-arm64": {
643
+ "version": "7.0.2",
644
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
645
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
646
+ "cpu": [
647
+ "arm64"
648
+ ],
649
+ "dev": true,
650
+ "license": "Apache-2.0",
651
+ "optional": true,
652
+ "os": [
653
+ "win32"
654
+ ],
655
+ "engines": {
656
+ "node": ">=16.20.0"
657
+ }
658
+ },
659
+ "node_modules/@typescript/typescript-win32-x64": {
660
+ "version": "7.0.2",
661
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
662
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
663
+ "cpu": [
664
+ "x64"
665
+ ],
666
+ "dev": true,
667
+ "license": "Apache-2.0",
668
+ "optional": true,
669
+ "os": [
670
+ "win32"
671
+ ],
672
+ "engines": {
673
+ "node": ">=16.20.0"
674
+ }
675
+ },
332
676
  "node_modules/accepts": {
333
677
  "version": "2.0.0",
334
678
  "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
@@ -854,9 +1198,9 @@
854
1198
  }
855
1199
  },
856
1200
  "node_modules/hono": {
857
- "version": "4.12.29",
858
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.29.tgz",
859
- "integrity": "sha512-1hNiRjawYrLq/4m3DQQjPGFg0VZkk4RjQJDff/excI6Dm9BiL75qxGrd7/c6YOxPdq6AscP3LiXhQ6fKFC1Waw==",
1201
+ "version": "4.12.30",
1202
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.30.tgz",
1203
+ "integrity": "sha512-emn+JoJjrN9YTpRDS5it/UI2SO9BAE37T6I3d963RxcZ81G9A4pr2SZTEiiaiKbzx+NKRg5BZ89fCL7gCJCUog==",
860
1204
  "license": "MIT",
861
1205
  "engines": {
862
1206
  "node": ">=16.9.0"
@@ -1405,17 +1749,38 @@
1405
1749
  }
1406
1750
  },
1407
1751
  "node_modules/typescript": {
1408
- "version": "5.9.3",
1409
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1410
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1752
+ "version": "7.0.2",
1753
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
1754
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
1411
1755
  "dev": true,
1412
1756
  "license": "Apache-2.0",
1413
1757
  "bin": {
1414
- "tsc": "bin/tsc",
1415
- "tsserver": "bin/tsserver"
1758
+ "tsc": "bin/tsc"
1416
1759
  },
1417
1760
  "engines": {
1418
- "node": ">=14.17"
1761
+ "node": ">=16.20.0"
1762
+ },
1763
+ "optionalDependencies": {
1764
+ "@typescript/typescript-aix-ppc64": "7.0.2",
1765
+ "@typescript/typescript-darwin-arm64": "7.0.2",
1766
+ "@typescript/typescript-darwin-x64": "7.0.2",
1767
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
1768
+ "@typescript/typescript-freebsd-x64": "7.0.2",
1769
+ "@typescript/typescript-linux-arm": "7.0.2",
1770
+ "@typescript/typescript-linux-arm64": "7.0.2",
1771
+ "@typescript/typescript-linux-loong64": "7.0.2",
1772
+ "@typescript/typescript-linux-mips64el": "7.0.2",
1773
+ "@typescript/typescript-linux-ppc64": "7.0.2",
1774
+ "@typescript/typescript-linux-riscv64": "7.0.2",
1775
+ "@typescript/typescript-linux-s390x": "7.0.2",
1776
+ "@typescript/typescript-linux-x64": "7.0.2",
1777
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
1778
+ "@typescript/typescript-netbsd-x64": "7.0.2",
1779
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
1780
+ "@typescript/typescript-openbsd-x64": "7.0.2",
1781
+ "@typescript/typescript-sunos-x64": "7.0.2",
1782
+ "@typescript/typescript-win32-arm64": "7.0.2",
1783
+ "@typescript/typescript-win32-x64": "7.0.2"
1419
1784
  }
1420
1785
  },
1421
1786
  "node_modules/undici-types": {
@@ -8,13 +8,13 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation travel.book_hotel --requested-spend-cents 18700 --result-body '{\"status\":\"completed\",\"cost_cents\":18700}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.11",
11
+ "@paybond/kit": "^0.12.6",
12
12
  "@anthropic-ai/claude-agent-sdk": "^0.2.100",
13
13
  "zod": "^4.2.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^22.10.1",
17
- "typescript": "^5.7.2"
17
+ "typescript": "^7.0.2"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=22"
@@ -0,0 +1,3 @@
1
+ # Copy to .env.local after paybond login
2
+ PAYBOND_API_KEY=
3
+ PAYBOND_GATEWAY_URL=https://api.paybond.ai
@@ -0,0 +1,20 @@
1
+ name: smoke
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ smoke:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: "22"
16
+ cache: npm
17
+ - run: npm ci
18
+ - run: npm run smoke
19
+ env:
20
+ PAYBOND_API_KEY: ${{ secrets.PAYBOND_SANDBOX_API_KEY }}