lody 0.83.0 → 0.85.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/dist/chunks/{index-CbTnvx5t.js → index-ddMw90Gr.js} +5396 -4189
- package/dist/chunks/{package-Ce-NgzCA.js → package-CNW89xCh.js} +2 -2
- package/dist/chunks/{profile-RfMzWliN.js → profile-Cxxl5hCq.js} +18 -7
- package/dist/chunks/{review-viewer-BPTYS7b4.js → review-viewer-oYzxdgq4.js} +4 -4
- package/dist/claude-acp.js +56197 -48759
- package/dist/codex-acp.js +1 -1
- package/dist/deepseek-acp.js +183 -44
- package/dist/deepseek-agent-presets/code/agent.cordis.yml +4 -3
- package/dist/deepseek-agent-presets/cordis/agent.cordis.yml +4 -3
- package/dist/deepseek-agent-presets/cordis/skills/editing-cordis-compositions/SKILL.md +13 -2
- package/dist/deepseek-agent-presets/minimal/agent.cordis.yml +27 -1
- package/dist/deepseek-agent-presets/standard/agent.cordis.yml +4 -3
- package/dist/grok-acp.js +48 -2
- package/dist/index.js +1389 -1268
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const name = "acp-extension-claude";
|
|
2
|
-
const version = "0.
|
|
3
|
-
const dependencies = { "@anthropic-ai/claude-agent-sdk": "0.3.
|
|
2
|
+
const version = "0.70.0";
|
|
3
|
+
const dependencies = { "@anthropic-ai/claude-agent-sdk": "0.3.232" };
|
|
4
4
|
const packageJson = {
|
|
5
5
|
name,
|
|
6
6
|
version,
|
|
@@ -19,12 +19,20 @@ const DEEPSEEK_HARNESS_MODELS = [
|
|
|
19
19
|
{
|
|
20
20
|
modelId: "deepseek-v4-flash",
|
|
21
21
|
name: "DeepSeek-V4-Flash",
|
|
22
|
-
description: "Faster DeepSeek Harness coding model."
|
|
22
|
+
description: "Faster DeepSeek Harness coding model.",
|
|
23
|
+
inputModalities: ["text"]
|
|
23
24
|
},
|
|
24
25
|
{
|
|
25
26
|
modelId: "deepseek-v4-pro",
|
|
26
27
|
name: "DeepSeek-V4-Pro",
|
|
27
|
-
description: "More capable DeepSeek Harness coding model."
|
|
28
|
+
description: "More capable DeepSeek Harness coding model.",
|
|
29
|
+
inputModalities: ["text"]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
modelId: "deepseek-v4-flash-vision-exp",
|
|
33
|
+
name: "DeepSeek-V4-Flash-Vision-Exp",
|
|
34
|
+
description: "Experimental multimodal DeepSeek model with image understanding.",
|
|
35
|
+
inputModalities: ["text", "image"]
|
|
28
36
|
}
|
|
29
37
|
];
|
|
30
38
|
const DEEPSEEK_HARNESS_REASONING_OPTIONS = [
|
|
@@ -55,8 +63,8 @@ const DEEPSEEK_HARNESS_AGENT_PRESETS = [
|
|
|
55
63
|
}
|
|
56
64
|
];
|
|
57
65
|
const ACP_EXTENSION_DSH_VERSION = "0.1.0";
|
|
58
|
-
const DEEPSEEK_HARNESS_VERSION = "0.1.
|
|
59
|
-
const ACP_EXTENSION_DSH_PROFILE_REVISION = "
|
|
66
|
+
const DEEPSEEK_HARNESS_VERSION = "0.1.1-rc.1";
|
|
67
|
+
const ACP_EXTENSION_DSH_PROFILE_REVISION = "v5";
|
|
60
68
|
const ACP_EXTENSION_DSH_SESSION_ROOT_ENV = "ACP_EXTENSION_DSH_SESSION_ROOT";
|
|
61
69
|
const ACP_EXTENSION_DSH_QUERY_PATH_ENV = "ACP_EXTENSION_DSH_QUERY_PATH";
|
|
62
70
|
const DEEPSEEK_HARNESS_DEFAULT_SESSION_COMPRESSION = "zstd";
|
|
@@ -67,6 +75,7 @@ const DEEPSEEK_HARNESS_NPX_PACKAGES = [
|
|
|
67
75
|
"@deepseek-ai/dsh-session-persistence-jsonl",
|
|
68
76
|
"@deepseek-ai/dsh-session-checkpoint-policy",
|
|
69
77
|
"@deepseek-ai/dsh-session-query-sqlite",
|
|
78
|
+
"@deepseek-ai/dsh-attachment-local",
|
|
70
79
|
"@deepseek-ai/dsh-llm-deepseek",
|
|
71
80
|
"@deepseek-ai/dsh-sandbox-local",
|
|
72
81
|
"@deepseek-ai/dsh-sandbox-policy",
|
|
@@ -122,6 +131,7 @@ const DEEPSEEK_HARNESS_NPX_PACKAGES = [
|
|
|
122
131
|
"@deepseek-ai/dsh-terminal",
|
|
123
132
|
"@deepseek-ai/dsh-terminal-bash",
|
|
124
133
|
"@deepseek-ai/dsh-tool-bash-persistent",
|
|
134
|
+
"@deepseek-ai/dsh-tool-pwsh-persistent",
|
|
125
135
|
"@deepseek-ai/dsh-fs-local",
|
|
126
136
|
"@deepseek-ai/dsh-tool-str-replace-editor",
|
|
127
137
|
// Pin the complete transitive DSH dependency and peer closure too. Harness
|
|
@@ -196,15 +206,16 @@ function createDeepSeekHarnessCordisConfig(adapterPath, presetRoot, sessionCompr
|
|
|
196
206
|
name: '@deepseek-ai/dsh-session-query-sqlite'
|
|
197
207
|
config:
|
|
198
208
|
path: !!js process.env.${ACP_EXTENSION_DSH_QUERY_PATH_ENV}
|
|
209
|
+
openAt: never
|
|
210
|
+
|
|
211
|
+
- id: attachment-local
|
|
212
|
+
name: '@deepseek-ai/dsh-attachment-local'
|
|
199
213
|
|
|
200
214
|
- id: llm-deepseek
|
|
201
215
|
name: '@deepseek-ai/dsh-llm-deepseek'
|
|
202
216
|
config:
|
|
203
217
|
thinking: enabled
|
|
204
218
|
reasoningEffort: max
|
|
205
|
-
models:
|
|
206
|
-
- id: deepseek-v4-flash
|
|
207
|
-
- id: deepseek-v4-pro
|
|
208
219
|
|
|
209
220
|
- id: sandbox
|
|
210
221
|
name: '@deepseek-ai/dsh-sandbox-local'
|
|
@@ -27,12 +27,12 @@ import "https";
|
|
|
27
27
|
import "node:util";
|
|
28
28
|
import "node:zlib";
|
|
29
29
|
import "child_process";
|
|
30
|
+
import { __tla as __tla_1 } from "./loro_wasm_bg-BPNKba8n.js";
|
|
30
31
|
import "perf_hooks";
|
|
31
32
|
import "net";
|
|
32
33
|
import "tls";
|
|
33
34
|
import "url";
|
|
34
|
-
import
|
|
35
|
-
import "./profile-RfMzWliN.js";
|
|
35
|
+
import "./profile-Cxxl5hCq.js";
|
|
36
36
|
import "assert";
|
|
37
37
|
import "fs/promises";
|
|
38
38
|
import "better-sqlite3";
|
|
@@ -55,7 +55,7 @@ import "./diff-line-counts-bmGB_T-n.js";
|
|
|
55
55
|
import "./acp-CrvzLY5A.js";
|
|
56
56
|
import "node:string_decoder";
|
|
57
57
|
import "node:stream/promises";
|
|
58
|
-
import "./package-
|
|
58
|
+
import "./package-CNW89xCh.js";
|
|
59
59
|
import "./runtime-manifest-Fr5DEH54.js";
|
|
60
60
|
import "async_hooks";
|
|
61
61
|
import "module";
|
|
@@ -79,7 +79,7 @@ let __tla = Promise.all([
|
|
|
79
79
|
}
|
|
80
80
|
})()
|
|
81
81
|
]).then(async () => {
|
|
82
|
-
const reviewViewerVersion = "0.
|
|
82
|
+
const reviewViewerVersion = "0.85.0";
|
|
83
83
|
const reviewViewerSha256 = "2ae06d0f134be0ae82e0a9962179037cbee997a59c4240753e44e77b11d92dd6";
|
|
84
84
|
const reviewViewerFileName = "standalone.html";
|
|
85
85
|
const DEFAULT_CDN_BASES = [
|