@kendoo.agentdesk/agentdesk 0.18.5 → 0.18.6
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/CHANGELOG.md +5 -0
- package/cli/session-sandbox.mjs +7 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,11 @@ All user-facing changes to AgentDesk. Each entry is tagged:
|
|
|
8
8
|
|
|
9
9
|
Internal refactors, infrastructure changes, and architectural notes are not listed here.
|
|
10
10
|
|
|
11
|
+
## [0.18.6] — 2026-04-18
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- `[CLI]` Scratch HOME now also symlinks `~/.claude.json` (Claude Code's auth/config file), not just the `~/.claude/` directory. Sessions were starting Claude successfully but failing to find its config file at the redirected HOME root.
|
|
15
|
+
|
|
11
16
|
## [0.18.5] — 2026-04-18
|
|
12
17
|
|
|
13
18
|
### Fixed
|
package/cli/session-sandbox.mjs
CHANGED
|
@@ -17,11 +17,14 @@ import { randomUUID } from "crypto";
|
|
|
17
17
|
// Tools whose own state must follow the user into a scratch HOME. Without
|
|
18
18
|
// these symlinks the tool looks for its auth/config at <scratch>/... and
|
|
19
19
|
// fails because we redirected HOME.
|
|
20
|
-
// ~/.claude — Claude Code's auth
|
|
21
|
-
// ~/.
|
|
22
|
-
// ~/.
|
|
23
|
-
// ~/.
|
|
20
|
+
// ~/.claude.json — Claude Code's auth/config file
|
|
21
|
+
// ~/.claude — Claude Code's state dir (backups, caches)
|
|
22
|
+
// ~/.npm — npm cache (agents run npm during sessions)
|
|
23
|
+
// ~/.cache — generic XDG cache
|
|
24
|
+
// ~/.local — generic XDG state
|
|
25
|
+
// Works for both files and directories — symlinkSync handles both.
|
|
24
26
|
const HOME_PASSTHROUGH = [
|
|
27
|
+
".claude.json",
|
|
25
28
|
".claude",
|
|
26
29
|
".npm",
|
|
27
30
|
".cache",
|