fix(skills): distinguish external skill install paths and open real location (#463)

This commit is contained in:
Felix
2026-03-13 14:40:46 +08:00
committed by GitHub
Unverified
parent 995a7f070d
commit 4cfb552b1d
11 changed files with 238 additions and 30 deletions

View File

@@ -20,6 +20,9 @@ export interface Skill {
isCore?: boolean;
isBundled?: boolean;
dependencies?: string[];
source?: string;
baseDir?: string;
filePath?: string;
}
/**