dsh-agent-toolkit 0.2.9 → 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/lib/client.js +103 -87
- package/lib/client.js.map +1 -1
- package/lib/index.js +77 -14
- package/lib/index.js.map +1 -1
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-agent-toolkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "DeepSeek Harness plugin: agent registry with layered prompts, parallel delegation, Feishu bots and token usage",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"client": {
|
|
46
46
|
"platform": "web",
|
|
47
47
|
"inject": [
|
|
48
|
-
"@deepseek-ai/dsh-
|
|
48
|
+
"@deepseek-ai/dsh-api-session-controller",
|
|
49
|
+
"@deepseek-ai/dsh-api-workspace-controller",
|
|
49
50
|
"@deepseek-ai/dsh-client-locale",
|
|
50
51
|
"@deepseek-ai/dsh-client-ui-sidebar",
|
|
51
52
|
"@deepseek-ai/dsh-client-ui-tool",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"js-yaml": "^4.1.0",
|
|
62
63
|
"qrcode": "^1.5.4",
|
|
63
64
|
"zod": "^4.4.3",
|
|
64
|
-
"@dsh-agent-toolkit/token-usage": "^0.
|
|
65
|
+
"@dsh-agent-toolkit/token-usage": "^0.5.0"
|
|
65
66
|
},
|
|
66
67
|
"peerDependencies": {
|
|
67
68
|
"@deepseek-ai/cordis": "^4.0.1"
|
|
@@ -75,10 +76,12 @@
|
|
|
75
76
|
"@deepseek-ai/dsh-agent-instructions": "link:../../deepseek-harness/packages/context/agent-instructions",
|
|
76
77
|
"@deepseek-ai/dsh-agent-presets": "link:../../deepseek-harness/packages/preset/agent-presets",
|
|
77
78
|
"@deepseek-ai/dsh-attachment": "link:../../deepseek-harness/packages/attachment/attachment",
|
|
79
|
+
"@deepseek-ai/dsh-api-session-controller": "link:../../deepseek-harness/packages/api/session-controller",
|
|
80
|
+
"@deepseek-ai/dsh-api-workspace-controller": "link:../../deepseek-harness/packages/api/workspace-controller",
|
|
78
81
|
"@deepseek-ai/dsh-client-locale": "link:../../deepseek-harness/packages/client/locale",
|
|
79
|
-
"@deepseek-ai/dsh-client-runtime": "link:../../deepseek-harness/packages/client/runtime",
|
|
80
82
|
"@deepseek-ai/dsh-client-ui-conversation": "link:../../deepseek-harness/packages/client/ui-conversation",
|
|
81
83
|
"@deepseek-ai/dsh-client-ui-primitives": "link:../../deepseek-harness/packages/client/ui-primitives",
|
|
84
|
+
"@deepseek-ai/dsh-client-ui-renderer": "link:../../deepseek-harness/packages/client/ui-renderer",
|
|
82
85
|
"@deepseek-ai/dsh-client-ui-sidebar": "link:../../deepseek-harness/packages/client/ui-sidebar",
|
|
83
86
|
"@deepseek-ai/dsh-client-ui-slots": "link:../../deepseek-harness/packages/client/ui-slots",
|
|
84
87
|
"@deepseek-ai/dsh-client-ui-tool": "link:../../deepseek-harness/packages/client/ui-tool",
|
|
@@ -102,6 +105,7 @@
|
|
|
102
105
|
"@deepseek-ai/dsh-tool-pwsh": "link:../../deepseek-harness/packages/shell/tool-pwsh",
|
|
103
106
|
"@deepseek-ai/dsh-tools": "link:../../deepseek-harness/packages/core/tools",
|
|
104
107
|
"@deepseek-ai/dsh-user-approval": "link:../../deepseek-harness/packages/interaction/user-approval",
|
|
108
|
+
"@deepseek-ai/dsh-util-values": "link:../../deepseek-harness/packages/util/values",
|
|
105
109
|
"@deepseek-ai/schemastery": "link:../../deepseek-harness/vendor/schemastery",
|
|
106
110
|
"@testing-library/react": "^16.1.0",
|
|
107
111
|
"@types/js-yaml": "^4.0.9",
|