@norman-else/dsh-claude 0.1.46 → 0.1.48
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 -2
- package/lib/bin.mjs +1 -1
- package/lib/client.d.ts +4 -14
- package/lib/client.js +702 -1198
- package/lib/client.js.map +1 -1
- package/lib/{events-oovRTmX7.mjs → events-B498uofA.mjs} +2 -3
- package/lib/events-B498uofA.mjs.map +1 -0
- package/lib/index.d.mts +0 -1
- package/lib/index.mjs +454 -274
- package/lib/index.mjs.map +1 -1
- package/lib/{presenters-BVWj7u0a.mjs → presenters-CRFcjLSC.mjs} +2 -2
- package/lib/{presenters-BVWj7u0a.mjs.map → presenters-CRFcjLSC.mjs.map} +1 -1
- package/lib/{preset-installer-CuosP3sA.mjs → preset-installer-C4TTNV9L.mjs} +2 -2
- package/lib/{preset-installer-CuosP3sA.mjs.map → preset-installer-C4TTNV9L.mjs.map} +1 -1
- package/lib/preset-route.mjs +2 -2
- package/package.json +121 -96
- package/lib/events-oovRTmX7.mjs.map +0 -1
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.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-
|
|
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,11 +191,10 @@ 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";
|
|
197
|
-
readonly planMaximize: "Maximize plan panel";
|
|
198
|
-
readonly planRestore: "Restore plan panel";
|
|
199
198
|
readonly planNth: "{index} / {total}";
|
|
200
199
|
readonly planHistory: "Plans in this session";
|
|
201
200
|
readonly planNotePlaceholder: "What should change? Enter files a note, ⌘/Ctrl+Enter sends";
|
|
@@ -213,9 +212,6 @@ declare const en: {
|
|
|
213
212
|
readonly planEmpty: "This session has no plan to read yet.";
|
|
214
213
|
readonly planPendingHint: "Approve or reject this plan in the DSH approval dialog.";
|
|
215
214
|
readonly diffClose: "Close diff panel";
|
|
216
|
-
readonly sessionMenu: "Session menu";
|
|
217
|
-
readonly sessionMenuOpenIn: "Open in";
|
|
218
|
-
readonly sessionMenuOpenFailed: "Could not open: {message}";
|
|
219
215
|
readonly promptSource: "Prompts";
|
|
220
216
|
readonly promptSave: "Save as a prompt";
|
|
221
217
|
readonly promptSaveName: "Name";
|
|
@@ -233,11 +229,12 @@ declare const en: {
|
|
|
233
229
|
readonly presetHeaderHint: "The agent preset this session runs";
|
|
234
230
|
readonly diffRepository: "Repository";
|
|
235
231
|
readonly repositoryLinked: "Linked repository: changed by this session";
|
|
232
|
+
readonly linkedRepositoryPrompt: "The following concerns the linked repository at {root} (branch {branch}), not this session's own checkout.";
|
|
236
233
|
readonly diffFiles: "{count} modified file(s)";
|
|
237
234
|
readonly diffFilesShort: "{count} files";
|
|
238
235
|
readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
|
|
239
236
|
readonly diffEmpty: "No tracked file changes to display";
|
|
240
|
-
readonly
|
|
237
|
+
readonly diffElided: "Skipped {count} oversized file(s): {files}";
|
|
241
238
|
readonly diffCommentPrevious: "Previous comment";
|
|
242
239
|
readonly diffCommentNext: "Next comment";
|
|
243
240
|
readonly diffCommentPosition: "Comment {index} of {total}";
|
|
@@ -247,7 +244,6 @@ declare const en: {
|
|
|
247
244
|
readonly diffCardFiles: "{count} files";
|
|
248
245
|
readonly diffExpandAll: "Expand all files";
|
|
249
246
|
readonly diffCollapseAll: "Collapse all files";
|
|
250
|
-
readonly diffRestore: "Restore diff panel";
|
|
251
247
|
readonly diffCommit: "Commit";
|
|
252
248
|
readonly diffCommitMenu: "Open commit actions";
|
|
253
249
|
readonly diffCommitPush: "Commit & Push…";
|
|
@@ -360,6 +356,7 @@ declare const en: {
|
|
|
360
356
|
readonly cleanupTitle: "Clean up merged branch";
|
|
361
357
|
readonly cleanupDescription: "Remove the worktree and local branch, then archive the workspace sessions and delete the workspace; a plain checkout switches back to the base branch and deletes the merged branch.";
|
|
362
358
|
readonly cleanupCompleted: "Cleaned up {branch}";
|
|
359
|
+
readonly cleanupDescriptionUnmerged: "This worktree has no pull request. Remove the worktree and local branch, then archive the workspace sessions and delete the workspace; refused while the branch holds commits that are on no remote.";
|
|
363
360
|
readonly overviewOpen: "Open the Claude session board";
|
|
364
361
|
readonly overviewTitle: "Session board";
|
|
365
362
|
readonly overviewBody: "Run state, branch, and pull request across Claude sessions";
|
|
@@ -447,15 +444,8 @@ declare const en: {
|
|
|
447
444
|
type ClaudeCodeSettingsKey = keyof typeof en;
|
|
448
445
|
//#endregion
|
|
449
446
|
//#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
447
|
declare module '@deepseek-ai/dsh-client-ui-slots' {
|
|
454
448
|
interface SlotMap {
|
|
455
|
-
details: {
|
|
456
|
-
kind: 'single';
|
|
457
|
-
scope: 'session';
|
|
458
|
-
};
|
|
459
449
|
'shell.overlay': {
|
|
460
450
|
kind: 'list';
|
|
461
451
|
scope: 'root';
|