/** * Init Command Handler * * Implements `aiwg init` — the first-run wizard that creates * `.aiwg/aiwg.config` for the current project. * * Prompts: * 1. Which AI provider toolchains does this project target? * 2. Would you like to add any scripts? (optional) * * Runs automatically on first `aiwg use` when no config exists. * Can also be run explicitly to reconfigure. * * @implements #621 */ import type { CommandHandler } from './types.js'; export declare const initHandler: CommandHandler; //# sourceMappingURL=init.d.ts.map