@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 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: 458c1d1eb8f94496cb93b4c5512502d5aa77849a
6
- README.zh.md: aa4ac4ad773f013b4aa7faea3abdd66230eca2e4
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: before the first request they receive a durable catalog of every available skill's name and capped description, and they can load any listed skill's full instructions by name through the `skill` loader tool. A user can also invoke a skill directly with a `/name` token, which injects that skill's instructions into the step. The catalog stays current: membership, description, or visibility changes append a complete replacement catalog, and a deleted skill is explicitly retired. Mount it alongside the skill registry (and at least one provider) when agents should load skills; its only configuration caps catalog description length.
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
- - [Skill catalog hot-refresh Agent Note](../../../.agents/notes/implemented/feature/2026-07-27-skill-catalog-hot-refresh.md) — the durable initial catalog and replacement lifecycle.
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(技能):在首次请求前,它们会收到一份持久目录,列出每个可用 skill 的名称与有长度上限的描述,并可通过 `skill` 加载工具按名称加载任一列出 skill 的完整指令。用户也可以用 `/name` token 直接调用某个 skill,把该 skill 的指令注入当轮次。目录保持最新:成员关系、描述或可见性变化会追加完整的替换目录,被删除的 skill 会被显式停用。当 agent 需要加载 skill 时,请把它与 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 目录热刷新 Agent Note](../../../.agents/notes/implemented/feature/2026-07-27-skill-catalog-hot-refresh.zh.md)——持久初始目录与替换生命周期。
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.2-rc.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-agent": "^0.1.2-rc.1",
31
- "@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
32
- "@deepseek-ai/dsh-skill": "^0.1.2-rc.1",
33
- "@deepseek-ai/dsh-tools": "^0.1.2-rc.1",
34
- "@deepseek-ai/cordis": "^4.0.2"
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-llm": "^0.1.2-rc.1",
41
- "@deepseek-ai/dsh-agent": "^0.1.2-rc.1",
42
- "@deepseek-ai/dsh-scope": "^0.1.2-rc.1",
43
- "@deepseek-ai/dsh-session": "^0.1.2-rc.1",
44
- "@deepseek-ai/dsh-skill": "^0.1.2-rc.1",
45
- "@deepseek-ai/dsh-skill-filesystem": "^0.1.2-rc.1",
46
- "@deepseek-ai/dsh-tools": "^0.1.2-rc.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
  }