@norman-else/dsh-claude 0.1.44 → 0.1.46
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 +1 -1
- package/lib/bin.mjs +1 -1
- package/lib/client.d.ts +3 -1
- package/lib/client.js +603 -245
- package/lib/client.js.map +1 -1
- package/lib/index.mjs +144 -26
- package/lib/index.mjs.map +1 -1
- package/lib/{preset-installer-JUktnfwS.mjs → preset-installer-CuosP3sA.mjs} +2 -2
- package/lib/{preset-installer-JUktnfwS.mjs.map → preset-installer-CuosP3sA.mjs.map} +1 -1
- package/package.json +97 -95
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Claude Code remains responsible for its agent loop, tools, `CLAUDE.md`, Skills,
|
|
|
10
10
|
|
|
11
11
|
### Requirements
|
|
12
12
|
|
|
13
|
-
- DeepSeek Harness Desktop with compatible public plugin APIs. This package is currently developed against the DSH `0.1.
|
|
13
|
+
- DeepSeek Harness Desktop with compatible public plugin APIs. This package is currently developed against the DSH `0.1.2-rc.1` package line (DSH Desktop 2.0.5). Plugin 0.1.37 and later import symbols that do not exist on `0.1.1-rc.2`; a Host still on that line must pin `@norman-else/dsh-claude@0.1.36`.
|
|
14
14
|
- A local Claude Code installation that is already authenticated.
|
|
15
15
|
- Node.js 20 or later when installing from a source checkout.
|
|
16
16
|
|
package/lib/bin.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-
|
|
2
|
+
import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-CuosP3sA.mjs";
|
|
3
3
|
import { access } from "node:fs/promises";
|
|
4
4
|
import { delimiter, isAbsolute, join } from "node:path";
|
|
5
5
|
import { constants } from "node:fs";
|
package/lib/client.d.ts
CHANGED
|
@@ -231,7 +231,8 @@ declare const en: {
|
|
|
231
231
|
readonly promptSaveExists: "A prompt with that name already exists. Try another.";
|
|
232
232
|
readonly promptSaveFailed: "Could not save: {message}";
|
|
233
233
|
readonly presetHeaderHint: "The agent preset this session runs";
|
|
234
|
-
readonly
|
|
234
|
+
readonly diffRepository: "Repository";
|
|
235
|
+
readonly repositoryLinked: "Linked repository: changed by this session";
|
|
235
236
|
readonly diffFiles: "{count} modified file(s)";
|
|
236
237
|
readonly diffFilesShort: "{count} files";
|
|
237
238
|
readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
|
|
@@ -282,6 +283,7 @@ declare const en: {
|
|
|
282
283
|
readonly diffMerge_squash: "Squash and merge";
|
|
283
284
|
readonly diffMerge_rebase: "Rebase and merge";
|
|
284
285
|
readonly diffMergeDescription: "Merge the pull request for this branch with the selected method.";
|
|
286
|
+
readonly diffMergeAdmin: "Merge as administrator (bypass branch protection)";
|
|
285
287
|
readonly diffMergeCompleted: "Merged PR #{number}";
|
|
286
288
|
readonly diffUpdateBranch: "Update branch…";
|
|
287
289
|
readonly repositoryUpdateBranch: "Update branch";
|