@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.mjs +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starlens-app/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Starlens CLI — manage your GitHub starred repositories from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.mjs CHANGED
@@ -717,7 +717,8 @@ function detectProjectRoot() {
717
717
 
718
718
  // Skill 源目录(npm 包内的 skills/ 目录)
719
719
  function getSkillSourceDir() {
720
- return new URL("../../skills/starlens", import.meta.url).pathname;
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 目标路径