@norman-else/dsh-claude 0.1.47 → 0.1.49
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/lib/bin.mjs +2 -2
- package/lib/client.d.ts +5 -4
- package/lib/client.js +454 -307
- package/lib/client.js.map +1 -1
- package/lib/index.mjs +357 -57
- package/lib/index.mjs.map +1 -1
- package/lib/{preset-installer-C4TTNV9L.mjs → preset-installer-Cj637ucf.mjs} +2 -2
- package/lib/{preset-installer-C4TTNV9L.mjs.map → preset-installer-Cj637ucf.mjs.map} +1 -1
- package/package.json +1 -1
package/lib/bin.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-
|
|
3
|
-
import { access } from "node:fs/promises";
|
|
2
|
+
import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-Cj637ucf.mjs";
|
|
4
3
|
import { delimiter, isAbsolute, join } from "node:path";
|
|
4
|
+
import { access } from "node:fs/promises";
|
|
5
5
|
import { constants } from "node:fs";
|
|
6
6
|
import { homedir } from "node:os";
|
|
7
7
|
import { scrubbedParentEnv } from "@deepseek-ai/dsh-subprocess";
|
package/lib/client.d.ts
CHANGED
|
@@ -195,8 +195,6 @@ declare const en: {
|
|
|
195
195
|
readonly planPanelTitle: "Plan";
|
|
196
196
|
readonly planClose: "Close plan panel";
|
|
197
197
|
readonly planOpen: "View plan";
|
|
198
|
-
readonly planMaximize: "Maximize plan panel";
|
|
199
|
-
readonly planRestore: "Restore plan panel";
|
|
200
198
|
readonly planNth: "{index} / {total}";
|
|
201
199
|
readonly planHistory: "Plans in this session";
|
|
202
200
|
readonly planNotePlaceholder: "What should change? Enter files a note, ⌘/Ctrl+Enter sends";
|
|
@@ -231,12 +229,15 @@ declare const en: {
|
|
|
231
229
|
readonly presetHeaderHint: "The agent preset this session runs";
|
|
232
230
|
readonly diffRepository: "Repository";
|
|
233
231
|
readonly repositoryLinked: "Linked repository: changed by this session";
|
|
232
|
+
readonly linkedMore: "{count} more linked repositories";
|
|
233
|
+
readonly linkedShowAll: "Show all";
|
|
234
|
+
readonly linkedCollapse: "Collapse linked repositories";
|
|
235
|
+
readonly linkedRepositoryPrompt: "The following concerns the linked repository at {root} (branch {branch}), not this session's own checkout.";
|
|
234
236
|
readonly diffFiles: "{count} modified file(s)";
|
|
235
237
|
readonly diffFilesShort: "{count} files";
|
|
236
238
|
readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
|
|
237
239
|
readonly diffEmpty: "No tracked file changes to display";
|
|
238
240
|
readonly diffElided: "Skipped {count} oversized file(s): {files}";
|
|
239
|
-
readonly diffMaximize: "Maximize diff panel";
|
|
240
241
|
readonly diffCommentPrevious: "Previous comment";
|
|
241
242
|
readonly diffCommentNext: "Next comment";
|
|
242
243
|
readonly diffCommentPosition: "Comment {index} of {total}";
|
|
@@ -246,7 +247,6 @@ declare const en: {
|
|
|
246
247
|
readonly diffCardFiles: "{count} files";
|
|
247
248
|
readonly diffExpandAll: "Expand all files";
|
|
248
249
|
readonly diffCollapseAll: "Collapse all files";
|
|
249
|
-
readonly diffRestore: "Restore diff panel";
|
|
250
250
|
readonly diffCommit: "Commit";
|
|
251
251
|
readonly diffCommitMenu: "Open commit actions";
|
|
252
252
|
readonly diffCommitPush: "Commit & Push…";
|
|
@@ -359,6 +359,7 @@ declare const en: {
|
|
|
359
359
|
readonly cleanupTitle: "Clean up merged branch";
|
|
360
360
|
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.";
|
|
361
361
|
readonly cleanupCompleted: "Cleaned up {branch}";
|
|
362
|
+
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.";
|
|
362
363
|
readonly overviewOpen: "Open the Claude session board";
|
|
363
364
|
readonly overviewTitle: "Session board";
|
|
364
365
|
readonly overviewBody: "Run state, branch, and pull request across Claude sessions";
|