dsh-edge 0.7.0-alpha.2 → 0.7.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/THIRD_PARTY_NOTICES.md +1 -1
- package/package.json +5 -1
- package/worker/direct/index.js +1351 -1014
- package/worker/isolated/index.js +1039 -702
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
## DeepSeek Harness
|
|
9
9
|
|
|
10
|
-
`dsh-edge` assembles published DeepSeek Harness packages and applies
|
|
10
|
+
`dsh-edge` assembles published DeepSeek Harness packages and applies 7 version-bound adaptations to the pinned `0.1.1-rc.2` release. DeepSeek Harness remains under its upstream MIT license:
|
|
11
11
|
|
|
12
12
|
```text
|
|
13
13
|
MIT License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-edge",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Your DeepSeek Harness, anywhere — deploy a persistent personal coding agent to Cloudflare Workers in one command",
|
|
5
5
|
"author": "pawaca",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"@deepseek-ai/cordis": "4.0.1",
|
|
60
60
|
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
|
|
61
61
|
"@deepseek-ai/dsh-agent-loop": "0.1.1-rc.2",
|
|
62
|
+
"@deepseek-ai/dsh-api-gateway": "0.1.1-rc.2",
|
|
62
63
|
"@deepseek-ai/dsh-anonymous-user-id": "0.1.1-rc.2",
|
|
63
64
|
"@deepseek-ai/dsh-attachment": "0.1.1-rc.2",
|
|
64
65
|
"@deepseek-ai/dsh-brand": "0.1.1-rc.2",
|
|
@@ -76,6 +77,7 @@
|
|
|
76
77
|
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
77
78
|
"@deepseek-ai/dsh-session-persistence": "0.1.1-rc.2",
|
|
78
79
|
"@deepseek-ai/dsh-session-projection": "0.1.1-rc.2",
|
|
80
|
+
"@deepseek-ai/dsh-session-projection-cache": "0.1.1-rc.2",
|
|
79
81
|
"@deepseek-ai/dsh-session-query": "0.1.1-rc.2",
|
|
80
82
|
"@deepseek-ai/dsh-session-title": "0.1.1-rc.2",
|
|
81
83
|
"@deepseek-ai/dsh-session-title-first-prompt-llm": "0.1.1-rc.2",
|
|
@@ -95,6 +97,8 @@
|
|
|
95
97
|
"@deepseek-ai/dsh-tool-goal": "0.1.1-rc.2",
|
|
96
98
|
"@deepseek-ai/dsh-tool-web": "0.1.1-rc.2",
|
|
97
99
|
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-typert-registry": "0.1.1-rc.2",
|
|
98
102
|
"@deepseek-ai/dsh-web": "0.1.1-rc.2",
|
|
99
103
|
"@deepseek-ai/dsh-web-search-deepseek": "0.1.1-rc.2",
|
|
100
104
|
"@deepseek-ai/dsh-workspace": "0.1.1-rc.2",
|