mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-08-28 23:58:39 +00:00
Merge pull request #464 from loulanyue/fix/detect-claude-plugin
fix(cli): detect .claude-plugin directory for Claude Code in detectAIType
This commit is contained in:
commit
e4f4547369
@ -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'))) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user