@deepseek-ai/dsh-skill 0.1.3-alpha.2 → 0.1.5-alpha.2

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/skill/README.md
5
- README.md: 004c5a1bf01d16fd03e54463fd06e6cde168811e
6
- README.zh.md: 3d964c4bb7c0f5610152413cfd1de576852aab13
5
+ README.md: 5bddf8483547fc08aebeadf11c835c18482b9abe
6
+ README.zh.md: 0bf87d9a8468b49d1cd1ed4da6e3d3ade23825f3
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- Agents and users can access reusable, task-specific instructions through one lookup no matter where the instructions come from: any provider can contribute skills from local directories, embedded plugin data, or a remote service, and every consumer receives one merged catalog with the winning skill for each name and can load any skill's full instructions on demand. Mount this plugin when skills should be loadable from more than one source or from a non-filesystem source, and skip it when a composition loads no skills. It ships no skill content of its own — pair it with at least one provider (the shipped `dsh-skill-filesystem`), and with `dsh-tool-skill` when agents should load skills.
12
+ Use this package to give agents and users one catalog of reusable, task-specific instructions collected from local directories, embedded plugin data, or remote services. It resolves duplicate names predictably, validates entries, tolerates unavailable sources without discarding usable results, and loads the selected skill's full instructions on demand. Mount it when a composition needs skills from multiple or non-filesystem sources; pair it with `dsh-skill-filesystem` for local discovery and `dsh-tool-skill` for model access, because it includes no skill content itself.
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(技能),每个消费方都会收到一份合并目录——每个名称对应胜出的 skill——并能按需加载任一 skill 的完整指令。当组合需要从多个来源或非文件系统来源加载 skill 时,请挂载本插件;当组合完全不加载 skill 时,请跳过。它自身不携带任何 skill 内容——请至少搭配一个提供方(随附的 `dsh-skill-filesystem`);需要 agent 加载 skill 时,再搭配 `dsh-tool-skill`。
12
+ 使用本包可让 agent(智能体)和用户通过一个目录访问从本地目录、嵌入式插件数据或远程服务收集的可复用任务专项指令。它会以可预测的方式裁决重名项、验证条目、在来源不可用时保留可用结果,并按需加载所选 skill(技能)的完整指令。当组合需要多个来源或非文件系统来源的 skill 时,请挂载本包;本包自身不含 skill 内容,因此本地发现需搭配 `dsh-skill-filesystem`,模型访问需搭配 `dsh-tool-skill`。
13
13
 
14
14
  ## 目录
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-skill",
3
3
  "description": "Agent skill provider registry for the DeepSeek Harness",
4
- "version": "0.1.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -27,17 +27,17 @@
27
27
  ],
28
28
  "license": "MIT",
29
29
  "peerDependencies": {
30
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
31
- "@deepseek-ai/dsh-scope": "^0.1.3-alpha.2",
32
- "@deepseek-ai/cordis": "^4.0.2"
30
+ "@deepseek-ai/cordis": "^4.0.2",
31
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
32
+ "@deepseek-ai/dsh-scope": "^0.1.5-alpha.2"
33
33
  },
34
34
  "dependencies": {
35
- "@deepseek-ai/dsh-util-values": "^0.1.3-alpha.2",
36
- "@deepseek-ai/schemastery": "^3.18.2"
35
+ "@deepseek-ai/schemastery": "^3.18.2",
36
+ "@deepseek-ai/dsh-util-values": "^0.1.5-alpha.2"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@deepseek-ai/cordis": "^4.0.2",
40
- "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
41
- "@deepseek-ai/dsh-scope": "^0.1.3-alpha.2"
40
+ "@deepseek-ai/dsh-llm": "^0.1.5-alpha.2",
41
+ "@deepseek-ai/dsh-scope": "^0.1.5-alpha.2"
42
42
  }
43
43
  }