@deepseek-ai/dsh-tool-skill 0.1.2-rc.1 → 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 +2 -3
- package/README.zh.md +2 -3
- 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
|
|
|
@@ -99,8 +99,7 @@ Read these pages when the package-level contract is not enough. They move from t
|
|
|
99
99
|
- [Skill subsystem reference](../../../docs/subsystems/skills.md) — the registry and provider vocabulary behind the catalog.
|
|
100
100
|
- [skill package](../skill/README.md) — the registry and the shared `renderSkillContent` rendering.
|
|
101
101
|
- [Generated tool catalog](../../../docs/tool-catalog.md#deepseek-aidsh-tool-skill) — the exact `skill` schema the model receives.
|
|
102
|
-
- [
|
|
103
|
-
- [User-explicit skill invocation Agent Note](../../../.agents/notes/implemented/feature/2026-08-08-user-explicit-skill-invocation.md) — the `/name` gesture design.
|
|
102
|
+
- [User-explicit skill invocation Agent Note](../../../.agents/notes/archived/feature/2026-08-08-user-explicit-skill-invocation.md) — the `/name` gesture design.
|
|
104
103
|
|
|
105
104
|
-----
|
|
106
105
|
|
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
|
|
|
@@ -99,8 +99,7 @@ agent(智能体)可以在会话期间发现并加载 skill(技能):在
|
|
|
99
99
|
- [skill 子系统参考](../../../docs/subsystems/skills.zh.md)——目录背后的注册表与提供方词汇。
|
|
100
100
|
- [skill 包](../skill/README.zh.md)——注册表与共享的 `renderSkillContent` 渲染。
|
|
101
101
|
- [生成工具目录](../../../docs/tool-catalog.zh.md#deepseek-aidsh-tool-skill)——模型接收的精确 `skill` schema。
|
|
102
|
-
- [skill
|
|
103
|
-
- [用户显式 skill 调用 Agent Note](../../../.agents/notes/implemented/feature/2026-08-08-user-explicit-skill-invocation.zh.md)——`/name` 手势设计。
|
|
102
|
+
- [用户显式 skill 调用 Agent Note](../../../.agents/notes/archived/feature/2026-08-08-user-explicit-skill-invocation.md)——`/name` 手势设计。
|
|
104
103
|
|
|
105
104
|
-----
|
|
106
105
|
|
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-
|
|
41
|
-
"@deepseek-ai/dsh-
|
|
42
|
-
"@deepseek-ai/dsh-scope": "^0.1.
|
|
43
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
44
|
-
"@deepseek-ai/dsh-skill": "^0.1.
|
|
45
|
-
"@deepseek-ai/dsh-skill-filesystem": "^0.1.
|
|
46
|
-
"@deepseek-ai/dsh-tools": "^0.1.
|
|
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
|
}
|