@norman-else/dsh-claude 0.1.46 → 0.1.47

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 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.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`.
13
+ - DeepSeek Harness Desktop with compatible public plugin APIs. This package is currently developed against the DSH `0.1.5-rc.1` package line (DSH Desktop 2.0.7). 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
 
@@ -105,7 +105,6 @@ Preset cleanup removes only installer-managed content and refuses to delete user
105
105
  - **Pull request feedback handoff** — Expands failing check details and GitHub pull request comments and hands either of them to Claude as a fix request.
106
106
  - **Auto fix** — Watches an open pull request for new review comments and failing checks, hands each new batch to Claude to fix, commit, and push, and keeps going until everything passes or the watcher is switched off.
107
107
  - **Merged branch cleanup** — Removes the worktree and local branch, archives the workspace's sessions, and deletes the workspace; a plain checkout instead returns to the base branch and deletes the merged branch.
108
- - **Open in an editor** — Opens the session's working directory in Cursor or IntelliJ IDEA from the session menu, trying each platform's launchers in turn and refusing paths the shell would re-interpret.
109
108
 
110
109
  ### 3.3 Diagnostics, settings, and updates
111
110
 
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-CuosP3sA.mjs";
2
+ import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-C4TTNV9L.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
@@ -191,6 +191,7 @@ declare const en: {
191
191
  readonly yes: "Yes";
192
192
  readonly no: "No";
193
193
  readonly diffOpen: "View branch changes";
194
+ readonly diffTabTitle: "Branch changes";
194
195
  readonly planPanelTitle: "Plan";
195
196
  readonly planClose: "Close plan panel";
196
197
  readonly planOpen: "View plan";
@@ -213,9 +214,6 @@ declare const en: {
213
214
  readonly planEmpty: "This session has no plan to read yet.";
214
215
  readonly planPendingHint: "Approve or reject this plan in the DSH approval dialog.";
215
216
  readonly diffClose: "Close diff panel";
216
- readonly sessionMenu: "Session menu";
217
- readonly sessionMenuOpenIn: "Open in";
218
- readonly sessionMenuOpenFailed: "Could not open: {message}";
219
217
  readonly promptSource: "Prompts";
220
218
  readonly promptSave: "Save as a prompt";
221
219
  readonly promptSaveName: "Name";
@@ -237,6 +235,7 @@ declare const en: {
237
235
  readonly diffFilesShort: "{count} files";
238
236
  readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
239
237
  readonly diffEmpty: "No tracked file changes to display";
238
+ readonly diffElided: "Skipped {count} oversized file(s): {files}";
240
239
  readonly diffMaximize: "Maximize diff panel";
241
240
  readonly diffCommentPrevious: "Previous comment";
242
241
  readonly diffCommentNext: "Next comment";
@@ -447,15 +446,8 @@ declare const en: {
447
446
  type ClaudeCodeSettingsKey = keyof typeof en;
448
447
  //#endregion
449
448
  //#region src/client/index.d.ts
450
- /** The right-side details column slot declared by dsh-client-ui-layout
451
- * (kind 'single', scope 'session'). Merged locally because this package does
452
- * not depend on the layout package's client types. */
453
449
  declare module '@deepseek-ai/dsh-client-ui-slots' {
454
450
  interface SlotMap {
455
- details: {
456
- kind: 'single';
457
- scope: 'session';
458
- };
459
451
  'shell.overlay': {
460
452
  kind: 'list';
461
453
  scope: 'root';