/** * `generacy init` command — scaffolds a Generacy project in the current repository. * * Wires together the full init flow: * 1. Detect git root * 2. Resolve options (flags + prompts + auto-detection) * 3. GitHub validation (advisory) * 4. Fetch cluster base repo files from GitHub * 5. Collect existing files for merge support * 6. Generate CLI-owned files (config, env, gitignore, extensions) * 7. Merge template + CLI files * 8. Check & resolve file conflicts * 9. Write files (or dry-run preview) * 10. Post-generation config validation * 11. Print summary & next steps */ import { Command } from 'commander'; /** * Create the `init` subcommand with all CLI flags. */ export declare function initCommand(): Command; //# sourceMappingURL=index.d.ts.map