UNPKG

@morodomi/ait3

Version:

AIT³ Development Platform - AI + Ticket + Test + Tool driven development methodology

15 lines (14 loc) 387 B
import type { CLIResult } from '../../common/types.js'; interface InitArgs { subcommand?: string; force?: boolean; detailed?: boolean; json?: boolean; output?: string; } /** * Main init command - simplified to generate 3 files * No subcommands, always overwrites, Git-friendly */ export declare function initCommand(args: InitArgs): Promise<CLIResult>; export {};