@agentproto/cli 0.1.0 → 0.1.1
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.mjs +4 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/registry/builtins.mjs +1 -1
- package/dist/registry/manifest.mjs +1 -1
- package/dist/registry/plugins.mjs +1 -1
- package/dist/registry/runtime.mjs +1 -1
- package/dist/util/credentials.mjs +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -24,7 +24,7 @@ import { StreamableHTTPClientTransport } from '@modelcontextprotocol/sdk/client/
|
|
|
24
24
|
import { SSEClientTransport } from '@modelcontextprotocol/sdk/client/sse.js';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
* @agentproto/cli v0.1.
|
|
27
|
+
* @agentproto/cli v0.1.1
|
|
28
28
|
* The `agentproto` binary — install / run / serve AIP-45 agent CLIs.
|
|
29
29
|
*/
|
|
30
30
|
|
|
@@ -6514,7 +6514,7 @@ ${color.dim}\u2500\u2500 shutting down (${signal}) \u2500\u2500${color.reset}
|
|
|
6514
6514
|
async function runOneTunnel(opts, gateway, spawnPty, signal, reconnectState) {
|
|
6515
6515
|
if (!opts.connect) throw new Error("runOneTunnel: --connect not set");
|
|
6516
6516
|
const headers = {
|
|
6517
|
-
"user-agent": "
|
|
6517
|
+
"user-agent": `agentproto/${"0.1.1"}`
|
|
6518
6518
|
};
|
|
6519
6519
|
if (opts.token) headers.authorization = `Bearer ${opts.token}`;
|
|
6520
6520
|
const ws = new WebSocket(opts.connect, { headers });
|