@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/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.0-alpha
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": "agentproto/0.1.0-alpha"
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 });