dsh-chat-manager-wide 1.4.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/AGENTS.md +127 -0
- package/CHANGELOG.md +48 -0
- package/LICENSE +21 -0
- package/PUBLISH.md +167 -0
- package/README.en.md +151 -0
- package/README.md +139 -0
- package/README.zh-CN.md +5 -0
- package/SECURITY.md +15 -0
- package/THIRD_PARTY_NOTICES.md +63 -0
- package/compatibility.json +31 -0
- package/cordis.patch.yml +7 -0
- package/lib/client.js +6209 -0
- package/package.json +159 -0
- package/scripts/build-client-local.mjs +38 -0
- package/scripts/build-client.mjs +450 -0
- package/scripts/smoke-ui.mjs +221 -0
- package/src/host/archive-manager.mjs +329 -0
- package/src/host/delete-session.mjs +430 -0
- package/src/index.js +97 -0
package/SECURITY.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Security policy
|
|
2
|
+
|
|
3
|
+
## Supported version
|
|
4
|
+
|
|
5
|
+
Security fixes are provided for the latest release.
|
|
6
|
+
|
|
7
|
+
## Report a vulnerability
|
|
8
|
+
|
|
9
|
+
Use **Security → Report a vulnerability** in this repository. Please do not put
|
|
10
|
+
session contents, local paths, profile files, or a working destructive proof of
|
|
11
|
+
concept in a public issue.
|
|
12
|
+
|
|
13
|
+
Include the DSH version, plugin version, storage backend, operating system, and
|
|
14
|
+
the smallest redacted reproduction you can provide. Do not attach real session
|
|
15
|
+
logs.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
## @deepseek-ai/dsh-client-ui-workspace
|
|
4
|
+
|
|
5
|
+
The distributed `lib/client.js` is a modified build of
|
|
6
|
+
`@deepseek-ai/dsh-client-ui-workspace` version `0.1.5-rc.1`. The patch source is
|
|
7
|
+
available in `scripts/build-client.mjs`, and the composed bundle starts with an
|
|
8
|
+
attribution header pointing back to this file.
|
|
9
|
+
|
|
10
|
+
DeepSeek Harness is licensed under the MIT License:
|
|
11
|
+
|
|
12
|
+
MIT License
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2026 DeepSeek
|
|
15
|
+
|
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
+
in the Software without restriction, including without limitation the rights
|
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
+
furnished to do so, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
The above copyright notice and this permission notice shall be included in all
|
|
24
|
+
copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
32
|
+
SOFTWARE.
|
|
33
|
+
|
|
34
|
+
## dsh-chat-manager
|
|
35
|
+
|
|
36
|
+
This package is a modified fork of `dsh-chat-manager` 1.3.4
|
|
37
|
+
(https://www.npmjs.com/package/dsh-chat-manager). The upstream `LICENSE` file is
|
|
38
|
+
retained unchanged in this package, and every change made by this fork is listed
|
|
39
|
+
in `CHANGELOG.md`.
|
|
40
|
+
|
|
41
|
+
dsh-chat-manager is licensed under the MIT License:
|
|
42
|
+
|
|
43
|
+
MIT License
|
|
44
|
+
|
|
45
|
+
Copyright (c) 2026 WSL043
|
|
46
|
+
|
|
47
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
48
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
49
|
+
in the Software without restriction, including without limitation the rights
|
|
50
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
51
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
52
|
+
furnished to do so, subject to the following conditions:
|
|
53
|
+
|
|
54
|
+
The above copyright notice and this permission notice shall be included in all
|
|
55
|
+
copies or substantial portions of the Software.
|
|
56
|
+
|
|
57
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
58
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
59
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
60
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
61
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
62
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
63
|
+
SOFTWARE.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"latestTested": "0.1.5-rc.1",
|
|
3
|
+
"supported": [
|
|
4
|
+
"0.1.0-rc.6",
|
|
5
|
+
"0.1.0-rc.7",
|
|
6
|
+
"0.1.0-rc.8",
|
|
7
|
+
"0.1.1-rc.1",
|
|
8
|
+
"0.1.1-rc.2",
|
|
9
|
+
"0.1.2-rc.1",
|
|
10
|
+
"0.1.5-rc.1"
|
|
11
|
+
],
|
|
12
|
+
"workspaceFixtures": {
|
|
13
|
+
"0.1.0-rc.6": "dsh-ui-workspace-rc6",
|
|
14
|
+
"0.1.0-rc.7": "dsh-ui-workspace-rc7",
|
|
15
|
+
"0.1.0-rc.8": "dsh-ui-workspace-rc8",
|
|
16
|
+
"0.1.1-rc.1": "dsh-ui-workspace-rc1",
|
|
17
|
+
"0.1.1-rc.2": "dsh-ui-workspace-rc2",
|
|
18
|
+
"0.1.2-rc.1": "dsh-ui-workspace-0-1-2-rc-1"
|
|
19
|
+
},
|
|
20
|
+
"legacyWorkspaceFixture": "dsh-ui-workspace-rc2",
|
|
21
|
+
"previews": [
|
|
22
|
+
"0.1.2-alpha.3",
|
|
23
|
+
"0.1.2-alpha.4",
|
|
24
|
+
"0.1.2-alpha.5",
|
|
25
|
+
"0.1.3-alpha.2",
|
|
26
|
+
"0.1.5-alpha.1",
|
|
27
|
+
"0.1.5-alpha.2",
|
|
28
|
+
"0.1.6-alpha.1"
|
|
29
|
+
],
|
|
30
|
+
"previewWorkspaceFixture": "dsh-ui-workspace-alpha2"
|
|
31
|
+
}
|