dsh-loop-engine 1.0.0-rc7 → 1.0.0-rc9
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.md +39 -0
- package/lib/client.js +6 -2
- package/lib/index.js +953 -269
- package/lib/invariant.js +2 -1
- package/lib/types/client/LoopEngineBadge.d.ts +1 -1
- package/lib/types/client/LoopEngineComposerSelect.d.ts +1 -1
- package/lib/types/client/LoopEngineSection.d.ts +1 -1
- package/lib/types/client/index.d.ts +1 -1
- package/lib/types/client/locales.d.ts +2 -0
- package/lib/types/client/store.d.ts +2 -1
- package/lib/types/driver-core/ownership.d.ts +1 -2
- package/lib/types/engine-claude/agent.d.ts +2 -0
- package/lib/types/engine-claude/loop.d.ts +24 -2
- package/lib/types/engine-claude/mapping.d.ts +3 -3
- package/lib/types/engine-codex/agent.d.ts +2 -0
- package/lib/types/engine-codex/appserver/mapping.d.ts +4 -4
- package/lib/types/engine-codex/loop.d.ts +24 -2
- package/lib/types/engine-kimi/agent.d.ts +2 -0
- package/lib/types/engine-kimi/commands.d.ts +7 -0
- package/lib/types/engine-kimi/loop.d.ts +24 -2
- package/lib/types/engine-pi/agent.d.ts +10 -0
- package/lib/types/engine-pi/loop.d.ts +29 -2
- package/lib/types/engine-pi/probe.d.ts +23 -0
- package/lib/types/index.d.ts +16 -0
- package/lib/types/patch-manager.d.ts +9 -0
- package/lib/types/preset.d.ts +73 -0
- package/lib/types/provider-route.d.ts +49 -0
- package/lib/types/settings.d.ts +5 -5
- package/package.json +23 -23
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-loop-engine",
|
|
3
3
|
"description": "Web-switchable agent loop engine selection for the DeepSeek Harness - out-of-tree plugin (Claude Code / Codex / Pi / Kimi Code drivers) maintained by @kuun993, zero main-repo changes",
|
|
4
|
-
"version": "1.0.0-
|
|
4
|
+
"version": "1.0.0-rc9",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -46,14 +46,13 @@
|
|
|
46
46
|
"client": {
|
|
47
47
|
"inject": [
|
|
48
48
|
"@deepseek-ai/dsh-client-locale",
|
|
49
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
50
49
|
"@deepseek-ai/dsh-client-ui-settings",
|
|
51
50
|
"@deepseek-ai/dsh-api-remotes"
|
|
52
51
|
],
|
|
53
52
|
"platform": "web",
|
|
54
53
|
"external": [
|
|
55
54
|
"@deepseek-ai/dsh-client-locale/client",
|
|
56
|
-
"@deepseek-ai/dsh-client-
|
|
55
|
+
"@deepseek-ai/dsh-client-store",
|
|
57
56
|
"@deepseek-ai/dsh-client-ui-settings/client",
|
|
58
57
|
"@deepseek-ai/dsh-api-remotes/client",
|
|
59
58
|
"@deepseek-ai/dsh-settings/types"
|
|
@@ -69,28 +68,29 @@
|
|
|
69
68
|
},
|
|
70
69
|
"peerDependencies": {
|
|
71
70
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
72
|
-
"@deepseek-ai/dsh-agent": "0.1.
|
|
73
|
-
"@deepseek-ai/dsh-invariants": "0.1.
|
|
74
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
75
|
-
"@deepseek-ai/dsh-scope": "0.1.
|
|
76
|
-
"@deepseek-ai/dsh-session": "0.1.
|
|
77
|
-
"@deepseek-ai/dsh-session-persistence": "0.1.
|
|
78
|
-
"@deepseek-ai/dsh-settings": "0.1.
|
|
79
|
-
"@deepseek-ai/dsh-subprocess": "0.1.
|
|
80
|
-
"@deepseek-ai/dsh-timeout": "0.1.
|
|
71
|
+
"@deepseek-ai/dsh-agent": "0.1.2-rc.1",
|
|
72
|
+
"@deepseek-ai/dsh-invariants": "0.1.2-rc.1",
|
|
73
|
+
"@deepseek-ai/dsh-llm": "0.1.2-rc.1",
|
|
74
|
+
"@deepseek-ai/dsh-scope": "0.1.2-rc.1",
|
|
75
|
+
"@deepseek-ai/dsh-session": "0.1.2-rc.1",
|
|
76
|
+
"@deepseek-ai/dsh-session-persistence": "0.1.2-rc.1",
|
|
77
|
+
"@deepseek-ai/dsh-settings": "0.1.2-rc.1",
|
|
78
|
+
"@deepseek-ai/dsh-subprocess": "0.1.2-rc.1",
|
|
79
|
+
"@deepseek-ai/dsh-timeout": "0.1.2-rc.1"
|
|
81
80
|
},
|
|
82
81
|
"devDependencies": {
|
|
83
|
-
"@deepseek-ai/dsh-attachment": "0.1.
|
|
84
|
-
"@deepseek-ai/dsh-client-locale": "0.1.
|
|
85
|
-
"@deepseek-ai/dsh-client-
|
|
86
|
-
"@deepseek-ai/dsh-client-ui-
|
|
87
|
-
"@deepseek-ai/dsh-client-ui-
|
|
88
|
-
"@deepseek-ai/dsh-client-ui-
|
|
89
|
-
"@deepseek-ai/dsh-client-ui-
|
|
90
|
-
"@deepseek-ai/dsh-
|
|
91
|
-
"@deepseek-ai/dsh-
|
|
92
|
-
"@deepseek-ai/dsh-
|
|
93
|
-
"@deepseek-ai/dsh-
|
|
82
|
+
"@deepseek-ai/dsh-attachment": "0.1.2-rc.1",
|
|
83
|
+
"@deepseek-ai/dsh-client-locale": "0.1.2-rc.1",
|
|
84
|
+
"@deepseek-ai/dsh-client-store": "0.1.2-rc.1",
|
|
85
|
+
"@deepseek-ai/dsh-client-ui-renderer": "0.1.2-rc.1",
|
|
86
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.2-rc.1",
|
|
87
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.2-rc.1",
|
|
88
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.2-rc.1",
|
|
89
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.2-rc.1",
|
|
90
|
+
"@deepseek-ai/dsh-home-paths": "0.1.2-rc.1",
|
|
91
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "0.1.2-rc.1",
|
|
92
|
+
"@deepseek-ai/dsh-subprocess-local": "0.1.2-rc.1",
|
|
93
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.2-rc.1",
|
|
94
94
|
"@types/node": "^22.20.0",
|
|
95
95
|
"@types/react": "^19.0.0",
|
|
96
96
|
"@vitest/coverage-v8": "^4.1.8",
|