@starlens-app/cli 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.mjs +2 -1
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -717,7 +717,8 @@ function detectProjectRoot() {
|
|
|
717
717
|
|
|
718
718
|
// Skill 源目录(npm 包内的 skills/ 目录)
|
|
719
719
|
function getSkillSourceDir() {
|
|
720
|
-
|
|
720
|
+
// src/index.mjs → ../skills/starlens = cli/skills/starlens
|
|
721
|
+
return new URL("../skills/starlens", import.meta.url).pathname;
|
|
721
722
|
}
|
|
722
723
|
|
|
723
724
|
// 各客户端全局 skill 目标路径
|