@haven_ai/connect 0.1.17-alpha.0 → 0.1.18-alpha.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.
- package/dist/cli.cjs +9 -4
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +9 -4
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +9 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
package/dist/cli.cjs
CHANGED
|
@@ -236,9 +236,9 @@ var MCP_RUNTIME_MANIFEST = {
|
|
|
236
236
|
mcpPackage: "@haven_ai/mcp",
|
|
237
237
|
mcpVersion: mcp.MCP_VERSION,
|
|
238
238
|
sdkPackage: "@haven_ai/sdk",
|
|
239
|
-
sdkVersion: "0.1.
|
|
239
|
+
sdkVersion: "0.1.18-alpha.0",
|
|
240
240
|
signerPackage: "@haven_ai/signer",
|
|
241
|
-
signerVersion: "0.1.
|
|
241
|
+
signerVersion: "0.1.18-alpha.0",
|
|
242
242
|
minimumNodeVersion: "20.0.0",
|
|
243
243
|
supportedClients: ["codex-cli", "codex-desktop", "claude-code"],
|
|
244
244
|
requiredTools: mcp.registeredToolNames()
|
|
@@ -1406,7 +1406,12 @@ async function installRuntime(input, deps = {}) {
|
|
|
1406
1406
|
localMcpAcknowledged: false,
|
|
1407
1407
|
messages: [
|
|
1408
1408
|
...consentMessages,
|
|
1409
|
-
"
|
|
1409
|
+
"Custom runtime: Haven did not auto-configure it. Your credentials are on disk (chmod 600) \u2014 read them at runtime; never paste a key into the agent prompt, memory, or logs.",
|
|
1410
|
+
` identity (hosted MCP Bearer): ${input.identityPath}`,
|
|
1411
|
+
` signer (local signing key): ${input.signerPath}`,
|
|
1412
|
+
"After wallet approval, wire the runtime to Haven by reference:",
|
|
1413
|
+
` Hosted MCP + local signer: point your MCP client at ${input.hostedMcpUrl} with the api_key from identity.json, then run npx -y ${signerPackageSpec()} --credentials ${input.signerPath}`,
|
|
1414
|
+
` Fully local MCP (no hosted dependency): npx -y ${mcpPackageSpec()} --identity ${input.identityPath} --signer ${input.signerPath}`
|
|
1410
1415
|
]
|
|
1411
1416
|
};
|
|
1412
1417
|
}
|
|
@@ -1710,7 +1715,7 @@ function localRuntimePrepareErrorCode(err) {
|
|
|
1710
1715
|
}
|
|
1711
1716
|
|
|
1712
1717
|
// src/runtime.ts
|
|
1713
|
-
var CONNECTOR_VERSION = "0.1.
|
|
1718
|
+
var CONNECTOR_VERSION = "0.1.18-alpha.0";
|
|
1714
1719
|
async function runConnect(options, deps = {}) {
|
|
1715
1720
|
const connectorVersion = options.connectorVersion ?? CONNECTOR_VERSION;
|
|
1716
1721
|
const api = deps.api ?? createConnectApiClient(options.apiBaseUrl);
|