📦 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
+2 -2
View File
@@ -1,8 +1,8 @@
# Source
- Repo: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
- Ref: e353a508767c6d39f0e7698b084dbfc8699fffd3
- Ref: e4f45473691e4b389519ee4bc359a3d6df666c26
- Remove-Paths:
- Snapshot: 2026-08-25
- Snapshot: 2026-08-26
- Sync-Mode: render_skill
- Notes: vendored into playbook branch thirdparty/skill
+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'))) {