@paybond/kit 0.11.6 → 0.11.7
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 +1 -1
- package/dist/cli/agent-harbor-evidence-smoke-checklist.d.ts +7 -0
- package/dist/cli/agent-harbor-evidence-smoke-checklist.js +23 -0
- package/dist/cli/agent-production-attach-smoke-checklist.d.ts +7 -0
- package/dist/cli/agent-production-attach-smoke-checklist.js +30 -0
- package/dist/cli/command-spec.js +13 -4
- package/dist/cli/commands/agent.d.ts +2 -0
- package/dist/cli/commands/agent.js +217 -4
- package/dist/cli/commands/setup.d.ts +11 -1
- package/dist/cli/commands/setup.js +42 -9
- package/dist/cli/help.js +2 -0
- package/dist/cli/http-error-message.d.ts +5 -0
- package/dist/cli/http-error-message.js +55 -0
- package/dist/cli/router.js +4 -1
- package/dist/cli.js +15 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp-server.js +7 -8
- package/dist/payee-evidence.d.ts +9 -0
- package/dist/payee-evidence.js +12 -0
- package/package.json +1 -1
- package/templates/manifest.json +9 -9
- package/templates/openai-shopping-agent/package-lock.json +7 -7
- package/templates/openai-shopping-agent/package.json +1 -1
- package/templates/paybond-aws-operator/package-lock.json +4 -4
- package/templates/paybond-aws-operator/package.json +1 -1
- package/templates/paybond-claude-agents-demo/package-lock.json +7 -7
- package/templates/paybond-claude-agents-demo/package.json +1 -1
- package/templates/paybond-invoice-agent/requirements.txt +1 -1
- package/templates/paybond-mcp-coding-agent/package-lock.json +4 -4
- package/templates/paybond-mcp-coding-agent/package.json +1 -1
- package/templates/paybond-openai-agents-demo/package-lock.json +7 -7
- package/templates/paybond-openai-agents-demo/package.json +1 -1
- package/templates/paybond-procurement-agent/package-lock.json +4 -4
- package/templates/paybond-procurement-agent/package.json +1 -1
- package/templates/paybond-travel-agent/package-lock.json +7 -7
- package/templates/paybond-travel-agent/package.json +1 -1
- package/templates/paybond-vercel-shopping-agent/package-lock.json +4 -4
- package/templates/paybond-vercel-shopping-agent/package.json +1 -1
|
@@ -11,3 +11,8 @@ export declare function summarizeGatewayHttpError(statusCode: number, bodyText:
|
|
|
11
11
|
* Build a CLI-safe message for SDK HTTP failures that embed raw bodies in `.message`.
|
|
12
12
|
*/
|
|
13
13
|
export declare function formatSdkHttpErrorMessage(rawMessage: string, statusCode: number, bodyText: string): string;
|
|
14
|
+
/**
|
|
15
|
+
* Resolve a CLI-safe gateway error message from SDK or agent middleware failures.
|
|
16
|
+
* Never echoes Cloudflare edge JSON, HTML, or raw upstream bodies.
|
|
17
|
+
*/
|
|
18
|
+
export declare function resolveCliGatewayErrorMessage(err: unknown): string;
|
|
@@ -91,3 +91,58 @@ export function formatSdkHttpErrorMessage(rawMessage, statusCode, bodyText) {
|
|
|
91
91
|
}
|
|
92
92
|
return `${operation} HTTP ${statusCode}: ${summary.message}`;
|
|
93
93
|
}
|
|
94
|
+
function isSdkHttpErrorLike(err) {
|
|
95
|
+
if (!err || typeof err !== "object") {
|
|
96
|
+
return false;
|
|
97
|
+
}
|
|
98
|
+
const candidate = err;
|
|
99
|
+
return (typeof candidate.message === "string" &&
|
|
100
|
+
typeof candidate.statusCode === "number" &&
|
|
101
|
+
typeof candidate.bodyText === "string");
|
|
102
|
+
}
|
|
103
|
+
function parseEmbeddedHttpErrorBody(message) {
|
|
104
|
+
const match = / HTTP (\d{3}):\s*(\{[\s\S]*\})\s*$/u.exec(message);
|
|
105
|
+
if (!match) {
|
|
106
|
+
return undefined;
|
|
107
|
+
}
|
|
108
|
+
return {
|
|
109
|
+
statusCode: Number(match[1]),
|
|
110
|
+
bodyText: match[2] ?? "",
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
function extractSdkHttpError(err) {
|
|
114
|
+
const chain = [];
|
|
115
|
+
let current = err;
|
|
116
|
+
while (current) {
|
|
117
|
+
chain.push(current);
|
|
118
|
+
current =
|
|
119
|
+
current instanceof Error && "cause" in current
|
|
120
|
+
? current.cause
|
|
121
|
+
: undefined;
|
|
122
|
+
}
|
|
123
|
+
for (const item of chain) {
|
|
124
|
+
if (isSdkHttpErrorLike(item)) {
|
|
125
|
+
return item;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
return undefined;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Resolve a CLI-safe gateway error message from SDK or agent middleware failures.
|
|
132
|
+
* Never echoes Cloudflare edge JSON, HTML, or raw upstream bodies.
|
|
133
|
+
*/
|
|
134
|
+
export function resolveCliGatewayErrorMessage(err) {
|
|
135
|
+
const sdkError = extractSdkHttpError(err);
|
|
136
|
+
if (sdkError) {
|
|
137
|
+
return formatSdkHttpErrorMessage(sdkError.message, sdkError.statusCode, sdkError.bodyText);
|
|
138
|
+
}
|
|
139
|
+
if (err instanceof Error) {
|
|
140
|
+
const embedded = parseEmbeddedHttpErrorBody(err.message);
|
|
141
|
+
if (embedded) {
|
|
142
|
+
const operation = err.message.replace(/ HTTP \d{3}:[\s\S]*$/u, "").trim() || "Gateway request";
|
|
143
|
+
return formatSdkHttpErrorMessage(operation, embedded.statusCode, embedded.bodyText);
|
|
144
|
+
}
|
|
145
|
+
return err.message;
|
|
146
|
+
}
|
|
147
|
+
return String(err);
|
|
148
|
+
}
|
package/dist/cli/router.js
CHANGED
|
@@ -350,7 +350,10 @@ export async function runCli(argv, deps = {}) {
|
|
|
350
350
|
ctx.stdout.write(`${line}\n`);
|
|
351
351
|
}
|
|
352
352
|
}
|
|
353
|
-
else if (canonical === "agent sandbox smoke"
|
|
353
|
+
else if ((canonical === "agent sandbox smoke" ||
|
|
354
|
+
canonical === "agent production attach smoke" ||
|
|
355
|
+
canonical === "agent harbor evidence smoke") &&
|
|
356
|
+
Array.isArray(result.data.checklist_lines)) {
|
|
354
357
|
writeTableLines(ctx.stdout, result.data.checklist_lines);
|
|
355
358
|
if (output.warnings.length) {
|
|
356
359
|
for (const warning of output.warnings) {
|
package/dist/cli.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
import fs from "node:fs/promises";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
5
|
+
import { deprecatedAliasWarning } from "./cli/automation.js";
|
|
6
|
+
import { mcpServeArgvMatches, runMcpServeCommandSync } from "./cli/commands/setup.js";
|
|
5
7
|
import { runCli } from "./cli/router.js";
|
|
6
8
|
async function invokedFromCLI() {
|
|
7
9
|
const scriptPath = process.argv[1];
|
|
@@ -25,7 +27,19 @@ invokedFromCLI().then((invoked) => {
|
|
|
25
27
|
if (!invoked) {
|
|
26
28
|
return;
|
|
27
29
|
}
|
|
28
|
-
|
|
30
|
+
const argv = process.argv.slice(2);
|
|
31
|
+
const aliasWarning = deprecatedAliasWarning(process.argv[1]);
|
|
32
|
+
if (aliasWarning) {
|
|
33
|
+
process.stderr.write(`${aliasWarning}\n`);
|
|
34
|
+
}
|
|
35
|
+
if (mcpServeArgvMatches(argv)) {
|
|
36
|
+
process.exitCode = runMcpServeCommandSync(argv, {
|
|
37
|
+
stdout: process.stdout,
|
|
38
|
+
stderr: process.stderr,
|
|
39
|
+
});
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
runCli(argv).then((code) => {
|
|
29
43
|
process.exitCode = code;
|
|
30
44
|
}, (err) => {
|
|
31
45
|
process.stderr.write(`${err instanceof Error ? err.message : String(err)}\n`);
|
package/dist/index.d.ts
CHANGED
|
@@ -1301,7 +1301,7 @@ export declare class Paybond {
|
|
|
1301
1301
|
}
|
|
1302
1302
|
export { normalizeJson, jsonValueDigest } from "./json-digest.js";
|
|
1303
1303
|
export { buildSignedCreateIntentBody, buildSignedCreateIntentBodyWithPolicyBinding, intentCreationSignBytesRaw, intentCreationSignBytesWithPolicyBinding, type BuildSignedCreateIntentParams, type BuildSignedCreateIntentWithPolicyBindingParams, type PolicyBindingRef, type PublishedPolicyHead, type SettlementRail, } from "./principal-intent.js";
|
|
1304
|
-
export { artifactsDigest, signPayeeEvidenceBinding, type SignPayeeEvidenceParams } from "./payee-evidence.js";
|
|
1304
|
+
export { artifactsDigest, evidenceSignBytesV1, signPayeeEvidenceBinding, type SignPayeeEvidenceParams, } from "./payee-evidence.js";
|
|
1305
1305
|
export { AGENT_RECOGNITION_GATEWAY_VERIFIER_ID, AGENT_RECOGNITION_PROOF_KIND_V1, AGENT_RECOGNITION_PURPOSE_EVIDENCE_SUBMIT, newAgentRecognitionRequestEnvelope, signAgentRecognitionProofV1, signHarborEvidenceSubmitRecognitionProof, type SignAgentRecognitionProofV1Params, type SignedAgentRecognitionProofV1, } from "./agent-recognition.js";
|
|
1306
1306
|
export { validateCompletionEvidence, type CompletionEvidenceValidationReport, } from "./completion-validate-evidence.js";
|
|
1307
1307
|
export { completionSchemaDigestHex, computeVendorContractDigests, verifyVendorContract, verifyCatalogVendorContracts, type VendorContract, type VendorContractDigests, } from "./completion-contract-digest.js";
|
package/dist/index.js
CHANGED
|
@@ -2324,7 +2324,7 @@ export class Paybond {
|
|
|
2324
2324
|
}
|
|
2325
2325
|
export { normalizeJson, jsonValueDigest } from "./json-digest.js";
|
|
2326
2326
|
export { buildSignedCreateIntentBody, buildSignedCreateIntentBodyWithPolicyBinding, intentCreationSignBytesRaw, intentCreationSignBytesWithPolicyBinding, } from "./principal-intent.js";
|
|
2327
|
-
export { artifactsDigest, signPayeeEvidenceBinding } from "./payee-evidence.js";
|
|
2327
|
+
export { artifactsDigest, evidenceSignBytesV1, signPayeeEvidenceBinding, } from "./payee-evidence.js";
|
|
2328
2328
|
export { AGENT_RECOGNITION_GATEWAY_VERIFIER_ID, AGENT_RECOGNITION_PROOF_KIND_V1, AGENT_RECOGNITION_PURPOSE_EVIDENCE_SUBMIT, newAgentRecognitionRequestEnvelope, signAgentRecognitionProofV1, signHarborEvidenceSubmitRecognitionProof, } from "./agent-recognition.js";
|
|
2329
2329
|
export { validateCompletionEvidence, } from "./completion-validate-evidence.js";
|
|
2330
2330
|
export { completionSchemaDigestHex, computeVendorContractDigests, verifyVendorContract, verifyCatalogVendorContracts, } from "./completion-contract-digest.js";
|
package/dist/mcp-server.js
CHANGED
|
@@ -5,7 +5,7 @@ import fs from "node:fs/promises";
|
|
|
5
5
|
import path from "node:path";
|
|
6
6
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
7
7
|
import { requireSecureGatewayUrl } from "./gateway-url.js";
|
|
8
|
-
import {
|
|
8
|
+
import { deprecatedAliasWarning } from "./cli/automation.js";
|
|
9
9
|
import { redactSensitiveFields } from "./cli/redact.js";
|
|
10
10
|
import { MCP_TOOL_ALLOWLIST_ENV, MCP_TOOL_POLICY_ENV, mergeMcpToolPolicy, parseMcpToolAllowlist, parseMcpToolPolicy, resolveMcpToolPolicy, toolAllowedByPolicy, } from "./cli/mcp-policy.js";
|
|
11
11
|
import { MCP_EVIDENCE_POLICY_ENV, McpEvidenceValidationGate, completionEvidenceValidationOk, extractHarborEvidenceValidationInput, extractSandboxGuardrailValidationInput, parseMcpEvidencePolicy, } from "./mcp-evidence-policy.js";
|
|
@@ -13,7 +13,7 @@ import { McpCapabilityTokenCache, mcpToolStoresCapabilityToken, parseMcpCapabili
|
|
|
13
13
|
import { createMcpPolicyGatewayAdapter, McpPolicyReloadGate, parseMcpPolicyReloadConfig, } from "./mcp-policy-reload.js";
|
|
14
14
|
import { DEFAULT_PAYBOND_GATEWAY_BASE_URL, GatewayFraudClient, GatewaySignalClient, } from "./index.js";
|
|
15
15
|
const SERVER_NAME = "Paybond MCP";
|
|
16
|
-
const SERVER_VERSION = "0.11.
|
|
16
|
+
const SERVER_VERSION = "0.11.7";
|
|
17
17
|
const MCP_PROTOCOL_VERSION = "2025-11-25";
|
|
18
18
|
const DEFAULT_PRINCIPAL_PATH = "/v1/auth/principal";
|
|
19
19
|
const DEFAULT_RECOGNITION_VERIFIER_ID = "paybond-gateway";
|
|
@@ -1697,12 +1697,11 @@ invokedFromCLI().then((invoked) => {
|
|
|
1697
1697
|
if (!invoked) {
|
|
1698
1698
|
return;
|
|
1699
1699
|
}
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
});
|
|
1700
|
+
const aliasWarning = deprecatedAliasWarning(process.argv[1]);
|
|
1701
|
+
if (aliasWarning) {
|
|
1702
|
+
process.stderr.write(`${aliasWarning}\n`);
|
|
1703
|
+
}
|
|
1704
|
+
process.exitCode = main(process.argv.slice(2));
|
|
1706
1705
|
}, (err) => {
|
|
1707
1706
|
process.stderr.write(`${formatError(err)}\n`);
|
|
1708
1707
|
process.exitCode = 1;
|
package/dist/payee-evidence.d.ts
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
*/
|
|
4
4
|
/** BLAKE3 digest of concatenated artifact hashes (empty list matches Harbor / `paybond-evidence`). */
|
|
5
5
|
export declare function artifactsDigest(artifactHashes32: Uint8Array[]): Uint8Array;
|
|
6
|
+
/** Canonical EvidenceSignV1 signing bytes (matches `paybond-evidence` / gateway binwire). */
|
|
7
|
+
export declare function evidenceSignBytesV1(input: {
|
|
8
|
+
tenantId: string;
|
|
9
|
+
intentId: string;
|
|
10
|
+
payeeDid: string;
|
|
11
|
+
payload: Record<string, unknown>;
|
|
12
|
+
artifactsBlake3Hex: string[];
|
|
13
|
+
submittedAtRfc3339: string;
|
|
14
|
+
}): Uint8Array;
|
|
6
15
|
export type SignPayeeEvidenceParams = {
|
|
7
16
|
tenantId: string;
|
|
8
17
|
intentId: string;
|
package/dist/payee-evidence.js
CHANGED
|
@@ -18,6 +18,18 @@ export function artifactsDigest(artifactHashes32) {
|
|
|
18
18
|
function encodeEvidenceSignV1(input) {
|
|
19
19
|
return concatBytes(encodeU8(EVIDENCE_SIGN_VERSION), encodeBincodeString(input.tenantId), encodeBincodeUuid(input.intentId), encodeBincodeString(input.payeeDid), encodeFixed32(input.payloadDigest), encodeFixed32(input.artifactsDigest), encodeBincodeString(input.submittedAtRfc3339));
|
|
20
20
|
}
|
|
21
|
+
/** Canonical EvidenceSignV1 signing bytes (matches `paybond-evidence` / gateway binwire). */
|
|
22
|
+
export function evidenceSignBytesV1(input) {
|
|
23
|
+
const artifactBin = input.artifactsBlake3Hex.map((h) => hexToBytes(h));
|
|
24
|
+
return encodeEvidenceSignV1({
|
|
25
|
+
tenantId: input.tenantId,
|
|
26
|
+
intentId: input.intentId,
|
|
27
|
+
payeeDid: input.payeeDid,
|
|
28
|
+
payloadDigest: jsonValueDigest(input.payload),
|
|
29
|
+
artifactsDigest: artifactsDigest(artifactBin),
|
|
30
|
+
submittedAtRfc3339: input.submittedAtRfc3339,
|
|
31
|
+
});
|
|
32
|
+
}
|
|
21
33
|
function bytesToBase64(bytes) {
|
|
22
34
|
let binary = "";
|
|
23
35
|
for (let i = 0; i < bytes.length; i++)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paybond/kit",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.7",
|
|
4
4
|
"mcpName": "io.github.nonameuserd/paybond",
|
|
5
5
|
"description": "Paybond Kit for TypeScript: agent spend governance for paid tool calls with spend authorization, evidence receipts, refunds, disputes, hosted Gateway sessions, and settlement.",
|
|
6
6
|
"license": "Apache-2.0",
|
package/templates/manifest.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"evidence_preset": "cost_and_completion",
|
|
14
14
|
"smoke_result_body": { "status": "completed", "cost_cents": 18700 },
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@paybond/kit": "^0.11.
|
|
16
|
+
"@paybond/kit": "^0.11.7",
|
|
17
17
|
"@langchain/core": "^1.2.1",
|
|
18
18
|
"@langchain/langgraph": "^1.4.7",
|
|
19
19
|
"zod": "^4.2.0"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"evidence_preset": "cost_and_completion",
|
|
34
34
|
"smoke_result_body": { "status": "completed", "cost_cents": 4500 },
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@paybond/kit": "^0.11.
|
|
36
|
+
"@paybond/kit": "^0.11.7",
|
|
37
37
|
"ai": "^5.0.0",
|
|
38
38
|
"zod": "^4.2.0"
|
|
39
39
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"evidence_preset": "cost_and_completion",
|
|
53
53
|
"smoke_result_body": { "status": "completed", "cost_cents": 2900 },
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@paybond/kit": "^0.11.
|
|
55
|
+
"@paybond/kit": "^0.11.7",
|
|
56
56
|
"@openai/agents": "^0.4.0",
|
|
57
57
|
"zod": "^4.2.0"
|
|
58
58
|
},
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"evidence_preset": "cost_and_completion",
|
|
72
72
|
"smoke_result_body": { "status": "completed", "cost_cents": 4500 },
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@paybond/kit": "^0.11.
|
|
74
|
+
"@paybond/kit": "^0.11.7",
|
|
75
75
|
"@openai/agents": "^0.4.0",
|
|
76
76
|
"zod": "^4.2.0"
|
|
77
77
|
},
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"evidence_preset": "cost_and_completion",
|
|
91
91
|
"smoke_result_body": { "status": "completed", "cost_cents": 18700 },
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@paybond/kit": "^0.11.
|
|
93
|
+
"@paybond/kit": "^0.11.7",
|
|
94
94
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
95
95
|
"zod": "^4.2.0"
|
|
96
96
|
},
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"evidence_preset": "cost_and_completion",
|
|
111
111
|
"smoke_result_body": { "status": "completed", "cost_cents": 500 },
|
|
112
112
|
"dependencies": {
|
|
113
|
-
"@paybond/kit": "^0.11.
|
|
113
|
+
"@paybond/kit": "^0.11.7"
|
|
114
114
|
},
|
|
115
115
|
"mcp_tool_policy": "spend-write"
|
|
116
116
|
},
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"evidence_preset": "cost_and_completion",
|
|
128
128
|
"smoke_result_body": { "status": "completed", "cost_cents": 12000 },
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@paybond/kit": "^0.11.
|
|
130
|
+
"@paybond/kit": "^0.11.7"
|
|
131
131
|
},
|
|
132
132
|
"demo_mode": "generic"
|
|
133
133
|
},
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"evidence_preset": "cost_and_completion",
|
|
144
144
|
"smoke_result_body": { "status": "completed", "cost_cents": 12500 },
|
|
145
145
|
"dependencies": {
|
|
146
|
-
"@paybond/kit": "^0.11.
|
|
146
|
+
"@paybond/kit": "^0.11.7"
|
|
147
147
|
},
|
|
148
148
|
"demo_mode": "generic"
|
|
149
149
|
},
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"evidence_preset": "cost_and_completion",
|
|
160
160
|
"smoke_result_body": { "status": "completed", "cost_cents": 2900 },
|
|
161
161
|
"python_dependencies": {
|
|
162
|
-
"paybond-kit": ">=0.11.
|
|
162
|
+
"paybond-kit": ">=0.11.7",
|
|
163
163
|
"langgraph": ">=1.2.0"
|
|
164
164
|
},
|
|
165
165
|
"demo_import": "paybond_kit.langgraph_sandbox_demo",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"name": "openai-shopping-agent",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@openai/agents": "^0.4.0",
|
|
10
|
-
"@paybond/kit": "^0.11.
|
|
10
|
+
"@paybond/kit": "^0.11.7",
|
|
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.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
174
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "0.11.7",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
174
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
175
175
|
"license": "Apache-2.0",
|
|
176
176
|
"dependencies": {
|
|
177
177
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -829,9 +829,9 @@
|
|
|
829
829
|
}
|
|
830
830
|
},
|
|
831
831
|
"node_modules/iconv-lite": {
|
|
832
|
-
"version": "0.7.
|
|
833
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.
|
|
834
|
-
"integrity": "sha512-
|
|
832
|
+
"version": "0.7.3",
|
|
833
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
|
|
834
|
+
"integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
|
|
835
835
|
"license": "MIT",
|
|
836
836
|
"optional": true,
|
|
837
837
|
"dependencies": {
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
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-aws-operator",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.7"
|
|
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.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.7",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
52
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation aws.ec2.start_instance --requested-spend-cents 12500 --result-body '{\"status\":\"completed\",\"cost_cents\":12500}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.7"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^22.10.1",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"name": "paybond-claude-agents-demo",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
10
|
-
"@paybond/kit": "^0.11.
|
|
10
|
+
"@paybond/kit": "^0.11.7",
|
|
11
11
|
"zod": "^4.2.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -260,9 +260,9 @@
|
|
|
260
260
|
}
|
|
261
261
|
},
|
|
262
262
|
"node_modules/@paybond/kit": {
|
|
263
|
-
"version": "0.11.
|
|
264
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
265
|
-
"integrity": "sha512-
|
|
263
|
+
"version": "0.11.7",
|
|
264
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
265
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
266
266
|
"license": "Apache-2.0",
|
|
267
267
|
"dependencies": {
|
|
268
268
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -875,9 +875,9 @@
|
|
|
875
875
|
}
|
|
876
876
|
},
|
|
877
877
|
"node_modules/iconv-lite": {
|
|
878
|
-
"version": "0.7.
|
|
879
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.
|
|
880
|
-
"integrity": "sha512-
|
|
878
|
+
"version": "0.7.3",
|
|
879
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
|
|
880
|
+
"integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
|
|
881
881
|
"license": "MIT",
|
|
882
882
|
"dependencies": {
|
|
883
883
|
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
12
12
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
paybond-kit>=0.11.
|
|
1
|
+
paybond-kit>=0.11.7
|
|
2
2
|
langgraph>=1.2.0
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "paybond-mcp-coding-agent",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.7"
|
|
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.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.7",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
52
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7"
|
|
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
|
+
"@paybond/kit": "^0.11.7",
|
|
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.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
174
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "0.11.7",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
174
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
175
175
|
"license": "Apache-2.0",
|
|
176
176
|
"dependencies": {
|
|
177
177
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -829,9 +829,9 @@
|
|
|
829
829
|
}
|
|
830
830
|
},
|
|
831
831
|
"node_modules/iconv-lite": {
|
|
832
|
-
"version": "0.7.
|
|
833
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.
|
|
834
|
-
"integrity": "sha512-
|
|
832
|
+
"version": "0.7.3",
|
|
833
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
|
|
834
|
+
"integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
|
|
835
835
|
"license": "MIT",
|
|
836
836
|
"optional": true,
|
|
837
837
|
"dependencies": {
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
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.
|
|
9
|
+
"@paybond/kit": "^0.11.7"
|
|
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.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.7",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
52
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7"
|
|
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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
12
12
|
"zod": "^4.2.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
"license": "MIT"
|
|
115
115
|
},
|
|
116
116
|
"node_modules/@langchain/langgraph-sdk/node_modules/p-queue": {
|
|
117
|
-
"version": "9.3.
|
|
118
|
-
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.
|
|
119
|
-
"integrity": "sha512-
|
|
117
|
+
"version": "9.3.1",
|
|
118
|
+
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.1.tgz",
|
|
119
|
+
"integrity": "sha512-POWdiIPmsUPGwb4FeQ4OBg46aqmcInSWe45CKDsGHiOBiVQM9chqfQTuqhuTzcg2Vz9faTI65at0KkVyVEiCHw==",
|
|
120
120
|
"license": "MIT",
|
|
121
121
|
"dependencies": {
|
|
122
122
|
"eventemitter3": "^5.0.4",
|
|
@@ -178,9 +178,9 @@
|
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
180
|
"node_modules/@paybond/kit": {
|
|
181
|
-
"version": "0.11.
|
|
182
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
183
|
-
"integrity": "sha512-
|
|
181
|
+
"version": "0.11.7",
|
|
182
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
183
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
184
184
|
"license": "Apache-2.0",
|
|
185
185
|
"dependencies": {
|
|
186
186
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
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.
|
|
9
|
+
"@paybond/kit": "^0.11.7",
|
|
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.
|
|
108
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
109
|
-
"integrity": "sha512-
|
|
107
|
+
"version": "0.11.7",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.7.tgz",
|
|
109
|
+
"integrity": "sha512-wAVwT7CklrzUKjK+qVKbrxT88hW9xvDBg2tDUl75b2xt57kf9Bv8K0z+fdA0HTgGpJGdjuQRuYbzeSIAiWUgNA==",
|
|
110
110
|
"license": "Apache-2.0",
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@noble/ed25519": "^2.2.1",
|
|
@@ -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.
|
|
11
|
+
"@paybond/kit": "^0.11.7",
|
|
12
12
|
"ai": "^5.0.0",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|