/** * connect command * * agentlaunch connect --name "My Connect Agent" --endpoint https://api.example.com * [--description "..."] [--auth-header X-Api-Key] * [--auth-secret ] [--timeout 30] [--retries 3] * [--json] * * Deploys an Agentverse connect agent that forwards messages to an external * HTTPS endpoint. Useful for wrapping existing APIs as uAgents without * writing Python code. * * Flow: * 1. Validate --endpoint is a valid HTTPS URL * 2. Validate option ranges (timeout, retries) * 3. Call sdk.connect.deploy() to create and start the connect agent * 4. Print agent address and Agentverse link * * Reads the API key from ~/.agentlaunch/config.json (set with `config set-key`). */ import { Command } from "commander"; export declare function registerConnectCommand(program: Command): void; //# sourceMappingURL=connect.d.ts.map