stratagate-dsh 0.1.0 → 0.2.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/CHANGELOG.md +11 -0
- package/LICENSE +21 -21
- package/README.md +110 -78
- package/cordis.patch.yml +12 -12
- package/dist/client.d.ts +1 -0
- package/dist/client.js +193 -0
- package/dist/index.js +334 -18
- package/dist/index.js.map +1 -1
- package/package.json +85 -51
package/package.json
CHANGED
|
@@ -1,51 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "stratagate-dsh",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Native StrataGate layered long-term memory for DeepSeek Harness",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
},
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "stratagate-dsh",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Native StrataGate layered long-term memory for DeepSeek Harness",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./client": {
|
|
14
|
+
"types": "./dist/client.d.ts",
|
|
15
|
+
"default": "./dist/client.js"
|
|
16
|
+
},
|
|
17
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"files": ["dist", "cordis.patch.yml", "README.md", "CHANGELOG.md", "LICENSE"],
|
|
21
|
+
"dsh": {
|
|
22
|
+
"bundle": { "patch": "./cordis.patch.yml" },
|
|
23
|
+
"client": {
|
|
24
|
+
"inject": ["@deepseek-ai/dsh-client-runtime"],
|
|
25
|
+
"platform": "web"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsup && node scripts/build-client.mjs",
|
|
30
|
+
"check": "tsc -p tsconfig.json --noEmit",
|
|
31
|
+
"test": "vitest run --config vitest.config.ts",
|
|
32
|
+
"verify:package": "node scripts/verify-package.mjs",
|
|
33
|
+
"prepare": "npm run build"
|
|
34
|
+
},
|
|
35
|
+
"keywords": ["deepseek-harness", "dsh-plugin", "agent-memory", "long-term-memory", "evidence-gate"],
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/diqierjia/StrataGate-AgentMemory.git",
|
|
39
|
+
"directory": "integrations/deepseek-harness"
|
|
40
|
+
},
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"dshWorkshop": {
|
|
43
|
+
"schema": "omdsh-workshop-package/v1",
|
|
44
|
+
"type": "plugin",
|
|
45
|
+
"integration": {
|
|
46
|
+
"protocol": "harness-profile",
|
|
47
|
+
"artifact": "package.json"
|
|
48
|
+
},
|
|
49
|
+
"compatibility": {
|
|
50
|
+
"dshVersions": ["0.1.0-rc.6", "0.1.0-rc.7"],
|
|
51
|
+
"nodeVersions": ["22.19.x", "24.x"]
|
|
52
|
+
},
|
|
53
|
+
"permissions": [
|
|
54
|
+
"harness:tool",
|
|
55
|
+
"filesystem:read",
|
|
56
|
+
"filesystem:write",
|
|
57
|
+
"network:none",
|
|
58
|
+
"subprocess:none",
|
|
59
|
+
"shell:none",
|
|
60
|
+
"python:none",
|
|
61
|
+
"credentials:none"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": { "access": "public" },
|
|
65
|
+
"engines": { "node": "^22.19.0 || >=24.0.0" },
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
68
|
+
"@deepseek-ai/dsh-agent-default-model": ">=0.1.0-rc.6 <0.2.0",
|
|
69
|
+
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6 <0.2.0",
|
|
70
|
+
"@deepseek-ai/dsh-session": ">=0.1.0-rc.6 <0.2.0",
|
|
71
|
+
"@deepseek-ai/dsh-system-prompt": ">=0.1.0-rc.6 <0.2.0",
|
|
72
|
+
"@deepseek-ai/dsh-tools": ">=0.1.0-rc.6 <0.2.0",
|
|
73
|
+
"@deepseek-ai/schemastery": "^3.18.1"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
77
|
+
"@deepseek-ai/dsh-agent-default-model": ">=0.1.0-rc.6 <0.2.0",
|
|
78
|
+
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6 <0.2.0",
|
|
79
|
+
"@deepseek-ai/dsh-session": ">=0.1.0-rc.6 <0.2.0",
|
|
80
|
+
"@deepseek-ai/dsh-system-prompt": ">=0.1.0-rc.6 <0.2.0",
|
|
81
|
+
"@deepseek-ai/dsh-tools": ">=0.1.0-rc.6 <0.2.0",
|
|
82
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
83
|
+
"tsup": "^8.5.0"
|
|
84
|
+
}
|
|
85
|
+
}
|