feat: add Nuxt.js and Nuxt UI stack support

This commit is contained in:
Viet Tran
2026-01-07 15:01:10 +07:00
parent d247b18188
commit d36e4b7c2b
11 changed files with 379 additions and 30 deletions

View File

@@ -30,9 +30,13 @@ export function detectAIType(cwd: string = process.cwd()): DetectionResult {
}
if (existsSync(join(cwd, '.codex'))) {
detected.push('codex');
}
if (existsSync(join(cwd, '.roo'))) {
detected.push('roocode');
}
if (existsSync(join(cwd, '.qoder'))) {
detected.push('qoder');
}
// Suggest based on what's detected
let suggested: AIType | null = null;
@@ -63,6 +67,8 @@ export function getAITypeDescription(aiType: AIType): string {
return 'Codex (.codex/skills/ + .shared/)';
case 'roocode':
return 'RooCode (.roo/commands/ + .shared/)';
case 'qoder':
return 'Qoder (.qoder/rules/ + .shared/)';
case 'all':
return 'All AI assistants';
}