dsh-skill-hub 0.0.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/LICENSE +21 -0
- package/README.md +34 -0
- package/package.json +23 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dsh-skill-hub contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# dsh-skill-hub
|
|
2
|
+
|
|
3
|
+
> ๐ง **Placeholder release (0.0.1)** โ this package currently only reserves the npm name and documents the plan. The first functional release (v0.1.0) is in development.
|
|
4
|
+
|
|
5
|
+
In-GUI **skill hub** for DeepSeek Harness (dsh): the full manager for your local skill catalog, in the web GUI.
|
|
6
|
+
|
|
7
|
+
**Positioning** โ beyond [dsh-skill-manager](https://www.npmjs.com/package/dsh-skill-manager) (read-only browser of user-level skills), and complementing the importer/marketplace plugins ([dsh-skill-importer](https://github.com/saitamahang/dsh-skill-importer), [dsh-find-skill](https://github.com/Moximxxx/dsh-find-skill)):
|
|
8
|
+
|
|
9
|
+
| Capability | dsh-skill-manager (gohana) | **dsh-skill-hub (this)** |
|
|
10
|
+
|---|---|---|
|
|
11
|
+
| Catalog source | Own fs scan, user roots only | Official `ctx.skills` service โ all six roots + third-party providers |
|
|
12
|
+
| Browse / search | โ
| โ
|
|
|
13
|
+
| Group by source root | โ | โ
|
|
|
14
|
+
| Enable / disable skills | โ | โ
|
|
|
15
|
+
| Frontmatter diagnostics (why a skill is ignored) | โ | โ
|
|
|
16
|
+
| New-skill wizard (agent-guided) | โ | โ
|
|
|
17
|
+
| Per-session skill set / usage stats | โ | โ
(v2) |
|
|
18
|
+
|
|
19
|
+
## Planned v0.1.0
|
|
20
|
+
|
|
21
|
+
- Host: `inject: ["skills", "webServer"]`, catalog served from the official skill registry via `/api/skill-hub/*`
|
|
22
|
+
- Client: sidebar entry, bilingual (zh/en), list grouped by source root with search, enable/disable toggles, diagnostics panel, "New Skill" wizard
|
|
23
|
+
- Hot reload: catalog updates live via the filesystem provider's watcher โ no manual refresh
|
|
24
|
+
|
|
25
|
+
## Install (when v0.1.0 ships)
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
dsh plugin --profile web add dsh-skill-hub
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Ecosystem
|
|
32
|
+
|
|
33
|
+
- npm keyword: `dsh-plugin` ยท GitHub topic: `dsh-plugin`
|
|
34
|
+
- License: MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-skill-hub",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "In-GUI skill hub for DeepSeek Harness (dsh): browse the full local skill catalog (every root + third-party providers), toggle skills on/off, surface frontmatter diagnostics, and manage your skill library from the web GUI โ the full manager beyond the read-only dsh-skill-manager browser.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dsh-plugin",
|
|
7
|
+
"dsh",
|
|
8
|
+
"deepseek-harness",
|
|
9
|
+
"skill",
|
|
10
|
+
"skills",
|
|
11
|
+
"skill-manager",
|
|
12
|
+
"agent-skills"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"type": "module",
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
]
|
|
23
|
+
}
|