@norman-else/dsh-claude 0.1.22 → 0.1.23
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 +19 -1
- package/lib/client.js +836 -51
- package/lib/client.js.map +1 -1
- package/lib/{command-bridge-C10-lz6A.mjs → command-bridge-Br25ODdm.mjs} +2 -2
- package/lib/{command-bridge-C10-lz6A.mjs.map → command-bridge-Br25ODdm.mjs.map} +1 -1
- package/lib/{events-BdDs9ebF.mjs → events-DhrAr5gh.mjs} +3 -2
- package/lib/events-DhrAr5gh.mjs.map +1 -0
- package/lib/index.mjs +483 -100
- package/lib/index.mjs.map +1 -1
- package/lib/{preset-installer-DMANIjwu.mjs → preset-installer-B_Cb0RG6.mjs} +2 -2
- package/lib/{preset-installer-DMANIjwu.mjs.map → preset-installer-B_Cb0RG6.mjs.map} +1 -1
- package/lib/preset-route.mjs +2 -2
- package/package.json +1 -1
- package/lib/events-BdDs9ebF.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ Preset cleanup removes only installer-managed content and refuses to delete user
|
|
|
74
74
|
- **Managed process lifecycle** — Keeps one live Claude process per active session, serializes turns, evicts idle processes, and handles Stop, cancellation, restart, and process-tree cleanup.
|
|
75
75
|
- **Redacted activity timeline** — Displays thinking summaries, tool calls and results, permission events, questions, status changes, usage, errors, and subagent activity without persisting credentials.
|
|
76
76
|
- **Background task tracking** — Shows running and completed Claude subagents or background tasks with task status, recent tools, and expandable activity.
|
|
77
|
-
- **Repository and worktree preparation** — Lets a user choose a branch before submitting, switch an eligible local branch, or create a dedicated Git worktree and DSH workspace while transferring the current draft and attachments.
|
|
77
|
+
- **Repository and worktree preparation** — Lets a user choose a branch before submitting, switch an eligible local branch, or create a dedicated Git worktree and DSH workspace while transferring the current draft and attachments, and removes a worktree's directory automatically once its workspace is deleted and the tree is clean.
|
|
78
78
|
- **Repository and pull request status** — Shows the current repository, branch, worktree state, changed-line counts, unpushed commits, GitHub pull request, checks, review state, merge state, and blocking Claude rate limits near the composer.
|
|
79
79
|
- **Diff viewer and review comments** — Provides an expandable or maximized branch diff, including file statistics and line-level review comments that are attached to the next Claude message.
|
|
80
80
|
- **Commit, push, and pull request actions** — Supports Commit, Commit & Push, Push, and draft pull request creation, with repository snapshot validation and optional Claude-generated commit messages.
|
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-B_Cb0RG6.mjs";
|
|
3
3
|
import { access } from "node:fs/promises";
|
|
4
4
|
import { delimiter, isAbsolute, join } from "node:path";
|
|
5
5
|
import { homedir } from "node:os";
|
package/lib/client.d.ts
CHANGED
|
@@ -43,6 +43,9 @@ declare const en: {
|
|
|
43
43
|
readonly outputStyle: "Output Style";
|
|
44
44
|
readonly worktreeBranchPrefix: "Worktree branch prefix";
|
|
45
45
|
readonly worktreeBranchPrefixEffect: "Prefix changes apply to subsequently generated Worktree branches. Explicit full branch names remain unchanged.";
|
|
46
|
+
readonly maxProcessesSetting: "Claude process limit";
|
|
47
|
+
readonly idleTimeoutSetting: "Idle timeout (minutes)";
|
|
48
|
+
readonly limitsSettingEffect: "The process limit applies when the next Claude process is admitted; the idle timeout applies after the next completed turn.";
|
|
46
49
|
readonly pluginUpdate: "Plugin updates";
|
|
47
50
|
readonly pluginUpdateBody: "Check npm for new releases. Only a uniquely identified npm installation can update in place; local development links are never replaced.";
|
|
48
51
|
readonly updateNotChecked: "Updates have not been checked yet.";
|
|
@@ -136,7 +139,6 @@ declare const en: {
|
|
|
136
139
|
readonly repositoryState_open: "Open";
|
|
137
140
|
readonly repositoryState_closed: "Closed";
|
|
138
141
|
readonly repositoryState_merged: "Merged";
|
|
139
|
-
readonly repositoryMergedInto: "Merged into {branch}";
|
|
140
142
|
readonly repositoryMergedAgo: "{age} ago";
|
|
141
143
|
readonly repositoryChecks: "Checks";
|
|
142
144
|
readonly repositoryChecks_passing: "Checks passing";
|
|
@@ -197,6 +199,22 @@ declare const en: {
|
|
|
197
199
|
readonly diffMerge_rebase: "Rebase and merge";
|
|
198
200
|
readonly diffMergeDescription: "Merge the pull request for this branch with the selected method.";
|
|
199
201
|
readonly diffMergeCompleted: "Merged PR #{number}";
|
|
202
|
+
readonly diffUpdateBranch: "Update branch…";
|
|
203
|
+
readonly repositoryUpdateBranch: "Update branch";
|
|
204
|
+
readonly diffUpdateBranchDescription: "Merge origin/{base} into the current branch and push; hand any conflicts to Claude.";
|
|
205
|
+
readonly diffUpdateBranchBehind: "{count} commit(s) behind origin/{base}";
|
|
206
|
+
readonly diffUpdateBranchCompleted: "Merged and pushed commit {commit}";
|
|
207
|
+
readonly diffUpdateBranchConflicts: "The merge left conflicts in these files:";
|
|
208
|
+
readonly diffUpdateBranchResolve: "Have Claude resolve the conflicts";
|
|
209
|
+
readonly repositoryChecksOpen: "Show failing checks";
|
|
210
|
+
readonly checksCardTitle: "Failing checks";
|
|
211
|
+
readonly checksCardLoading: "Loading check details…";
|
|
212
|
+
readonly checksCardEmpty: "No failure details available";
|
|
213
|
+
readonly checksCardFix: "Have Claude fix these";
|
|
214
|
+
readonly prCommentsButton: "GitHub comments ({count})";
|
|
215
|
+
readonly prCommentsSend: "Have Claude address the GitHub pull request comments";
|
|
216
|
+
readonly autoFixLabel: "Auto fix";
|
|
217
|
+
readonly autoFixTitle: "Watch this pull request for review comments and failing checks, hand them to Claude to fix and push until everything passes; uncheck to stop.";
|
|
200
218
|
readonly reviewCommentAdd: "Add line comment";
|
|
201
219
|
readonly reviewCommentPlaceholder: "Request changes";
|
|
202
220
|
readonly reviewCommentSubmit: "Comment";
|