lody 0.92.1 → 0.93.2
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/{acp-DBqkNziA.js → acp-DCoAUZc7.js} +1 -1
- package/dist/chunks/{directory-handle-Bp47LF5g.js → directory-handle-35P9qcGk.js} +1 -1
- package/dist/chunks/{index-Cy4lnlSp.js → index-Bxge7nr7.js} +396 -100
- package/dist/chunks/plan-mode-BLOER-fv.js +14 -0
- package/dist/chunks/{profile-DLuYzIs8.js → profile-Dv5auBPt.js} +7 -2
- package/dist/chunks/{review-viewer-DqtXyKjy.js → review-viewer-N1aeovLR.js} +7 -6
- package/dist/chunks/{runtime-manifest-DnyvD_EC.js → runtime-manifest-FeOT7MvW.js} +1 -1
- package/dist/chunks/{schemas-Du3qLZPS.js → schemas-C-NzK2uQ.js} +195 -155
- package/dist/claude-acp.js +2 -2
- package/dist/codex-acp.js +1 -1
- package/dist/deepseek-acp.js +26 -3
- package/dist/file-index-scan-worker.js +2 -2
- package/dist/grok-acp.js +219 -46
- package/dist/index.js +5912 -4316
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const LODY_PLAN_MODE_CONFIG_ID = "plan_mode";
|
|
2
|
+
function createPlanModeConfigOption(currentValue) {
|
|
3
|
+
return {
|
|
4
|
+
id: LODY_PLAN_MODE_CONFIG_ID,
|
|
5
|
+
name: "Plan",
|
|
6
|
+
description: "Plan before implementing; permissions are controlled separately.",
|
|
7
|
+
type: "boolean",
|
|
8
|
+
currentValue
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
LODY_PLAN_MODE_CONFIG_ID as L,
|
|
13
|
+
createPlanModeConfigOption as c
|
|
14
|
+
};
|
|
@@ -39,15 +39,16 @@ const DEEPSEEK_HARNESS_AGENT_PRESETS = [
|
|
|
39
39
|
description: "Standard capabilities plus runtime inspection, plugin experiments, and preset-authoring guidance."
|
|
40
40
|
}
|
|
41
41
|
];
|
|
42
|
-
const ACP_EXTENSION_DSH_VERSION = "0.1.
|
|
42
|
+
const ACP_EXTENSION_DSH_VERSION = "0.1.2";
|
|
43
43
|
const DEEPSEEK_HARNESS_VERSION = "0.1.1-rc.2";
|
|
44
|
-
const ACP_EXTENSION_DSH_PROFILE_REVISION = "
|
|
44
|
+
const ACP_EXTENSION_DSH_PROFILE_REVISION = "v10";
|
|
45
45
|
const ACP_EXTENSION_DSH_SESSION_ROOT_ENV = "ACP_EXTENSION_DSH_SESSION_ROOT";
|
|
46
46
|
const ACP_EXTENSION_DSH_QUERY_PATH_ENV = "ACP_EXTENSION_DSH_QUERY_PATH";
|
|
47
47
|
const DEEPSEEK_HARNESS_DEFAULT_SESSION_COMPRESSION = "zstd";
|
|
48
48
|
const ACP_EXTENSION_DSH_CAPABILITY_SOURCE_VERSION = `acp-extension-dsh@${ACP_EXTENSION_DSH_VERSION}:dsh@${DEEPSEEK_HARNESS_VERSION}:profile-${ACP_EXTENSION_DSH_PROFILE_REVISION}`;
|
|
49
49
|
const DEEPSEEK_HARNESS_NPX_PACKAGES = [
|
|
50
50
|
"@deepseek-ai/dsh-acp-demo",
|
|
51
|
+
"@deepseek-ai/dsh-settings-file",
|
|
51
52
|
"@deepseek-ai/dsh-agent-spine-demo",
|
|
52
53
|
"@deepseek-ai/dsh-session-persistence-jsonl",
|
|
53
54
|
"@deepseek-ai/dsh-session-checkpoint-policy",
|
|
@@ -159,6 +160,9 @@ const DEEPSEEK_HARNESS_NPX_PACKAGES = [
|
|
|
159
160
|
];
|
|
160
161
|
function createDeepSeekHarnessCordisConfig(adapterPath, presetRoot, sessionCompression = DEEPSEEK_HARNESS_DEFAULT_SESSION_COMPRESSION) {
|
|
161
162
|
return `# Generated for acp-extension-dsh. API credentials stay in the host environment.
|
|
163
|
+
- id: settings
|
|
164
|
+
name: '@deepseek-ai/dsh-settings-file'
|
|
165
|
+
|
|
162
166
|
- id: agent-spine
|
|
163
167
|
name: '@deepseek-ai/dsh-agent-spine-demo'
|
|
164
168
|
config:
|
|
@@ -319,6 +323,7 @@ function createDeepSeekHarnessCordisConfig(adapterPath, presetRoot, sessionCompr
|
|
|
319
323
|
|
|
320
324
|
- id: acp-agent
|
|
321
325
|
name: ${JSON.stringify(adapterPath)}
|
|
326
|
+
inject: [settings]
|
|
322
327
|
config:
|
|
323
328
|
provider: deepseek-official
|
|
324
329
|
model: deepseek-v4-pro
|
|
@@ -10,7 +10,7 @@ import "node:async_hooks";
|
|
|
10
10
|
import "fs";
|
|
11
11
|
import "crypto";
|
|
12
12
|
import "node:os";
|
|
13
|
-
import "./schemas-
|
|
13
|
+
import "./schemas-C-NzK2uQ.js";
|
|
14
14
|
import "node:events";
|
|
15
15
|
import "node:child_process";
|
|
16
16
|
import "node:tty";
|
|
@@ -32,7 +32,8 @@ import "perf_hooks";
|
|
|
32
32
|
import "net";
|
|
33
33
|
import "tls";
|
|
34
34
|
import "url";
|
|
35
|
-
import "./
|
|
35
|
+
import "./plan-mode-BLOER-fv.js";
|
|
36
|
+
import "./profile-Dv5auBPt.js";
|
|
36
37
|
import "assert";
|
|
37
38
|
import "fs/promises";
|
|
38
39
|
import "better-sqlite3";
|
|
@@ -50,14 +51,14 @@ import "node:worker_threads";
|
|
|
50
51
|
import "node:url";
|
|
51
52
|
import "node:console";
|
|
52
53
|
import "node:dns";
|
|
53
|
-
import "./directory-handle-
|
|
54
|
+
import "./directory-handle-35P9qcGk.js";
|
|
54
55
|
import "./diff-line-counts-bmGB_T-n.js";
|
|
55
|
-
import "./acp-
|
|
56
|
+
import "./acp-DCoAUZc7.js";
|
|
56
57
|
import "node:string_decoder";
|
|
57
58
|
import "./methods-CvEDMahD.js";
|
|
58
59
|
import "node:stream/promises";
|
|
59
60
|
import "./package-DlotPnLa.js";
|
|
60
|
-
import "./runtime-manifest-
|
|
61
|
+
import "./runtime-manifest-FeOT7MvW.js";
|
|
61
62
|
import "async_hooks";
|
|
62
63
|
import "module";
|
|
63
64
|
import "./diff-worker-task-8tVIjLTu.js";
|
|
@@ -80,7 +81,7 @@ let __tla = Promise.all([
|
|
|
80
81
|
}
|
|
81
82
|
})()
|
|
82
83
|
]).then(async () => {
|
|
83
|
-
const reviewViewerVersion = "0.
|
|
84
|
+
const reviewViewerVersion = "0.93.2";
|
|
84
85
|
const reviewViewerSha256 = "dc9c7fc1dde49bb39c5fe86392d69219b469c0cab4fd492d8b562045e7f676e4";
|
|
85
86
|
const reviewViewerFileName = "standalone.html";
|
|
86
87
|
const DEFAULT_CDN_BASES = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const officialRuntime = { "version": "1.0.13" };
|
|
2
|
-
const privateWireContract = { "permissionNotification": "x.ai/yolo_mode_changed", "sessionConfigMeta": "x.ai/sessionConfig", "sessionNotification": "x.ai/session_notification", "sessionUpdateNotification": "x.ai/session/update", "modelsUpdateNotification": "x.ai/models/update", "turnCompletedUpdate": "turn_completed", "sessionInfoRequest": "x.ai/session/info", "billingRequest": "x.ai/billing", "weeklyUsagePeriodType": "USAGE_PERIOD_TYPE_WEEKLY", "reasoningEffortMeta": "reasoningEffort", "autoPermissionMode":
|
|
2
|
+
const privateWireContract = { "permissionNotification": "x.ai/yolo_mode_changed", "sessionConfigMeta": "x.ai/sessionConfig", "sessionNotification": "x.ai/session_notification", "sessionUpdateNotification": "x.ai/session/update", "modelsUpdateNotification": "x.ai/models/update", "turnCompletedUpdate": "turn_completed", "sessionInfoRequest": "x.ai/session/info", "billingRequest": "x.ai/billing", "weeklyUsagePeriodType": "USAGE_PERIOD_TYPE_WEEKLY", "reasoningEffortMeta": "reasoningEffort", "autoPermissionMode": false, "planApprovalRequest": "x.ai/exit_plan_mode" };
|
|
3
3
|
const runtimeManifest = {
|
|
4
4
|
officialRuntime,
|
|
5
5
|
privateWireContract
|