@paybond/kit 0.11.10 → 0.12.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.
Files changed (128) hide show
  1. package/README.md +2 -2
  2. package/completion-presets/catalog.json +374 -3
  3. package/completion-presets/catalog.sha256 +1 -1
  4. package/dist/agent/facade.js +13 -0
  5. package/dist/agent/guarded-agent.d.ts +1 -1
  6. package/dist/agent/guarded-agent.js +19 -0
  7. package/dist/agent/index.d.ts +2 -1
  8. package/dist/agent/index.js +1 -0
  9. package/dist/agent/instrument.d.ts +6 -0
  10. package/dist/agent/instrument.js +6 -0
  11. package/dist/agent/interceptor.d.ts +9 -0
  12. package/dist/agent/interceptor.js +177 -1
  13. package/dist/agent/receipt-client.d.ts +49 -0
  14. package/dist/agent/receipt-client.js +45 -0
  15. package/dist/agent/registry.js +1 -0
  16. package/dist/agent/run.d.ts +2 -0
  17. package/dist/agent/run.js +52 -0
  18. package/dist/agent/types.d.ts +70 -0
  19. package/dist/agent-receipt-external-attestations.d.ts +29 -0
  20. package/dist/agent-receipt-external-attestations.js +124 -0
  21. package/dist/agent-receipt.d.ts +134 -0
  22. package/dist/agent-receipt.js +580 -0
  23. package/dist/agent-recognition.d.ts +25 -0
  24. package/dist/agent-recognition.js +36 -0
  25. package/dist/audit/exports.d.ts +72 -0
  26. package/dist/audit/exports.js +185 -0
  27. package/dist/audit/index.d.ts +3 -0
  28. package/dist/audit/index.js +3 -0
  29. package/dist/audit/verify.d.ts +8 -0
  30. package/dist/audit/verify.js +113 -0
  31. package/dist/audit/wire.d.ts +54 -0
  32. package/dist/audit/wire.js +80 -0
  33. package/dist/cli/agent/demo-loaders.d.ts +2 -0
  34. package/dist/cli/agent/demo-loaders.js +24 -0
  35. package/dist/cli/agent/production-evidence.d.ts +11 -0
  36. package/dist/cli/agent/production-evidence.js +17 -0
  37. package/dist/cli/audit-export.d.ts +2 -7
  38. package/dist/cli/audit-export.js +2 -120
  39. package/dist/cli/command-spec.js +43 -10
  40. package/dist/cli/commands/agent.d.ts +3 -0
  41. package/dist/cli/commands/agent.js +143 -1
  42. package/dist/cli/commands/discovery.js +39 -36
  43. package/dist/cli/commands/workflows.js +116 -18
  44. package/dist/cli/help.d.ts +1 -1
  45. package/dist/cli/help.js +12 -8
  46. package/dist/cli/intents-harbor-mutation.d.ts +18 -0
  47. package/dist/cli/intents-harbor-mutation.js +33 -0
  48. package/dist/cli/paybond.d.ts +9 -0
  49. package/dist/cli/paybond.js +23 -0
  50. package/dist/cli/redact.js +3 -0
  51. package/dist/cloudflare-agents/config.d.ts +24 -0
  52. package/dist/cloudflare-agents/config.js +23 -0
  53. package/dist/cloudflare-agents/index.d.ts +3 -0
  54. package/dist/cloudflare-agents/index.js +3 -0
  55. package/dist/cloudflare-agents/peer.d.ts +9 -0
  56. package/dist/cloudflare-agents/peer.js +20 -0
  57. package/dist/cloudflare-agents/sandbox-demo.d.ts +36 -0
  58. package/dist/cloudflare-agents/sandbox-demo.js +89 -0
  59. package/dist/completion-catalog-digest.d.ts +1 -1
  60. package/dist/completion-catalog-digest.js +1 -1
  61. package/dist/completion-init.js +8 -3
  62. package/dist/dev/offline-gateway.d.ts +2 -1
  63. package/dist/dev/offline-gateway.js +34 -3
  64. package/dist/dev/x402-fund-mock.d.ts +28 -0
  65. package/dist/dev/x402-fund-mock.js +124 -0
  66. package/dist/index.d.ts +125 -9
  67. package/dist/index.js +264 -17
  68. package/dist/init.js +113 -2
  69. package/dist/mastra/config.d.ts +30 -0
  70. package/dist/mastra/config.js +58 -0
  71. package/dist/mastra/index.d.ts +2 -0
  72. package/dist/mastra/index.js +2 -0
  73. package/dist/mastra/peer.d.ts +11 -0
  74. package/dist/mastra/peer.js +24 -0
  75. package/dist/mastra/sandbox-demo.d.ts +36 -0
  76. package/dist/mastra/sandbox-demo.js +87 -0
  77. package/dist/mcp/index.d.ts +1 -0
  78. package/dist/mcp/index.js +1 -0
  79. package/dist/mcp/sandbox-demo.d.ts +38 -0
  80. package/dist/mcp/sandbox-demo.js +112 -0
  81. package/dist/mcp-receipt-resource.d.ts +10 -0
  82. package/dist/mcp-receipt-resource.js +32 -0
  83. package/dist/mcp-server.d.ts +6 -0
  84. package/dist/mcp-server.js +124 -1
  85. package/dist/mpp-commercial.d.ts +19 -0
  86. package/dist/mpp-commercial.js +34 -0
  87. package/dist/mpp-funding.d.ts +71 -0
  88. package/dist/mpp-funding.js +192 -0
  89. package/dist/payment-transport.d.ts +30 -0
  90. package/dist/payment-transport.js +56 -0
  91. package/dist/policy/init.js +2 -0
  92. package/dist/policy/intent-spec.js +2 -0
  93. package/dist/principal-intent.d.ts +1 -1
  94. package/dist/principal-intent.js +4 -1
  95. package/dist/project-init.js +8 -0
  96. package/dist/template-init.d.ts +2 -2
  97. package/dist/template-init.js +6 -2
  98. package/dist/x402-funding.d.ts +52 -0
  99. package/dist/x402-funding.js +124 -0
  100. package/package.json +20 -2
  101. package/templates/manifest.json +28 -9
  102. package/templates/openai-shopping-agent/package-lock.json +16 -8
  103. package/templates/openai-shopping-agent/package.json +1 -1
  104. package/templates/paybond-aws-operator/package-lock.json +13 -5
  105. package/templates/paybond-aws-operator/package.json +1 -1
  106. package/templates/paybond-claude-agents-demo/package-lock.json +16 -8
  107. package/templates/paybond-claude-agents-demo/package.json +1 -1
  108. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  109. package/templates/paybond-mastra-travel-agent/.env.example +3 -0
  110. package/templates/paybond-mastra-travel-agent/.github/workflows/smoke.yml +20 -0
  111. package/templates/paybond-mastra-travel-agent/LICENSE +201 -0
  112. package/templates/paybond-mastra-travel-agent/README.md +29 -0
  113. package/templates/paybond-mastra-travel-agent/package-lock.json +3377 -0
  114. package/templates/paybond-mastra-travel-agent/package.json +22 -0
  115. package/templates/paybond-mastra-travel-agent/paybond.policy.yaml +22 -0
  116. package/templates/paybond-mastra-travel-agent/src/index.ts +22 -0
  117. package/templates/paybond-mastra-travel-agent/src/paybond.config.ts +51 -0
  118. package/templates/paybond-mastra-travel-agent/tsconfig.json +13 -0
  119. package/templates/paybond-mcp-coding-agent/package-lock.json +13 -5
  120. package/templates/paybond-mcp-coding-agent/package.json +1 -1
  121. package/templates/paybond-openai-agents-demo/package-lock.json +16 -8
  122. package/templates/paybond-openai-agents-demo/package.json +1 -1
  123. package/templates/paybond-procurement-agent/package-lock.json +13 -5
  124. package/templates/paybond-procurement-agent/package.json +1 -1
  125. package/templates/paybond-travel-agent/package-lock.json +16 -8
  126. package/templates/paybond-travel-agent/package.json +1 -1
  127. package/templates/paybond-vercel-shopping-agent/package-lock.json +13 -5
  128. package/templates/paybond-vercel-shopping-agent/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "paybond-mastra-travel-agent",
3
+ "private": false,
4
+ "type": "module",
5
+ "scripts": {
6
+ "build": "tsc -p tsconfig.json",
7
+ "start": "node dist/index.js",
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
+ },
10
+ "dependencies": {
11
+ "@paybond/kit": "^0.11.11",
12
+ "@mastra/core": "^1.49.0",
13
+ "zod": "^4.2.0"
14
+ },
15
+ "devDependencies": {
16
+ "@types/node": "^22.10.1",
17
+ "typescript": "^5.7.2"
18
+ },
19
+ "engines": {
20
+ "node": ">=22"
21
+ }
22
+ }
@@ -0,0 +1,22 @@
1
+ # Reference implementation — edit freely. Regenerate with:
2
+ # paybond policy init --preset travel --out paybond.policy.yaml
3
+
4
+ version: 1
5
+ name: travel-agent-v1
6
+ default_deny: true
7
+
8
+ tools:
9
+ travel.book_hotel:
10
+ side_effecting: true
11
+ max_spend_cents: 20000
12
+ evidence_preset: cost_and_completion
13
+
14
+ search.web:
15
+ side_effecting: false
16
+
17
+ intent:
18
+ allowed_tools:
19
+ - travel.book_hotel
20
+ budget:
21
+ currency: usd
22
+ max_spend_usd: 200
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Travel booking agent (Mastra) — sandbox demo using bundled Kit helpers (no live LLM).
3
+ */
4
+ import { createPaybondClient } from "./paybond.config.js";
5
+ import { runMastraSandboxDemo } from "@paybond/kit/mastra";
6
+
7
+ async function main(): Promise<void> {
8
+ const paybond = await createPaybondClient();
9
+ try {
10
+ const demo = await runMastraSandboxDemo({
11
+ paybond,
12
+ operation: "travel.book_hotel",
13
+ requestedSpendCents: 18700,
14
+ evidencePreset: "cost_and_completion",
15
+ });
16
+ console.log(JSON.stringify(demo, null, 2));
17
+ } finally {
18
+ await paybond.aclose();
19
+ }
20
+ }
21
+
22
+ void main();
@@ -0,0 +1,51 @@
1
+ import { Paybond } from "@paybond/kit";
2
+
3
+ declare const process: {
4
+ env: Record<string, string | undefined>;
5
+ };
6
+
7
+ function readEnvValue(body: string, key: string): string | undefined {
8
+ const pattern = new RegExp("^\\s*(?:export\\s+)?" + key + "\\s*=\\s*(.*)$", "m");
9
+ const match = body.match(pattern);
10
+ if (!match) return undefined;
11
+ let value = (match[1] ?? "").trim();
12
+ if (value.startsWith('"') && value.endsWith('"')) {
13
+ try {
14
+ value = JSON.parse(value);
15
+ } catch {
16
+ value = value.slice(1, -1);
17
+ }
18
+ } else if (value.startsWith("'") && value.endsWith("'")) {
19
+ value = value.slice(1, -1);
20
+ }
21
+ return value.trim() || undefined;
22
+ }
23
+
24
+ export async function loadPaybondEnvFile(envFile = ".env.local"): Promise<void> {
25
+ if (process.env.PAYBOND_API_KEY?.trim()) return;
26
+ let body: string;
27
+ try {
28
+ const { readFile } = await import("node:fs/promises");
29
+ body = await readFile(envFile, "utf8");
30
+ } catch (err) {
31
+ if ((err).code === "ENOENT") return;
32
+ throw err;
33
+ }
34
+ const apiKey = readEnvValue(body, "PAYBOND_API_KEY");
35
+ if (apiKey) {
36
+ process.env.PAYBOND_API_KEY = apiKey;
37
+ }
38
+ }
39
+
40
+ export async function createPaybondClient(): Promise<Paybond> {
41
+ await loadPaybondEnvFile(".env.local");
42
+ const apiKey = process.env.PAYBOND_API_KEY?.trim();
43
+ if (!apiKey) {
44
+ throw new Error("PAYBOND_API_KEY is required; run paybond login");
45
+ }
46
+ return Paybond.open({
47
+ apiKey,
48
+ gatewayBaseUrl: process.env.PAYBOND_GATEWAY_URL ?? process.env.PAYBOND_GATEWAY_BASE_URL,
49
+ expectedEnvironment: "sandbox",
50
+ });
51
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "outDir": "dist",
7
+ "rootDir": "src",
8
+ "strict": true,
9
+ "skipLibCheck": true,
10
+ "declaration": true
11
+ },
12
+ "include": ["src/**/*.ts"]
13
+ }
@@ -6,7 +6,7 @@
6
6
  "": {
7
7
  "name": "paybond-mcp-coding-agent",
8
8
  "dependencies": {
9
- "@paybond/kit": "^0.11.10"
9
+ "@paybond/kit": "^0.12.0"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/node": "^22.10.1",
@@ -47,9 +47,9 @@
47
47
  }
48
48
  },
49
49
  "node_modules/@paybond/kit": {
50
- "version": "0.11.10",
51
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.10.tgz",
52
- "integrity": "sha512-RURqB5veDSVtWgeIsmgWI1+CgSyAudhZjhbRt6M9EOVbFF/47yYQLGIXbnqrxpthfV98jPE35p+4k0qtKLw/mw==",
50
+ "version": "0.12.0",
51
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
52
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
53
53
  "license": "Apache-2.0",
54
54
  "dependencies": {
55
55
  "@noble/ed25519": "^2.2.1",
@@ -58,7 +58,7 @@
58
58
  "ajv": "^8.17.1",
59
59
  "blake3": "^2.1.7",
60
60
  "uuid": "^14.0.0",
61
- "zod": "^4.4.3"
61
+ "zod": "^3.25.32 || ^4.2.0"
62
62
  },
63
63
  "bin": {
64
64
  "paybond": "dist/cli.js",
@@ -73,7 +73,9 @@
73
73
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
74
74
  "@langchain/core": ">=0.3.0",
75
75
  "@langchain/langgraph": ">=0.2.50",
76
+ "@mastra/core": ">=1.0.0",
76
77
  "@openai/agents": ">=0.12.0",
78
+ "agents": ">=0.10.0",
77
79
  "ai": ">=4.0.0",
78
80
  "zod": "^3.25.32 || ^4.2.0"
79
81
  },
@@ -87,9 +89,15 @@
87
89
  "@langchain/langgraph": {
88
90
  "optional": true
89
91
  },
92
+ "@mastra/core": {
93
+ "optional": true
94
+ },
90
95
  "@openai/agents": {
91
96
  "optional": true
92
97
  },
98
+ "agents": {
99
+ "optional": true
100
+ },
93
101
  "ai": {
94
102
  "optional": true
95
103
  },
@@ -8,7 +8,7 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation deploy.preview --requested-spend-cents 500 --result-body '{\"status\":\"completed\",\"cost_cents\":500}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.10"
11
+ "@paybond/kit": "^0.11.11"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^22.10.1",
@@ -7,7 +7,7 @@
7
7
  "name": "paybond-openai-agents-demo",
8
8
  "dependencies": {
9
9
  "@openai/agents": "^0.4.0",
10
- "@paybond/kit": "^0.11.10",
10
+ "@paybond/kit": "^0.12.0",
11
11
  "zod": "^4.2.0"
12
12
  },
13
13
  "devDependencies": {
@@ -169,9 +169,9 @@
169
169
  }
170
170
  },
171
171
  "node_modules/@paybond/kit": {
172
- "version": "0.11.10",
173
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.10.tgz",
174
- "integrity": "sha512-RURqB5veDSVtWgeIsmgWI1+CgSyAudhZjhbRt6M9EOVbFF/47yYQLGIXbnqrxpthfV98jPE35p+4k0qtKLw/mw==",
172
+ "version": "0.12.0",
173
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
174
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
175
175
  "license": "Apache-2.0",
176
176
  "dependencies": {
177
177
  "@noble/ed25519": "^2.2.1",
@@ -180,7 +180,7 @@
180
180
  "ajv": "^8.17.1",
181
181
  "blake3": "^2.1.7",
182
182
  "uuid": "^14.0.0",
183
- "zod": "^4.4.3"
183
+ "zod": "^3.25.32 || ^4.2.0"
184
184
  },
185
185
  "bin": {
186
186
  "paybond": "dist/cli.js",
@@ -195,7 +195,9 @@
195
195
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
196
196
  "@langchain/core": ">=0.3.0",
197
197
  "@langchain/langgraph": ">=0.2.50",
198
+ "@mastra/core": ">=1.0.0",
198
199
  "@openai/agents": ">=0.12.0",
200
+ "agents": ">=0.10.0",
199
201
  "ai": ">=4.0.0",
200
202
  "zod": "^3.25.32 || ^4.2.0"
201
203
  },
@@ -209,9 +211,15 @@
209
211
  "@langchain/langgraph": {
210
212
  "optional": true
211
213
  },
214
+ "@mastra/core": {
215
+ "optional": true
216
+ },
212
217
  "@openai/agents": {
213
218
  "optional": true
214
219
  },
220
+ "agents": {
221
+ "optional": true
222
+ },
215
223
  "ai": {
216
224
  "optional": true
217
225
  },
@@ -798,9 +806,9 @@
798
806
  }
799
807
  },
800
808
  "node_modules/hono": {
801
- "version": "4.12.27",
802
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.27.tgz",
803
- "integrity": "sha512-1yrb/+w6HWQJrUCLkJ2IF5jNIPvvFkblV5RNOYl6bV+OA6p9GLcMpHFFGTosSvHvcAUibuUukRqhlYI4z32C7Q==",
809
+ "version": "4.12.28",
810
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.28.tgz",
811
+ "integrity": "sha512-YwUvVpSF7m1yOblFPrU3Hbo8XhPheBoiyfGuII6z19LnOr6JpDnyyp7LFNrfV56wS8tpvtBFGRISHN02pDdLOA==",
804
812
  "license": "MIT",
805
813
  "optional": true,
806
814
  "engines": {
@@ -8,7 +8,7 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation saas.provision_seat --requested-spend-cents 2900 --result-body '{\"status\":\"completed\",\"cost_cents\":2900}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.10",
11
+ "@paybond/kit": "^0.11.11",
12
12
  "@openai/agents": "^0.4.0",
13
13
  "zod": "^4.2.0"
14
14
  },
@@ -6,7 +6,7 @@
6
6
  "": {
7
7
  "name": "paybond-procurement-agent",
8
8
  "dependencies": {
9
- "@paybond/kit": "^0.11.10"
9
+ "@paybond/kit": "^0.12.0"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/node": "^22.10.1",
@@ -47,9 +47,9 @@
47
47
  }
48
48
  },
49
49
  "node_modules/@paybond/kit": {
50
- "version": "0.11.10",
51
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.10.tgz",
52
- "integrity": "sha512-RURqB5veDSVtWgeIsmgWI1+CgSyAudhZjhbRt6M9EOVbFF/47yYQLGIXbnqrxpthfV98jPE35p+4k0qtKLw/mw==",
50
+ "version": "0.12.0",
51
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
52
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
53
53
  "license": "Apache-2.0",
54
54
  "dependencies": {
55
55
  "@noble/ed25519": "^2.2.1",
@@ -58,7 +58,7 @@
58
58
  "ajv": "^8.17.1",
59
59
  "blake3": "^2.1.7",
60
60
  "uuid": "^14.0.0",
61
- "zod": "^4.4.3"
61
+ "zod": "^3.25.32 || ^4.2.0"
62
62
  },
63
63
  "bin": {
64
64
  "paybond": "dist/cli.js",
@@ -73,7 +73,9 @@
73
73
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
74
74
  "@langchain/core": ">=0.3.0",
75
75
  "@langchain/langgraph": ">=0.2.50",
76
+ "@mastra/core": ">=1.0.0",
76
77
  "@openai/agents": ">=0.12.0",
78
+ "agents": ">=0.10.0",
77
79
  "ai": ">=4.0.0",
78
80
  "zod": "^3.25.32 || ^4.2.0"
79
81
  },
@@ -87,9 +89,15 @@
87
89
  "@langchain/langgraph": {
88
90
  "optional": true
89
91
  },
92
+ "@mastra/core": {
93
+ "optional": true
94
+ },
90
95
  "@openai/agents": {
91
96
  "optional": true
92
97
  },
98
+ "agents": {
99
+ "optional": true
100
+ },
93
101
  "ai": {
94
102
  "optional": true
95
103
  },
@@ -8,7 +8,7 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation procurement.submit_po --requested-spend-cents 12000 --result-body '{\"status\":\"completed\",\"cost_cents\":12000}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.10"
11
+ "@paybond/kit": "^0.11.11"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^22.10.1",
@@ -8,7 +8,7 @@
8
8
  "dependencies": {
9
9
  "@langchain/core": "^1.2.1",
10
10
  "@langchain/langgraph": "^1.4.7",
11
- "@paybond/kit": "^0.11.10",
11
+ "@paybond/kit": "^0.12.0",
12
12
  "zod": "^4.2.0"
13
13
  },
14
14
  "devDependencies": {
@@ -178,9 +178,9 @@
178
178
  }
179
179
  },
180
180
  "node_modules/@paybond/kit": {
181
- "version": "0.11.10",
182
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.10.tgz",
183
- "integrity": "sha512-RURqB5veDSVtWgeIsmgWI1+CgSyAudhZjhbRt6M9EOVbFF/47yYQLGIXbnqrxpthfV98jPE35p+4k0qtKLw/mw==",
181
+ "version": "0.12.0",
182
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
183
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
184
184
  "license": "Apache-2.0",
185
185
  "dependencies": {
186
186
  "@noble/ed25519": "^2.2.1",
@@ -189,7 +189,7 @@
189
189
  "ajv": "^8.17.1",
190
190
  "blake3": "^2.1.7",
191
191
  "uuid": "^14.0.0",
192
- "zod": "^4.4.3"
192
+ "zod": "^3.25.32 || ^4.2.0"
193
193
  },
194
194
  "bin": {
195
195
  "paybond": "dist/cli.js",
@@ -204,7 +204,9 @@
204
204
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
205
205
  "@langchain/core": ">=0.3.0",
206
206
  "@langchain/langgraph": ">=0.2.50",
207
+ "@mastra/core": ">=1.0.0",
207
208
  "@openai/agents": ">=0.12.0",
209
+ "agents": ">=0.10.0",
208
210
  "ai": ">=4.0.0",
209
211
  "zod": "^3.25.32 || ^4.2.0"
210
212
  },
@@ -218,9 +220,15 @@
218
220
  "@langchain/langgraph": {
219
221
  "optional": true
220
222
  },
223
+ "@mastra/core": {
224
+ "optional": true
225
+ },
221
226
  "@openai/agents": {
222
227
  "optional": true
223
228
  },
229
+ "agents": {
230
+ "optional": true
231
+ },
224
232
  "ai": {
225
233
  "optional": true
226
234
  },
@@ -350,9 +358,9 @@
350
358
  "license": "MIT"
351
359
  },
352
360
  "node_modules/langsmith": {
353
- "version": "0.7.15",
354
- "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.7.15.tgz",
355
- "integrity": "sha512-huRfzLKcREE+ABkqKEriXK8Ax9V+xuV3d3x4PINEGi+hi4qyTvB4Nc2dpLSyfW/Ioj6+6d7T8majjWCe7mXc8A==",
361
+ "version": "0.7.16",
362
+ "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.7.16.tgz",
363
+ "integrity": "sha512-Cn4PL7ujYQwxAOotesBhOuF2xsEIcW6mwKW41SXhu3WyjmU0R+ywCdbHYMSYh6QCaLg9pTluJMw2+L5ApyrZHg==",
356
364
  "license": "MIT",
357
365
  "dependencies": {
358
366
  "p-queue": "6.6.2"
@@ -8,7 +8,7 @@
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.10",
11
+ "@paybond/kit": "^0.11.11",
12
12
  "@langchain/core": "^1.2.1",
13
13
  "@langchain/langgraph": "^1.4.7",
14
14
  "zod": "^4.2.0"
@@ -6,7 +6,7 @@
6
6
  "": {
7
7
  "name": "paybond-vercel-shopping-agent",
8
8
  "dependencies": {
9
- "@paybond/kit": "^0.11.10",
9
+ "@paybond/kit": "^0.12.0",
10
10
  "ai": "^5.0.0",
11
11
  "zod": "^4.2.0"
12
12
  },
@@ -104,9 +104,9 @@
104
104
  }
105
105
  },
106
106
  "node_modules/@paybond/kit": {
107
- "version": "0.11.10",
108
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.10.tgz",
109
- "integrity": "sha512-RURqB5veDSVtWgeIsmgWI1+CgSyAudhZjhbRt6M9EOVbFF/47yYQLGIXbnqrxpthfV98jPE35p+4k0qtKLw/mw==",
107
+ "version": "0.12.0",
108
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
109
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
110
110
  "license": "Apache-2.0",
111
111
  "dependencies": {
112
112
  "@noble/ed25519": "^2.2.1",
@@ -115,7 +115,7 @@
115
115
  "ajv": "^8.17.1",
116
116
  "blake3": "^2.1.7",
117
117
  "uuid": "^14.0.0",
118
- "zod": "^4.4.3"
118
+ "zod": "^3.25.32 || ^4.2.0"
119
119
  },
120
120
  "bin": {
121
121
  "paybond": "dist/cli.js",
@@ -130,7 +130,9 @@
130
130
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
131
131
  "@langchain/core": ">=0.3.0",
132
132
  "@langchain/langgraph": ">=0.2.50",
133
+ "@mastra/core": ">=1.0.0",
133
134
  "@openai/agents": ">=0.12.0",
135
+ "agents": ">=0.10.0",
134
136
  "ai": ">=4.0.0",
135
137
  "zod": "^3.25.32 || ^4.2.0"
136
138
  },
@@ -144,9 +146,15 @@
144
146
  "@langchain/langgraph": {
145
147
  "optional": true
146
148
  },
149
+ "@mastra/core": {
150
+ "optional": true
151
+ },
147
152
  "@openai/agents": {
148
153
  "optional": true
149
154
  },
155
+ "agents": {
156
+ "optional": true
157
+ },
150
158
  "ai": {
151
159
  "optional": true
152
160
  },
@@ -8,7 +8,7 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation commerce.checkout --requested-spend-cents 4500 --result-body '{\"status\":\"completed\",\"cost_cents\":4500}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.10",
11
+ "@paybond/kit": "^0.11.11",
12
12
  "ai": "^5.0.0",
13
13
  "zod": "^4.2.0"
14
14
  },