/** * CLI-002 + CLI-006: create command * * agentlaunch create [--name "My Agent"] [--ticker MYAG] [--template custom] * [--description "..."] [--chain 56] [--deploy] [--tokenize] [--json] * * Flagship one-command flow: * 1. Scaffold agent project (always) — via agentlaunch-templates * 2. Deploy to Agentverse (if --deploy) — via agentlaunch-sdk deployAgent * 3. Tokenize on AgentLaunch (if --tokenize) — via agentlaunch-sdk client * 4. Print handoff link * * When name/ticker are omitted, uses readline for interactive prompts. * * Platform constants (source of truth: deployed smart contracts): * - Deploy fee: 120 FET (read dynamically, can change via multi-sig) * - Graduation target: 30,000 FET -> auto DEX listing * - Trading fee: 2% -> 100% to protocol treasury (NO creator fee) */ import { Command } from "commander"; export declare function registerCreateCommand(program: Command): void; export interface RunCreateOptions { name?: string; description?: string; skipDeploy?: boolean; noEditor?: boolean; json?: boolean; } /** * Simplified create flow for the default CLI command. * Called by index.ts when running `npx agentlaunch [name]`. */ export declare function runCreate(options: RunCreateOptions): Promise; //# sourceMappingURL=create.d.ts.map