@deepseek-ai/dsh-client-ui-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/client/ui-skill/README.md
5
- README.md: 0d9c899aed03fbc41b777f73e9fa17b79a631901
6
- README.zh.md: 052128a5709cd1c48053e8dbb4fbdfb22734e4f8
5
+ README.md: 7a524ce1821dc97eaa1b4a67dbe0f956e0da5c87
6
+ README.zh.md: 68e6697a51214a8c21002a59f1b60fc685b935e1
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- `dsh-client-ui-skill` lets users invoke skills by typing `/name` in the composer: the suggestion menu offers user-invocable skills from the `skills/list` Remote, and a pick lands the literal `/name ` text that the host then loads as the skill's instructions. Loading is deterministic: the host's pre-step boundary (`dsh-tool-skill`) recognizes the whitespace-bounded `/name` token in the sent message and injects the rendered `<skill_content>` for every entry point, so a menu pick, a hand-typed token, and a TUI/ACP prompt all load the skill the same way. Settled skill calls render in the conversation as an expandable `Instructions` card, derived only from the frozen call/result slice.
12
+ `dsh-client-ui-skill` lets users invoke a skill by choosing it from the `/` suggestions or typing `/name` directly. The same literal command loads the skill consistently from the Web composer, TUI, and ACP, while a name shared with a host command continues to resolve as that command. Skill calls appear in the conversation as expandable `Instructions` cards whose settled contents remain stable when the installed skill catalog changes.
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
- `dsh-client-ui-skill` 让用户通过在编辑器中键入 `/name` 来调用 skill:建议菜单从 `skills/list` Remote 提供用户可调用的 skill 候选,选择一项会落下字面文本 `/name `,宿主随后将其加载为 skill 的指令。加载是确定性的:宿主的 pre-step 边界(`dsh-tool-skill`)识别发出消息中以空白为界的 `/name` token,并为每个入口注入渲染后的 `<skill_content>`,因此菜单 pick、手动键入的 token 与 TUI/ACP 提示词都以同一种方式加载 skill。已结算的 skill 调用在对话中渲染为可展开的 `Instructions` 卡片,只从冻结的调用/结果切片派生。
12
+ `dsh-client-ui-skill` 让用户通过 `/` 建议选择或直接键入 `/name` 来调用 skill。同一条字面命令可以从 Web 编辑器、TUI ACP 一致地加载 skill;如果名称与宿主命令相同,它仍会解析为该命令。skill 调用在对话中显示为可展开的 `Instructions` 卡片;即使已安装的 skill 目录发生变化,卡片落定后的内容仍保持稳定。
13
13
 
14
14
  ## 目录
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-client-ui-skill",
3
3
  "description": "Web skill references and the dedicated skill tool row",
4
- "version": "0.1.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -47,18 +47,18 @@
47
47
  "@types/react": "~18.3.1",
48
48
  "react": "^18.2.0",
49
49
  "react-dom": "^18.2.0",
50
- "@deepseek-ai/dsh-api-session-controller": "^0.1.3-alpha.2",
51
- "@deepseek-ai/dsh-client-connection": "^0.1.3-alpha.2",
52
- "@deepseek-ai/dsh-api-remotes": "^0.1.3-alpha.2",
53
- "@deepseek-ai/dsh-client-locale": "^0.1.3-alpha.2",
54
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.3-alpha.2",
55
- "@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.3-alpha.2",
56
- "@deepseek-ai/dsh-client-test-runtime": "^0.1.3-alpha.2",
57
- "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
58
- "@deepseek-ai/cordis": "^4.0.2",
59
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.3-alpha.2",
60
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.3-alpha.2",
61
- "@deepseek-ai/dsh-client-ui-tool": "^0.1.3-alpha.2"
50
+ "@deepseek-ai/dsh-api-remotes": "^0.1.5-alpha.2",
51
+ "@deepseek-ai/dsh-api-session-controller": "^0.1.5-alpha.2",
52
+ "@deepseek-ai/dsh-client-connection": "^0.1.5-alpha.2",
53
+ "@deepseek-ai/dsh-client-locale": "^0.1.5-alpha.2",
54
+ "@deepseek-ai/dsh-client-test-runtime": "^0.1.5-alpha.2",
55
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-alpha.2",
56
+ "@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.5-alpha.2",
57
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-alpha.2",
58
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-alpha.2",
59
+ "@deepseek-ai/dsh-client-ui-tool": "^0.1.5-alpha.2",
60
+ "@deepseek-ai/dsh-session": "^0.1.5-alpha.2",
61
+ "@deepseek-ai/cordis": "^4.0.2"
62
62
  },
63
63
  "files": [
64
64
  "lib/index.js",