@puddle-code/cli 0.0.42 → 0.0.46
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 -7
- package/README.md +15 -3
- package/dist/index.js +1338 -870
- package/dist/install.sh +19 -3
- package/dist/public/assets/Dashboard-CGX5SwjL.js +1 -0
- package/dist/public/assets/EditorTabClose-GbJw01R2.js +1 -0
- package/dist/public/assets/LazyTerminal-BrGyjHpN.js +2 -0
- package/dist/public/assets/{ModelRefcount-DOfCr-GB.js → ModelRefcount-BB4HvEjT.js} +1 -1
- package/dist/public/assets/PaneEditorBody-CScvnDsN.js +515 -0
- package/dist/public/assets/SettingsDialog-CW-QjT_1.js +1 -0
- package/dist/public/assets/Terminal-Bx7CnodU.js +142 -0
- package/dist/public/assets/Workspace-DT1HAB03.js +7 -0
- package/dist/public/assets/{buffer-store-lRf0Css5.js → buffer-store-Du5yBe6d.js} +3 -3
- package/dist/public/assets/chevron-down-59O6CgEo.js +1 -0
- package/dist/public/assets/context-menu-Ddj7ho3n.js +1 -0
- package/dist/public/assets/{cssMode-Dc1ahC7j.js → cssMode-Bl5pBA0Y.js} +1 -1
- package/dist/public/assets/dialog-DjL0qoAv.js +41 -0
- package/dist/public/assets/dist-DDFe8e3m.js +1 -0
- package/dist/public/assets/editor-context-D8zZKoyt.js +1 -0
- package/dist/public/assets/{editor-sync-D8bMPmSR.js → editor-sync-Cm-mKgd9.js} +1 -1
- package/dist/public/assets/file-links-Co-4c1Cz.js +1 -0
- package/dist/public/assets/hotkeys-C1l8zghv.js +73 -0
- package/dist/public/assets/{htmlMode-DAayVS36.js → htmlMode-C09I1s01.js} +1 -1
- package/dist/public/assets/index-DDdcyDxs.css +2 -0
- package/dist/public/assets/index-ozoDGVJ_.js +10 -0
- package/dist/public/assets/{jsonMode-B7Y1ZN6D.js → jsonMode-DJi0jtkR.js} +1 -1
- package/dist/public/assets/session-seed-Dd9snd73.js +1 -0
- package/dist/public/assets/{tsMode-CBG_jsQ8.js → tsMode-DyI21oAt.js} +1 -1
- package/dist/public/assets/use-find-controls-aC7Avd1r.js +1 -0
- package/dist/public/assets/x-BJOrp_m5.js +1 -0
- package/dist/public/index.html +6 -8
- package/package.json +1 -1
- package/dist/public/assets/Dashboard-BTrJV1ZL.js +0 -1
- package/dist/public/assets/EditorTabClose-DQ6zIRnK.js +0 -1
- package/dist/public/assets/LazyTerminal-BaxoOzC-.js +0 -2
- package/dist/public/assets/PaneEditorBody-S9haVBER.js +0 -355
- package/dist/public/assets/SettingsDialog-C4zj9xpa.js +0 -1
- package/dist/public/assets/Terminal-7PIU9bCC.js +0 -117
- package/dist/public/assets/Workspace-lnshKyvd.js +0 -7
- package/dist/public/assets/context-menu-BvognaUc.js +0 -1
- package/dist/public/assets/createLucideIcon-DyMAgLa3.js +0 -1
- package/dist/public/assets/dialog-B43iKmfK.js +0 -41
- package/dist/public/assets/dist-i-QevsUb.js +0 -1
- package/dist/public/assets/editor-context-A7YnYVrw.js +0 -1
- package/dist/public/assets/hotkeys-CA5Pxll4.js +0 -73
- package/dist/public/assets/index-DpDy4sdB.js +0 -10
- package/dist/public/assets/index-fOB6mfj_.css +0 -2
- package/dist/public/assets/jsx-runtime-ffCh33zF.js +0 -1
- package/dist/public/assets/session-seed-DSCaVN9j.js +0 -1
- package/dist/public/assets/ssh-mode-Cy629wWo.js +0 -1
- package/dist/public/assets/utils-B6KiDbIe.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,13 +7,11 @@ Past releases: see docs/changelogs/.
|
|
|
7
7
|
|
|
8
8
|
# Changelog
|
|
9
9
|
|
|
10
|
-
## [0.0.
|
|
11
|
-
|
|
12
|
-
### Added
|
|
13
|
-
|
|
14
|
-
- Add locked Markdown and HTML preview slots that follow the active renderable tab and its proportional vertical scroll position.
|
|
10
|
+
## [0.0.46] — 2026-08-13
|
|
15
11
|
|
|
16
12
|
### Fixed
|
|
17
13
|
|
|
18
|
-
-
|
|
19
|
-
-
|
|
14
|
+
- Build and preflight Linux release tarballs with a C++20 toolchain while preserving the glibc 2.28 host floor, and exercise both release architectures before tagging.
|
|
15
|
+
- Open the command palette and dispatch other app shortcuts when Monaco has focus instead of letting the editor consume their key chords.
|
|
16
|
+
- Release the directory pin when returning from a parent-directory or command-palette browse to the worktree.
|
|
17
|
+
- Keep the terminal metadata rows compact with equal outer spacing and one matching gap between environment and port details.
|
package/README.md
CHANGED
|
@@ -44,7 +44,10 @@ puddle launch
|
|
|
44
44
|
|
|
45
45
|
This installs the Puddle daemon under `~/.puddle` and serves the GUI at `http://localhost:7433`.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
Ctrl-C normally closes only the GUI while agent sessions keep running. On an SSH host that reaps
|
|
48
|
+
detached processes, Puddle instead keeps the daemon attached to the cockpit; closing it interrupts
|
|
49
|
+
live processes. The next `puddle launch` restarts the daemon from the host's persistent state and,
|
|
50
|
+
when auto-resume is enabled (the default), restores the interrupted sessions.
|
|
48
51
|
|
|
49
52
|
**Daemon-only installs:**
|
|
50
53
|
|
|
@@ -78,7 +81,10 @@ xattr -dr com.apple.quarantine /Applications/Puddle.app
|
|
|
78
81
|
|
|
79
82
|
Building from source avoids the dance entirely (locally built apps are never quarantined): `pnpm build && pnpm --filter @puddle/desktop dist`.
|
|
80
83
|
|
|
81
|
-
**Host requirements**: Linux
|
|
84
|
+
**Host requirements**: Linux with glibc 2.28+ (Ubuntu 20.04+, Debian 11+, RHEL/Rocky 8+;
|
|
85
|
+
Alpine is not supported) or macOS, with `git` and `curl`, plus whichever agent CLIs you want on
|
|
86
|
+
`PATH`. The client side works from any OS with a browser and `ssh` (Windows works, with repeated
|
|
87
|
+
auth prompts unless you use a key).
|
|
82
88
|
|
|
83
89
|
## How it works
|
|
84
90
|
|
|
@@ -117,7 +123,13 @@ node packages/cli/dist/index.js start --tarball dist-release/puddled-v*.tar.gz -
|
|
|
117
123
|
|
|
118
124
|
`--tarball` sets the install _source_ only, and is consulted **only when the CLI actually installs the daemon** — when none is running, the daemon is stopped, or a protocol-major upgrade fires. If a compatible daemon (same protocol major) is already up, `start` just serves the cockpit against it and **the tarball is ignored** (even a newer app version — nothing compares app versions). So to load a fresh dev build over a running daemon you must **stop it first** (see _Kill_ below), then re-run `start --tarball …`. `--foreground` keeps the cockpit attached (`connect <user>@<host> --tarball …` is the remote form). Both clients share one `~/.puddle` daemon and cockpit registry, so `puddle list` / `puddle kill` see either — don't point both at the same host at once. (Never launch the daemon from inside a coding-agent shell: it inherits the agent's env and breaks conversation resume — use a plain terminal.)
|
|
119
125
|
|
|
120
|
-
**Kill.** `puddle kill --all` (or Ctrl-C in a `--foreground` run) stops the local cockpit
|
|
126
|
+
**Kill.** `puddle kill --all` (or Ctrl-C in a `--foreground` run) normally stops the local cockpit
|
|
127
|
+
UI only; a supervised daemon and its sessions keep running. When launch reported that it is keeping
|
|
128
|
+
the daemon attached over SSH, killing that cockpit cleanly interrupts its processes instead; the
|
|
129
|
+
next launch reconciles them from `~/.puddle` and auto-resumes them when that host setting is enabled.
|
|
130
|
+
A supervised daemon is auto-restarting
|
|
131
|
+
(launchd `KeepAlive`, systemd `Restart=always`), so a plain `kill <pid>` bounces straight back — stop
|
|
132
|
+
it through its supervisor:
|
|
121
133
|
|
|
122
134
|
```sh
|
|
123
135
|
launchctl bootout gui/$(id -u)/dev.puddle.puddled # macOS (launchd)
|