patchcord 0.5.25 → 0.5.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.25",
3
+ "version": "0.5.26",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "author": "ppravdin",
6
6
  "license": "MIT",
@@ -28,7 +28,9 @@ mkdir -p "$STABLE_DIR"
28
28
  cp "$SRC_STATUSLINE" "$STABLE_STATUSLINE"
29
29
  chmod +x "$STABLE_STATUSLINE"
30
30
 
31
- NEW_CMD="bash \"$STABLE_STATUSLINE\"${EXTRA_ARGS}"
31
+ # Write $HOME literally (not expanded) so settings.json is portable
32
+ # across machines/users — Claude Code's shell expands it at runtime.
33
+ NEW_CMD="bash \"\$HOME/.claude/patchcord/statusline.sh\"${EXTRA_ARGS}"
32
34
 
33
35
  # Decide where to write
34
36
  USER_SETTINGS="$HOME/.claude/settings.json"