dsh-skill-folder 0.3.0
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 +119 -0
- package/cordis.patch.yml +31 -0
- package/docs/class-diagram.mermaid +34 -0
- package/docs/refactoring-plan-v2.md +237 -0
- package/docs/refactoring-plan-v3-final.md +284 -0
- package/docs/sequence-diagram.mermaid +17 -0
- package/docs/skill-metadata-schema.md +49 -0
- package/docs/system_design.md +299 -0
- package/lib/bm25.js +115 -0
- package/lib/catalog.js +133 -0
- package/lib/index.js +215 -0
- package/lib/pattern.js +23 -0
- package/lib/quality-scorer.js +191 -0
- package/lib/render.js +102 -0
- package/lib/select.js +66 -0
- package/lib/semantic.js +239 -0
- package/lib/skill-search.js +155 -0
- package/lib/tool-skill-search.js +92 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-skill-folder",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Fold the DSH skill catalog prompt surface: static KV-cache-stable catalog + BM25/bge-m3 hybrid skill_search + autoRoute hints. Rendering-only fold: source.entries stay untouched, the skill tool and /name injection stay host-owned. v0.3.0 adds a semantic retrieval leg (local Ollama bge-m3, RRF hybrid) and auto-route skill hints appended to the user message tail (KV-safe).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dsh-plugin",
|
|
7
|
+
"dsh",
|
|
8
|
+
"deepseek-harness",
|
|
9
|
+
"cordis",
|
|
10
|
+
"skill",
|
|
11
|
+
"skill-folder",
|
|
12
|
+
"token-optimization",
|
|
13
|
+
"bm25",
|
|
14
|
+
"semantic-search",
|
|
15
|
+
"kv-cache",
|
|
16
|
+
"skill-search",
|
|
17
|
+
"auto-route"
|
|
18
|
+
],
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "lib/index.js",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./lib/index.js",
|
|
23
|
+
"./lib/*": "./lib/*"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"lib",
|
|
27
|
+
"docs",
|
|
28
|
+
"cordis.patch.yml",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"dsh": {
|
|
32
|
+
"bundle": {
|
|
33
|
+
"patch": "./cordis.patch.yml"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"test": "node --test \"test/*.test.js\""
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@deepseek-ai/schemastery": "^3.18.1"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
48
|
+
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6"
|
|
49
|
+
}
|
|
50
|
+
}
|