@tec-explorer/skillpot 0.5.0 → 0.5.1
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/CHANGELOG.md +5 -0
- package/dist/cli.mjs +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
所有显著变更记录于此。格式遵循 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),
|
|
4
4
|
版本号遵循 [SemVer](https://semver.org/lang/zh-CN/)。
|
|
5
5
|
|
|
6
|
+
## [0.5.1] - 2026-09-04
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- Agent 注册表扩至七家:新增 **DeepSeek CLI**(`~/.dsh/skills`)与 **Cursor**(`~/.cursor/skills-cursor`,官方 Agent Skills 目录)适配器;两者均为目录实测发现,symlink 发现任待实机确认
|
|
10
|
+
|
|
6
11
|
## [0.5.0] - 2026-09-04
|
|
7
12
|
|
|
8
13
|
### Added
|
package/dist/cli.mjs
CHANGED
|
@@ -38673,6 +38673,22 @@ var AGENTS = [
|
|
|
38673
38673
|
fingerprints: (home) => [path2.join(home, ".gemini")],
|
|
38674
38674
|
skillsDir: (home) => path2.join(home, ".gemini", "skills"),
|
|
38675
38675
|
verified: "\u5B98\u65B9\u652F\u6301 Agent Skills\uFF0C\u5F85\u5B9E\u673A\u786E\u8BA4"
|
|
38676
|
+
},
|
|
38677
|
+
{
|
|
38678
|
+
id: "dsh",
|
|
38679
|
+
name: "DeepSeek CLI",
|
|
38680
|
+
binaries: ["dsh"],
|
|
38681
|
+
fingerprints: (home) => [path2.join(home, ".dsh")],
|
|
38682
|
+
skillsDir: (home) => path2.join(home, ".dsh", "skills"),
|
|
38683
|
+
verified: "\u76EE\u5F55\u5B9E\u6D4B\uFF1A~/.dsh/skills \u4E3A SKILL.md \u76EE\u5F55\u7EA6\u5B9A\uFF1Bsymlink \u53D1\u73B0\u4EFB\u5F85 dsh \u5B9E\u673A\u786E\u8BA4"
|
|
38684
|
+
},
|
|
38685
|
+
{
|
|
38686
|
+
id: "cursor",
|
|
38687
|
+
name: "Cursor",
|
|
38688
|
+
binaries: ["cursor"],
|
|
38689
|
+
fingerprints: (home) => [path2.join(home, ".cursor")],
|
|
38690
|
+
skillsDir: (home) => path2.join(home, ".cursor", "skills-cursor"),
|
|
38691
|
+
verified: "\u76EE\u5F55\u5B9E\u6D4B\uFF1A~/.cursor/skills-cursor \u4E3A Cursor Agent Skills\uFF08\u5B98\u65B9 create-skill \u6280\u80FD\u81EA\u8FF0\uFF09\uFF1B\u76EE\u5F55\u540D\u975E\u901A\u7528\u7EA6\u5B9A\uFF0Csymlink \u53D1\u73B0\u4EFB\u5F85\u5B9E\u673A\u786E\u8BA4"
|
|
38676
38692
|
}
|
|
38677
38693
|
];
|
|
38678
38694
|
function getAgent(id) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tec-explorer/skillpot",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Cross-agent skill manager: install once, expose per coding agent (Claude Code / ZCode / Codex / OpenCode / Gemini CLI).",
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "Cross-agent skill manager: install once, expose per coding agent (Claude Code / ZCode / Codex / OpenCode / Gemini CLI / DeepSeek CLI / Cursor).",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/tec-explorer/skillpot.git"
|