UNPKG

@morodomi/ait3

Version:

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

13 lines (12 loc) 407 B
/** * Hierarchical CLAUDE.md templates for different project types * Extracted from init command for better maintainability */ interface TemplateFile { path: string; content: string; } export declare const TYPESCRIPT_HIERARCHICAL_TEMPLATES: TemplateFile[]; export declare const LARAVEL_HIERARCHICAL_TEMPLATES: TemplateFile[]; export declare const FLASK_TEMPLATE_FILES: TemplateFile[]; export {};