@norman-else/dsh-claude 0.1.32 → 0.1.33
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/INSTALL.md +1 -1
- package/README.md +1 -1
- package/lib/bin.mjs +1 -1
- package/lib/client.d.ts +25 -2
- package/lib/client.js +1299 -306
- package/lib/client.js.map +1 -1
- package/lib/{command-bridge-tqsu15hR.mjs → command-bridge-DXI6nWhB.mjs} +2 -2
- package/lib/{command-bridge-tqsu15hR.mjs.map → command-bridge-DXI6nWhB.mjs.map} +1 -1
- package/lib/{events-CSDcXsWE.mjs → events-DeSV0S1-.mjs} +3 -2
- package/lib/events-DeSV0S1-.mjs.map +1 -0
- package/lib/index.mjs +415 -101
- package/lib/index.mjs.map +1 -1
- package/lib/{preset-installer-CVdbU87E.mjs → preset-installer-DbmlhBXI.mjs} +9 -11
- package/lib/preset-installer-DbmlhBXI.mjs.map +1 -0
- package/lib/preset-route.mjs +2 -2
- package/package.json +188 -184
- package/lib/events-CSDcXsWE.mjs.map +0 -1
- package/lib/preset-installer-CVdbU87E.mjs.map +0 -1
package/INSTALL.md
CHANGED
|
@@ -16,7 +16,7 @@ Stop if Doctor cannot find an authenticated local Claude Code installation. Do n
|
|
|
16
16
|
|
|
17
17
|
## 2. Link the bundle into the current Web profile
|
|
18
18
|
|
|
19
|
-
The bundle
|
|
19
|
+
The bundle keeps a protected compatibility preset at `$DSH_HOME/.agent-presets/claude`, because DSH Desktop 2.0.4 does not retain third-party preset roots from bundle patches. Its route uses the active profile package source to avoid duplicate client-module Loaders. User-modified preset files are preserved.
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
22
|
dsh plugin --profile web add "link:$(pwd)"
|
package/README.md
CHANGED
|
@@ -79,4 +79,4 @@ Preset cleanup removes only installer-managed content and refuses to delete user
|
|
|
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.
|
|
81
81
|
- **Claude Code settings and Doctor** — Adds a Settings panel for runtime diagnostics, supported Claude settings, worktree branch prefix, process limits, authentication and handshake status, and safe npm update checks.
|
|
82
|
-
- **Managed preset compatibility** — Installs
|
|
82
|
+
- **Managed preset compatibility** — Installs a guarded Claude preset whose route reuses the active profile package source, preserving discovery on DSH Desktop 2.0.4 without duplicate client-module Loaders or overwriting user changes.
|
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-DbmlhBXI.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
|
@@ -18,6 +18,9 @@ declare const en: {
|
|
|
18
18
|
readonly toolInput: "Input";
|
|
19
19
|
readonly toolOutput: "Output";
|
|
20
20
|
readonly toolError: "Error";
|
|
21
|
+
readonly markdownCopy: "Copy";
|
|
22
|
+
readonly markdownCopied: "Copied";
|
|
23
|
+
readonly markdownFootnotes: "Footnotes";
|
|
21
24
|
readonly tokens: "{count} tokens";
|
|
22
25
|
readonly doctor: "Run Doctor";
|
|
23
26
|
readonly refreshing: "Running Doctor…";
|
|
@@ -190,6 +193,12 @@ declare const en: {
|
|
|
190
193
|
readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
|
|
191
194
|
readonly diffEmpty: "No tracked file changes to display";
|
|
192
195
|
readonly diffMaximize: "Maximize diff panel";
|
|
196
|
+
readonly diffCommentPrevious: "Previous comment";
|
|
197
|
+
readonly diffCommentNext: "Next comment";
|
|
198
|
+
readonly diffCommentPosition: "Comment {index} of {total}";
|
|
199
|
+
readonly diffCommentCounter: "{index}/{total}";
|
|
200
|
+
readonly diffExpandAll: "Expand all files";
|
|
201
|
+
readonly diffCollapseAll: "Collapse all files";
|
|
193
202
|
readonly diffRestore: "Restore diff panel";
|
|
194
203
|
readonly diffCommit: "Commit";
|
|
195
204
|
readonly diffCommitMenu: "Open commit actions";
|
|
@@ -200,7 +209,7 @@ declare const en: {
|
|
|
200
209
|
readonly diffPushDescription: "Push local commits to the remote branch.";
|
|
201
210
|
readonly diffPushAhead: "{count} unpushed commit(s)";
|
|
202
211
|
readonly diffPushCompleted: "Pushed commit {commit}";
|
|
203
|
-
readonly diffGeneratingMessage: "
|
|
212
|
+
readonly diffGeneratingMessage: "Suggesting a commit message. It only fills the fields you leave empty.";
|
|
204
213
|
readonly diffActionFailed: "Repository action failed.";
|
|
205
214
|
readonly diffIncludeUnstaged: "Include unstaged and untracked changes";
|
|
206
215
|
readonly diffCommitMessage: "Commit message";
|
|
@@ -218,8 +227,8 @@ declare const en: {
|
|
|
218
227
|
readonly diffSubmitting: "Working…";
|
|
219
228
|
readonly diffDone: "Done";
|
|
220
229
|
readonly diffCommitCompleted: "Created commit {commit}";
|
|
230
|
+
readonly diffPrCompleted: "Created the pull request — open it from the repository bar.";
|
|
221
231
|
readonly diffCommitPreserved: "Local commit {commit} was preserved.";
|
|
222
|
-
readonly diffOpenPr: "Open pull request";
|
|
223
232
|
readonly diffMergePr: "Merge";
|
|
224
233
|
readonly repositoryMergeMenu: "Open merge options";
|
|
225
234
|
readonly diffMerge_merge: "Create a merge commit";
|
|
@@ -314,6 +323,20 @@ declare const en: {
|
|
|
314
323
|
readonly reviewCommentSubmit: "Comment";
|
|
315
324
|
readonly reviewCommentCancel: "Cancel";
|
|
316
325
|
readonly reviewCommentRemove: "Remove comment";
|
|
326
|
+
readonly reviewThreadReply: "Reply";
|
|
327
|
+
readonly reviewThreadBot: "Bot";
|
|
328
|
+
readonly reviewThreadAgo: "{age} ago";
|
|
329
|
+
readonly reviewThreadReplyTo: "Reply to @{author}";
|
|
330
|
+
readonly reviewThreadOpenOnGitHub: "Open on GitHub";
|
|
331
|
+
readonly reviewThreadSend: "Send reply";
|
|
332
|
+
readonly reviewThreadResolve: "Resolve";
|
|
333
|
+
readonly reviewThreadUnresolve: "Unresolve";
|
|
334
|
+
readonly reviewThreadResolved: "Resolved";
|
|
335
|
+
readonly reviewThreadOutdated: "Outdated";
|
|
336
|
+
readonly reviewThreadReplyPlaceholder: "Reply to this comment; type @ to mention someone";
|
|
337
|
+
readonly reviewThreadMention: "Mention a repository member";
|
|
338
|
+
readonly reviewThreadReplyFailed: "The reply could not be posted.";
|
|
339
|
+
readonly reviewThreadResolveFailed: "The thread could not be updated.";
|
|
317
340
|
readonly reviewCommentFailed: "The comment could not be saved.";
|
|
318
341
|
readonly reviewCommentsClear: "Clear all comments";
|
|
319
342
|
readonly reviewCommentsSend: "Send comments";
|