reskill 0.11.0 → 0.12.0

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 (39) hide show
  1. package/dist/cli/commands/index.d.ts +3 -3
  2. package/dist/cli/commands/index.d.ts.map +1 -1
  3. package/dist/cli/commands/info.d.ts +1 -1
  4. package/dist/cli/commands/init.d.ts +1 -1
  5. package/dist/cli/commands/install.d.ts +11 -11
  6. package/dist/cli/commands/install.d.ts.map +1 -1
  7. package/dist/cli/commands/list.d.ts +1 -1
  8. package/dist/cli/commands/list.d.ts.map +1 -1
  9. package/dist/cli/commands/outdated.d.ts +1 -1
  10. package/dist/cli/commands/outdated.d.ts.map +1 -1
  11. package/dist/cli/commands/uninstall.d.ts +1 -1
  12. package/dist/cli/commands/update.d.ts +1 -1
  13. package/dist/cli/index.js +668 -634
  14. package/dist/core/agent-registry.d.ts +16 -16
  15. package/dist/core/agent-registry.d.ts.map +1 -1
  16. package/dist/core/cache-manager.d.ts +17 -17
  17. package/dist/core/cache-manager.d.ts.map +1 -1
  18. package/dist/core/config-loader.d.ts +18 -18
  19. package/dist/core/config-loader.d.ts.map +1 -1
  20. package/dist/core/git-resolver.d.ts +23 -23
  21. package/dist/core/git-resolver.d.ts.map +1 -1
  22. package/dist/core/index.d.ts +8 -8
  23. package/dist/core/index.d.ts.map +1 -1
  24. package/dist/core/installer.d.ts +30 -30
  25. package/dist/core/installer.d.ts.map +1 -1
  26. package/dist/core/lock-manager.d.ts +17 -17
  27. package/dist/core/lock-manager.d.ts.map +1 -1
  28. package/dist/core/skill-manager.d.ts +57 -39
  29. package/dist/core/skill-manager.d.ts.map +1 -1
  30. package/dist/core/skill-parser.d.ts +43 -43
  31. package/dist/core/skill-parser.d.ts.map +1 -1
  32. package/dist/index.d.ts +3 -3
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +615 -581
  35. package/dist/types/index.d.ts +84 -84
  36. package/dist/types/index.d.ts.map +1 -1
  37. package/dist/utils/fs.d.ts +7 -7
  38. package/dist/utils/fs.d.ts.map +1 -1
  39. package/package.json +18 -12
@@ -1,9 +1,9 @@
1
+ export { infoCommand } from './info.js';
1
2
  export { initCommand } from './init.js';
2
3
  export { installCommand } from './install.js';
4
+ export { linkCommand, unlinkCommand } from './link.js';
3
5
  export { listCommand } from './list.js';
4
- export { infoCommand } from './info.js';
5
- export { updateCommand } from './update.js';
6
6
  export { outdatedCommand } from './outdated.js';
7
7
  export { uninstallCommand } from './uninstall.js';
8
- export { linkCommand, unlinkCommand } from './link.js';
8
+ export { updateCommand } from './update.js';
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * info 命令 - 查看 skill 详情
3
+ * info command - Show skill details
4
4
  */
5
5
  export declare const infoCommand: Command;
6
6
  export default infoCommand;
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * init 命令 - 初始化 skills.json
3
+ * init command - Initialize skills.json configuration
4
4
  */
5
5
  export declare const initCommand: Command;
6
6
  export default initCommand;
@@ -1,18 +1,18 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * install 命令 - 安装 skill
3
+ * install command - Install a skill
4
4
  *
5
- * 支持多种安装模式:
6
- * - 项目安装 (默认): 安装到项目目录
7
- * - 全局安装 (-g): 安装到用户目录
8
- * - Agent 安装 (-a): 安装到指定 agents
5
+ * Supports multiple installation modes:
6
+ * - Project install (default): Install to project directory
7
+ * - Global install (-g): Install to user home directory
8
+ * - Multi-Agent install (-a): Install to specified agents
9
9
  *
10
- * 交互式流程:
11
- * 1. 检测已安装的 agents
12
- * 2. 选择目标 agents(多选)
13
- * 3. 选择安装范围 (项目/全局)
14
- * 4. 选择安装方式 (symlink/copy)
15
- * 5. 确认并执行
10
+ * Interactive flow:
11
+ * 1. Detect installed agents
12
+ * 2. Select target agents (multi-select)
13
+ * 3. Select installation scope (project/global)
14
+ * 4. Select installation method (symlink/copy)
15
+ * 5. Confirm and execute
16
16
  */
17
17
  export declare const installCommand: Command;
18
18
  export default installCommand;
@@ -1 +1 @@
1
- {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/install.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0BpC;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,cAAc,SAiavB,CAAC;AAEL,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/install.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAoBpC;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,cAAc,SA4XvB,CAAC;AAEL,eAAe,cAAc,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * list 命令 - 列出已安装的 skills
3
+ * list command - List installed skills
4
4
  */
5
5
  export declare const listCommand: Command;
6
6
  export default listCommand;
@@ -1 +1 @@
1
- {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC;;GAEG;AACH,eAAO,MAAM,WAAW,SAmCpB,CAAC;AAEL,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAIpC;;GAEG;AACH,eAAO,MAAM,WAAW,SAmCpB,CAAC;AAEL,eAAe,WAAW,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * outdated 命令 - 检查过期的 skills
3
+ * outdated command - Check for outdated skills
4
4
  */
5
5
  export declare const outdatedCommand: Command;
6
6
  export default outdatedCommand;
@@ -1 +1 @@
1
- {"version":3,"file":"outdated.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/outdated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC;;GAEG;AACH,eAAO,MAAM,eAAe,SA6DxB,CAAC;AAEL,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"outdated.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/outdated.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC;;GAEG;AACH,eAAO,MAAM,eAAe,SA2DxB,CAAC;AAEL,eAAe,eAAe,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * uninstall 命令 - 卸载 skill
3
+ * uninstall command - Uninstall a skill
4
4
  */
5
5
  export declare const uninstallCommand: Command;
6
6
  export default uninstallCommand;
@@ -1,6 +1,6 @@
1
1
  import { Command } from 'commander';
2
2
  /**
3
- * update 命令 - 更新 skill
3
+ * update command - Update installed skills
4
4
  */
5
5
  export declare const updateCommand: Command;
6
6
  export default updateCommand;