@michengai/dsh-skills-manager 0.1.7 → 0.1.8

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.md CHANGED
@@ -5,16 +5,13 @@
5
5
  <h1 align="center">DSH Skills Manager</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>An npm-installable DeepSeek Harness Web plugin for managing local skills safely.</strong>
8
+ <strong>A DeepSeek Harness Web plugin for safely managing local skills and viewing shared Agent skills.</strong>
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
12
  <a href="https://github.com/MichengAI/dsh-skills-manager/issues">Report an issue</a>
13
13
  · <a href="https://www.npmjs.com/package/@michengai/dsh-skills-manager">View on npm</a>
14
- </p>
15
-
16
- <p align="center">
17
- <strong>English</strong> · <a href="README.zh-CN.md">简体中文</a>
14
+ · <a href="README.zh-CN.md">简体中文</a>
18
15
  </p>
19
16
 
20
17
  <p align="center">
@@ -24,94 +21,117 @@
24
21
  <img src="https://img.shields.io/badge/Node.js-%E2%89%A520-339933?logo=nodedotjs&logoColor=white" alt="Node.js 20 or later">
25
22
  </p>
26
23
 
27
- <p align="center">
28
- <img src="assets/screenshots/skills-manager.png" alt="Native file picker opened from the Skills settings panel" width="960">
29
- </p>
24
+ > DSH Skills Manager is a community-maintained plugin, not an official DeepSeek AI product.
30
25
 
31
- > The screenshot shows the Skills panel layout. In the current plugin, shared Agent skills are read-only and do not expose action buttons.
26
+ ## Features
32
27
 
33
- > DSH Skills Manager is a community-maintained plugin. It is not an official DeepSeek AI product.
28
+ - Shows local `$DSH_HOME\skills` and shared `$DSH_AGENTS_HOME\skills` in one Settings page.
29
+ - Enables, disables, uploads, replaces, and deletes DSH-local skills.
30
+ - Keeps shared Agent skills strictly read-only and never changes their global metadata.
31
+ - Imports a plugin directory containing `SKILL.md` through the native file picker and confirms every name collision.
32
+ - Rejects traversal names, imports from the DSH skills directory itself, and symbolic links.
34
33
 
35
- ## What it provides
34
+ ![Skills Manager settings page](assets/screenshots/skills-manager.png)
36
35
 
37
- - **Two skill groups** — view local `$DSH_HOME\skills` and shared `$DSH_AGENTS_HOME\skills` in one Settings panel.
38
- - **Local lifecycle controls** — enable, disable, upload, replace, and delete only DSH-local skills.
39
- - **Safe shared-skill view** — public Agent skills are visible but strictly read-only; their global metadata is never changed.
40
- - **Native file selection** — select a plugin `SKILL.md` from the operating system file picker, or explicitly choose its directory when the client cannot expose the selected file path.
41
- - **Protected replacement** — a same-name import always requires confirmation, including a flat skill and a bundled skill with the same normalized name.
42
- - **Safer imports** — importing from the DSH skills directory itself, its parent, or a child path is rejected; symbolic links are also rejected.
43
- - **Predictable dialogs** — Escape closes only the active upload or confirmation dialog, leaving the Settings page open.
36
+ ## Prerequisites
44
37
 
45
- ## Directory permissions
38
+ - A working DeepSeek Harness Web installation with `dsh` available in PowerShell.
39
+ - Examples use the `web` profile; replace it with the target profile.
40
+ - Source installation and development require Node.js 20+. npm installation does not require running `npm install` in an arbitrary directory.
46
41
 
47
- | Directory | View | Enable/Disable | Upload/Replace | Delete |
48
- | --- | --- | --- | --- | --- |
49
- | `$DSH_HOME\skills` | Yes | Yes | Yes | Yes |
50
- | `$DSH_AGENTS_HOME\skills` | Yes | No | No | No |
42
+ ## Installation
51
43
 
52
- The shared Agent directory is intentionally read-only in both the interface and the server API.
44
+ ### Install from npm
53
45
 
54
- ## Safety behavior
46
+ Run this from any PowerShell directory. Install into the DSH profile through `dsh plugin`:
55
47
 
56
- - Enable, disable, and delete only accept one ordinary skill-name path segment; directory traversal names are rejected.
57
- - Replacements are first copied to a temporary sibling path. Existing files are kept until that copy succeeds.
58
- - Mutation endpoints require JSON and the DSH client request marker, so a cross-site browser request cannot trigger a local file operation.
48
+ ```powershell
49
+ [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
50
+ $OutputEncoding = [System.Text.Encoding]::UTF8
51
+ dsh plugin --profile web add @michengai/dsh-skills-manager
52
+ dsh --profile web --dump-config
53
+ ```
59
54
 
60
- ## Quick start
55
+ Restart DSH Web or reload the active Web profile. If a package mirror is behind, append `--registry=https://registry.npmjs.org/`.
61
56
 
62
- You need a working DeepSeek Harness Web installation. Do not run `npm install` in an arbitrary directory: install the plugin into the DSH Web profile instead.
57
+ ### Install from source
63
58
 
64
- 1. Run:
59
+ Use this for debugging or unpublished changes. The cloned directory becomes the plugin source path:
65
60
 
66
61
  ```powershell
67
62
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
68
63
  $OutputEncoding = [System.Text.Encoding]::UTF8
69
- dsh plugin --profile web add @michengai/dsh-skills-manager
64
+ Set-Location D:\Repository\deepseek-harness-plugin
65
+ git clone https://github.com/MichengAI/dsh-skills-manager.git
66
+ Set-Location .\dsh-skills-manager
67
+ npm install
68
+ npm test
69
+ dsh plugin --profile web add .
70
+ dsh --profile web --dump-config
70
71
  ```
71
72
 
72
- 2. Restart DSH or reload the active Web profile.
73
- 3. Open **Settings → Skills**. No source checkout is required.
73
+ Restart DSH Web or reload the active Web profile. Local installation reads and applies `cordis.patch.yml`; do not copy `lib` files manually.
74
74
 
75
- If a package mirror has not synchronized the latest version yet, append `--registry=https://registry.npmjs.org/` to the install command.
75
+ ## Usage
76
76
 
77
- ## Use the Skills panel
77
+ Open **Settings Skills**, then use the panel as follows:
78
78
 
79
- | Goal | What to do | Scope |
79
+ | Goal | Action | Scope |
80
80
  | --- | --- | --- |
81
- | Check a skill | Open **Settings → Skills** to see its name, form, description, and invocation status. | DSH and shared Agent skills |
82
- | Enable or disable | Choose **Enable** or **Disable**. This changes model invocation and the `/` manual command without rewriting other `SKILL.md` metadata. | DSH skills only |
83
- | Upload a plugin | Choose **Upload Plugin**, then select the plugin directory's `SKILL.md`. DSH copies the complete directory, including scripts and resources. | DSH skills only |
84
- | Select a directory instead | If the selected file has no usable path, choose **Choose Plugin Directory** and select the directory that contains `SKILL.md`. | DSH skills only |
85
- | Replace or delete | Confirm a same-name replacement; use **Delete** for a DSH-local skill you no longer need. | DSH skills only |
81
+ | Inspect a skill | Review its name, form, description, and invocation state. | DSH and shared Agent skills |
82
+ | Enable or disable | Select **Enable** or **Disable**; this controls model invocation and the `/` command. | DSH-local skills only |
83
+ | Upload a plugin | Select **Upload Plugin**, then choose the plugin directorys `SKILL.md`. Its scripts and resources are copied too. | DSH-local skills only |
84
+ | Choose the directory | If the selected file has no usable path, choose the directory containing `SKILL.md`. | DSH-local skills only |
85
+ | Replace or delete | Confirm a name collision, or select **Delete** for an unneeded local skill. | DSH-local skills only |
86
86
  | Inspect shared skills | Review shared Agent skills without changing their metadata. | Read-only |
87
87
 
88
- Press **Escape** to close only the frontmost upload or confirmation dialog; the Settings page remains open.
88
+ Escape closes only the frontmost upload or confirmation dialog and leaves Settings open.
89
+
90
+ ## Permissions and safety limits
91
+
92
+ | Directory | View | Enable or disable | Upload or replace | Delete |
93
+ | --- | --- | --- | --- | --- |
94
+ | `$DSH_HOME\skills` | Yes | Yes | Yes | Yes |
95
+ | `$DSH_AGENTS_HOME\skills` | Yes | No | No | No |
96
+
97
+ - Enable, disable, and delete accept only one ordinary skill-name path segment.
98
+ - Replacements copy to a temporary sibling path first and keep the original until that succeeds.
99
+ - Write endpoints require JSON and the DSH client request marker, so cross-site browser requests cannot trigger local file operations.
89
100
 
90
- ## Development and verification
101
+ ## Secondary development
102
+
103
+ This repository has no `src` directory. `lib` is directly maintained runtime source, which is its current layout rather than the recommended layout for new plugins. New plugins should prefer `src` built to `lib`.
104
+
105
+ - [lib\index.js](lib/index.js): host service and local skill file operations.
106
+ - [lib\client.js](lib/client.js): Settings page, upload, and confirmation interactions.
107
+ - `test\core-test.mjs`: file-operation, permission, and import boundary tests.
108
+ - `test\locale-test.mjs`: UI locale tests.
109
+
110
+ After changing the runtime source, test, inspect package contents, and install from the local directory:
91
111
 
92
112
  ```powershell
93
113
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
94
114
  $OutputEncoding = [System.Text.Encoding]::UTF8
95
- node test\core-test.mjs
115
+ npm test
116
+ npm run pack:check
117
+ dsh plugin --profile web add .
96
118
  ```
97
119
 
98
- ## Project documentation
120
+ Preserve path validation, temporary-copy replacement, and shared-skill read-only behavior when changing file-mutation code.
99
121
 
100
- Project status, usage boundaries, architecture, and iteration records start at the [documentation entry point](https://github.com/MichengAI/dsh-skills-manager/blob/master/docs/00-%E4%BA%A4%E6%8E%A5%E5%85%A5%E5%8F%A3/00-%E9%98%85%E8%AF%BB%E5%AF%BC%E8%88%AA.md). The Chinese operational guide is available at `docs\02-产品与业务\01-使用说明.md` in the repository.
101
-
102
- ## Maintainer release
103
-
104
- The package is published as [`@michengai/dsh-skills-manager`](https://www.npmjs.com/package/@michengai/dsh-skills-manager). To release a new version:
122
+ ## Validation
105
123
 
106
124
  ```powershell
107
125
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
108
126
  $OutputEncoding = [System.Text.Encoding]::UTF8
109
- npm version patch
110
- npm publish
127
+ npm test
128
+ npm run pack:check
111
129
  ```
112
130
 
113
- `prepublishOnly` runs the core test suite before publication. The package always publishes to the official npm registry; use `npm run pack:check` to inspect the tarball first.
131
+ `prepublishOnly` runs the core tests before publishing.
132
+
133
+ ## Documentation and license
114
134
 
115
- ## License
135
+ Project status, usage boundaries, architecture, and iteration records begin at the [documentation entry point](docs/00-交接入口/00-阅读导航.md). The detailed operational guide is `docs\02-产品与业务\01-使用说明.md`.
116
136
 
117
- Licensed under the [Apache License 2.0](LICENSE).
137
+ Licensed under [Apache License 2.0](LICENSE).
package/README.zh-CN.md CHANGED
@@ -5,16 +5,13 @@
5
5
  <h1 align="center">DSH Skills Manager</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>通过 npm 安装的 DeepSeek Harness Web 插件,用于安全管理本地技能。</strong>
8
+ <strong>安全管理本地技能并查看公共 Agent 技能的 DeepSeek Harness Web 插件。</strong>
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
12
  <a href="https://github.com/MichengAI/dsh-skills-manager/issues">反馈问题</a>
13
13
  · <a href="https://www.npmjs.com/package/@michengai/dsh-skills-manager">在 npm 查看</a>
14
- </p>
15
-
16
- <p align="center">
17
- <a href="README.md">English</a> · <strong>简体中文</strong>
14
+ · <a href="README.md">English</a>
18
15
  </p>
19
16
 
20
17
  <p align="center">
@@ -24,94 +21,117 @@
24
21
  <img src="https://img.shields.io/badge/Node.js-%E2%89%A520-339933?logo=nodedotjs&logoColor=white" alt="Node.js 20 或更高版本">
25
22
  </p>
26
23
 
27
- <p align="center">
28
- <img src="assets/screenshots/skills-manager.png" alt="从技能设置面板打开的系统原生文件选择器" width="960">
29
- </p>
24
+ > DSH Skills Manager 是社区维护的插件,并非 DeepSeek AI 官方产品。
30
25
 
31
- > 截图展示技能面板的整体布局。当前版本中的公共 Agent 技能为只读,不会显示操作按钮。
26
+ ## 功能概览
32
27
 
33
- > DSH Skills Manager 是社区维护的插件,并非 DeepSeek AI 官方产品。
28
+ - 在同一设置页查看本地 `$DSH_HOME\skills` 与公共 `$DSH_AGENTS_HOME\skills`。
29
+ - 对 DSH 本地技能执行启用、停用、上传、覆盖和删除。
30
+ - 公共 Agent 技能始终只读,不改写共享的全局元数据。
31
+ - 使用系统文件选择器导入包含 `SKILL.md` 的插件目录,并对同名覆盖强制确认。
32
+ - 拒绝目录穿越、从 DSH 技能目录导入自身及符号链接导入。
34
33
 
35
- ## 核心能力
34
+ ![技能管理设置页面](assets/screenshots/skills-manager.png)
36
35
 
37
- - **双目录分组**:在一个设置面板中查看本地 `$DSH_HOME\skills` 与公共 `$DSH_AGENTS_HOME\skills`。
38
- - **本地技能管理**:仅对 DSH 本地技能提供启用、停用、上传、覆盖和删除。
39
- - **公共技能安全查看**:公共 Agent 技能可见但严格只读,绝不会改写其全局元数据。
40
- - **系统原生选择**:通过操作系统文件选择器选择插件的 `SKILL.md`;客户端无法提供所选文件路径时,可显式选择插件目录。
41
- - **覆盖保护**:导入同名技能一定要求确认;flat 与 bundle 两种形态同名时同样如此。
42
- - **更安全的导入**:拒绝从 DSH 技能目录自身、其父目录或子目录导入,也拒绝符号链接。
43
- - **弹窗行为可预期**:按 ESC 只关闭当前上传框或确认框,不会关闭设置页面。
36
+ ## 前置条件
44
37
 
45
- ## 目录权限
38
+ - 已可正常运行 DeepSeek Harness Web,且可在 PowerShell 中使用 `dsh`。
39
+ - 以下示例使用 `web` profile;请替换为实际目标 profile。
40
+ - 从源码安装或二次开发需要 Node.js 20+;仅从 npm 安装无需在任意目录执行 `npm install`。
46
41
 
47
- | 目录 | 查看 | 启用/停用 | 上传/覆盖 | 删除 |
48
- | --- | --- | --- | --- | --- |
49
- | `$DSH_HOME\skills` | 支持 | 支持 | 支持 | 支持 |
50
- | `$DSH_AGENTS_HOME\skills` | 支持 | 不支持 | 不支持 | 不支持 |
42
+ ## 安装
51
43
 
52
- 公共 Agent 目录在界面和服务端均为只读,用于避免误改共享的全局技能元数据。
44
+ ### npm 安装
53
45
 
54
- ## 安全行为
46
+ 在任意 PowerShell 目录执行。请通过 `dsh plugin` 安装到 DSH profile:
55
47
 
56
- - 启用、停用和删除只接受单个普通技能名称,目录穿越名称会被拒绝。
57
- - 覆盖前会先复制到同目录临时路径;复制成功前不会触碰现有技能。
58
- - 写入接口要求 JSON 与 DSH 客户端请求标记,跨站浏览器请求无法触发本地文件操作。
48
+ ```powershell
49
+ [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
50
+ $OutputEncoding = [System.Text.Encoding]::UTF8
51
+ dsh plugin --profile web add @michengai/dsh-skills-manager
52
+ dsh --profile web --dump-config
53
+ ```
59
54
 
60
- ## 快速开始
55
+ 安装或升级后重启 DSH Web,或重新加载当前 Web profile。若镜像未同步最新版本,可在安装命令末尾追加 `--registry=https://registry.npmjs.org/`。
61
56
 
62
- 环境要求:可正常运行的 DeepSeek Harness Web 环境。不要在任意目录执行 `npm install`;应将插件安装到 DSH Web profile。
57
+ ### 从源码安装
63
58
 
64
- 1. 执行:
59
+ 适用于调试或使用未发布改动。克隆后的目录会直接作为插件安装路径:
65
60
 
66
61
  ```powershell
67
62
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
68
63
  $OutputEncoding = [System.Text.Encoding]::UTF8
69
- dsh plugin --profile web add @michengai/dsh-skills-manager
64
+ Set-Location D:\Repository\deepseek-harness-plugin
65
+ git clone https://github.com/MichengAI/dsh-skills-manager.git
66
+ Set-Location .\dsh-skills-manager
67
+ npm install
68
+ npm test
69
+ dsh plugin --profile web add .
70
+ dsh --profile web --dump-config
70
71
  ```
71
72
 
72
- 2. 重启 DSH 或重新加载当前 Web profile
73
- 3. 打开「设置 → 技能」。无需下载源码。
73
+ 完成后重启 DSH Web 或重新加载当前 Web profile。`dsh plugin ... add .` 会自动读取并应用 `cordis.patch.yml`;不要手工复制 `lib` 文件。
74
74
 
75
- 若软件源镜像尚未同步最新版本,可在安装命令末尾添加 `--registry=https://registry.npmjs.org/`。
75
+ ## 使用
76
76
 
77
- ## 使用技能面板
77
+ 打开「设置 → 技能」,再按下表操作:
78
78
 
79
79
  | 目标 | 操作 | 范围 |
80
80
  | --- | --- | --- |
81
- | 查看技能 | 打开「设置 → 技能」,查看名称、形态、说明和调用状态。 | DSH 与公共 Agent 技能 |
82
- | 启用或停用 | 点击「启用」或「停用」。它会同步控制模型调用和 `/` 手动命令,不会改写 `SKILL.md` 的其他元数据。 | 仅 DSH 技能 |
83
- | 上传插件 | 点击「上传插件」,选择插件目录内的 `SKILL.md`。DSH 会复制完整目录,包括脚本和资源。 | 仅 DSH 技能 |
84
- | 改选插件目录 | 若所选文件没有可用路径,点击「选择插件文件夹」,并选择包含 `SKILL.md` 的目录。 | 仅 DSH 技能 |
85
- | 覆盖或删除 | 同名时按提示确认覆盖;使用「删除」移除不再需要的 DSH 本地技能。 | 仅 DSH 技能 |
81
+ | 查看技能 | 查看名称、形态、说明和调用状态。 | DSH 与公共 Agent 技能 |
82
+ | 启用或停用 | 点击「启用」或「停用」。它会同步控制模型调用和 `/` 手动命令。 | 仅 DSH 本地技能 |
83
+ | 上传插件 | 点击「上传插件」,选择插件目录内的 `SKILL.md`。完整目录、脚本和资源都会被复制。 | 仅 DSH 本地技能 |
84
+ | 改选插件目录 | 所选文件无可用路径时,选择包含 `SKILL.md` 的目录。 | 仅 DSH 本地技能 |
85
+ | 覆盖或删除 | 同名时确认覆盖;使用「删除」移除不再需要的本地技能。 | 仅 DSH 本地技能 |
86
86
  | 查看公共技能 | 查看公共 Agent 技能,不修改其元数据。 | 只读 |
87
87
 
88
- 按 ESC 只关闭最上层上传框或确认框,设置页保持打开。
88
+ 按 ESC 只关闭最上层上传框或确认框,设置页会保持打开。
89
+
90
+ ## 权限与安全边界
91
+
92
+ | 目录 | 查看 | 启用或停用 | 上传或覆盖 | 删除 |
93
+ | --- | --- | --- | --- | --- |
94
+ | `$DSH_HOME\skills` | 支持 | 支持 | 支持 | 支持 |
95
+ | `$DSH_AGENTS_HOME\skills` | 支持 | 不支持 | 不支持 | 不支持 |
89
96
 
90
- ## 开发与验证
97
+ - 启用、停用和删除只接受单个普通技能名称,目录穿越名称会被拒绝。
98
+ - 覆盖前先复制到同目录临时路径;复制成功前不会改动现有技能。
99
+ - 写入接口要求 JSON 与 DSH 客户端请求标记,跨站浏览器请求不能触发本地文件操作。
100
+
101
+ ## 二次开发
102
+
103
+ 当前仓库未提供 `src` 源目录,`lib` 是直接维护的运行源码;这是当前仓库的实现方式,不是新插件的推荐布局。新插件建议使用 `src` 开发并构建到 `lib`:
104
+
105
+ - [lib\index.js](lib/index.js):Host 服务与本地技能文件操作入口。
106
+ - [lib\client.js](lib/client.js):设置页、上传和确认交互。
107
+ - `test\core-test.mjs`:文件操作、权限和导入边界测试。
108
+ - `test\locale-test.mjs`:界面词条测试。
109
+
110
+ 修改后运行测试、检查发布内容并以本地目录安装验证:
91
111
 
92
112
  ```powershell
93
113
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
94
114
  $OutputEncoding = [System.Text.Encoding]::UTF8
95
- node test\core-test.mjs
115
+ npm test
116
+ npm run pack:check
117
+ dsh plugin --profile web add .
96
118
  ```
97
119
 
98
- ## 项目文档
120
+ 修改文件写入逻辑时必须保留路径校验、临时目录复制和公共技能只读限制。
99
121
 
100
- 项目状态、使用边界、技术架构和迭代记录从[文档交接入口](https://github.com/MichengAI/dsh-skills-manager/blob/master/docs/00-%E4%BA%A4%E6%8E%A5%E5%85%A5%E5%8F%A3/00-%E9%98%85%E8%AF%BB%E5%AF%BC%E8%88%AA.md)开始;详细操作说明见仓库中的 `docs\02-产品与业务\01-使用说明.md`。
101
-
102
- ## 维护者发布
103
-
104
- 本包已发布为 [`@michengai/dsh-skills-manager`](https://www.npmjs.com/package/@michengai/dsh-skills-manager)。发布新版本时执行:
122
+ ## 验证
105
123
 
106
124
  ```powershell
107
125
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
108
126
  $OutputEncoding = [System.Text.Encoding]::UTF8
109
- npm version patch
110
- npm publish
127
+ npm test
128
+ npm run pack:check
111
129
  ```
112
130
 
113
- 发布前会由 `prepublishOnly` 自动运行核心测试。包始终发布到官方 npm registry;可先执行 `npm run pack:check` 检查 tarball 内容。
131
+ `prepublishOnly` 会在发布前自动执行核心测试。
132
+
133
+ ## 项目文档与许可证
114
134
 
115
- ## 许可证
135
+ 项目状态、使用边界、技术架构和迭代记录从[文档交接入口](docs/00-交接入口/00-阅读导航.md)开始。详细操作说明见 `docs\02-产品与业务\01-使用说明.md`。
116
136
 
117
137
  本项目采用 [Apache License 2.0](LICENSE)。
package/lib/client.js CHANGED
@@ -462,7 +462,7 @@ window.__ModuleLoader__.load({
462
462
  return ctx.locale.register(NS, DICT);
463
463
  }, "skills-manager: dictionaries");
464
464
  ctx.slots.inject("settings.section", function () {
465
- return ctx.slots.register({ name: "settings.section", id: "skills-manager", order: 17, label: function () { return ctx.locale.bind(NS)("title"); }, locale: NS }, SkillManagerSection);
465
+ return ctx.slots.register({ name: "settings.section", id: "skills-manager", order: 17, label: function () { return ctx.locale.bind(NS)("title"); }, icon: "skill", locale: NS }, SkillManagerSection);
466
466
  });
467
467
  }
468
468
  module.exports.apply = apply;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@michengai/dsh-skills-manager",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "NPM-installable DSH Web plugin for managing local skills and viewing shared Agent skills safely.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {