UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

18 lines 550 B
/** * 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