dsh-edge 0.7.1 → 0.9.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.i18n.yaml +2 -2
- package/README.md +17 -3
- package/README.zh.md +17 -3
- package/THIRD_PARTY_NOTICES.md +4 -2
- package/dist/index.html +1 -1
- package/dist/plugins/@deepseek-ai/dsh-client-ui-message-feedback/client.js +727 -0
- package/package.json +7 -1
- package/worker/direct/index.js +1500 -1082
- package/worker/isolated/index.js +1161 -743
- package/wrangler.jsonc +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-edge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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",
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"@deepseek-ai/dsh-compaction": "0.1.1-rc.2",
|
|
67
67
|
"@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
|
|
68
68
|
"@deepseek-ai/dsh-compaction-tool-result-pruner": "0.1.1-rc.2",
|
|
69
|
+
"@deepseek-ai/dsh-commands": "0.1.1-rc.2",
|
|
69
70
|
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2",
|
|
70
71
|
"@deepseek-ai/dsh-fs": "0.1.1-rc.2",
|
|
71
72
|
"@deepseek-ai/dsh-goal": "0.1.1-rc.2",
|
|
@@ -74,6 +75,7 @@
|
|
|
74
75
|
"@deepseek-ai/dsh-launch-environment": "0.1.1-rc.2",
|
|
75
76
|
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
76
77
|
"@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
|
|
78
|
+
"@deepseek-ai/dsh-message-feedback": "0.1.1-rc.2",
|
|
77
79
|
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
78
80
|
"@deepseek-ai/dsh-session-persistence": "0.1.1-rc.2",
|
|
79
81
|
"@deepseek-ai/dsh-session-projection": "0.1.1-rc.2",
|
|
@@ -92,16 +94,20 @@
|
|
|
92
94
|
"@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
|
|
93
95
|
"@deepseek-ai/dsh-system-prompt": "0.1.1-rc.2",
|
|
94
96
|
"@deepseek-ai/dsh-sandbox": "0.1.1-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-skill": "0.1.1-rc.2",
|
|
95
98
|
"@deepseek-ai/dsh-tool-call-timeout-policy": "0.1.1-rc.2",
|
|
96
99
|
"@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
|
|
97
100
|
"@deepseek-ai/dsh-tool-goal": "0.1.1-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-tool-skill": "0.1.1-rc.2",
|
|
98
102
|
"@deepseek-ai/dsh-tool-web": "0.1.1-rc.2",
|
|
99
103
|
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
100
104
|
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
101
105
|
"@deepseek-ai/dsh-typert-registry": "0.1.1-rc.2",
|
|
102
106
|
"@deepseek-ai/dsh-web": "0.1.1-rc.2",
|
|
107
|
+
"@deepseek-ai/dsh-web-fetch-http": "0.1.1-rc.2",
|
|
103
108
|
"@deepseek-ai/dsh-web-search-deepseek": "0.1.1-rc.2",
|
|
104
109
|
"@deepseek-ai/dsh-workspace": "0.1.1-rc.2",
|
|
110
|
+
"@mixmark-io/domino": "2.2.0",
|
|
105
111
|
"just-bash": "3.3.0",
|
|
106
112
|
"fast-png": "8.0.0",
|
|
107
113
|
"jpeg-js": "0.4.4",
|