📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-08-27 05:00:44 +08:00
parent 2f72817399
commit b0b9a57e14
8 changed files with 443 additions and 1027 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ interface DetectionResult {
export function detectAIType(cwd: string = process.cwd()): DetectionResult {
const detected: ConcreteAIType[] = [];
if (existsSync(join(cwd, '.claude'))) {
if (existsSync(join(cwd, '.claude')) || existsSync(join(cwd, '.claude-plugin'))) {
detected.push('claude');
}
if (existsSync(join(cwd, '.cursor'))) {