/** * init command - Create new project with Agentic OS * * Flow: * 1. GitHub OAuth authentication * 2. Create GitHub repository * 3. Setup labels (53 labels) * 4. Create GitHub Projects V2 * 5. Deploy workflows (12+ workflows) * 6. Clone locally * 7. Initialize npm project * 8. Create welcome Issue */ export interface InitOptions { private?: boolean; skipInstall?: boolean; } export declare function init(projectName: string, options?: InitOptions): Promise; //# sourceMappingURL=init.d.ts.map