@deepseek-ai/dsh-tool-skill 0.1.3-alpha.2 → 0.1.5-alpha.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/README.i18n.yaml +2 -2
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +15 -14
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/skill/tool-skill/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 090dd3474087a9fb0c944bb88081c759cbfed20c
|
|
6
|
+
README.zh.md: 7dcf1c216e12391e1cc6810579fbc76fcaba7890
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
|
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
|
12
|
-
Agents can discover and load skills during a session
|
|
12
|
+
Agents can discover and load skills during a session. Before the first request, they receive a durable catalog of available skill names and capped descriptions, and can use the `skill` tool to load full instructions. Users can invoke a skill with `/name`, which injects the same instructions into that step. Catalog changes append a complete replacement, including an empty catalog that retires old names; configure `catalogDescriptionMaxLength` to limit each description.
|
|
13
13
|
|
|
14
14
|
## Table of Contents
|
|
15
15
|
|
package/README.zh.md
CHANGED
|
@@ -9,7 +9,7 @@ kind: "package-reference"
|
|
|
9
9
|
|
|
10
10
|
## 概述
|
|
11
11
|
|
|
12
|
-
agent(智能体)可以在会话期间发现并加载 skill
|
|
12
|
+
agent(智能体)可以在会话期间发现并加载 skill(技能)。在首次请求前,它们会收到一份持久目录,列出可用 skill 的名称与有长度上限的描述,并可用 `skill` 工具加载完整指令。用户可以用 `/name` 调用某个 skill,把相同的指令注入该步骤。目录变更会追加一份完整替换,其中空目录会停用旧名称;可配置 `catalogDescriptionMaxLength` 来限制每条描述的长度。
|
|
13
13
|
|
|
14
14
|
## 目录
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-tool-skill",
|
|
3
3
|
"description": "Model-facing skill loading tool for the DeepSeek Harness",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5-alpha.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -27,23 +27,24 @@
|
|
|
27
27
|
],
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@deepseek-ai/dsh-
|
|
31
|
-
"@deepseek-ai/dsh-
|
|
32
|
-
"@deepseek-ai/dsh-
|
|
33
|
-
"@deepseek-ai/
|
|
34
|
-
"@deepseek-ai/
|
|
30
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.1",
|
|
31
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.1",
|
|
32
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.1",
|
|
33
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
34
|
+
"@deepseek-ai/dsh-skill": "^0.1.5-alpha.1"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@deepseek-ai/schemastery": "^3.18.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
41
|
-
"@deepseek-ai/dsh-
|
|
42
|
-
"@deepseek-ai/dsh-
|
|
43
|
-
"@deepseek-ai/dsh-
|
|
44
|
-
"@deepseek-ai/dsh-skill
|
|
45
|
-
"@deepseek-ai/dsh-
|
|
46
|
-
"@deepseek-ai/dsh-
|
|
47
|
-
"@deepseek-ai/cordis": "^4.0.2"
|
|
40
|
+
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.5-alpha.1",
|
|
41
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-alpha.1",
|
|
42
|
+
"@deepseek-ai/dsh-scope": "^0.1.5-alpha.1",
|
|
43
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.1",
|
|
44
|
+
"@deepseek-ai/dsh-skill": "^0.1.5-alpha.1",
|
|
45
|
+
"@deepseek-ai/dsh-skill-filesystem": "^0.1.5-alpha.1",
|
|
46
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-alpha.1",
|
|
47
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
48
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-alpha.1"
|
|
48
49
|
}
|
|
49
50
|
}
|