@puddle-code/cli 0.2.12 → 0.2.13

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 CHANGED
@@ -4,9 +4,8 @@ Archived release changelog. Governance lives in CLAUDE.md §"Changelog disciplin
4
4
 
5
5
  # Changelog
6
6
 
7
- ## [0.2.12] — 2026-09-26
7
+ ## [0.2.13] — 2026-09-26
8
8
 
9
9
  ### Fixed
10
10
 
11
- - Keep terminal file paths clickable across indented line breaks and padded TUI wraps, preserving line/column targets and wide-character coordinates.
12
- - Copy mouse-selected Codex text over SSH on the first Ctrl+C or Command+C by delivering the delayed OSC 52 reply to the client clipboard; support desktop Copy and keep highlighting/replay from copying automatically.
11
+ - Forward Codex selections to the viewing browser even when copying to the daemon host's native clipboard succeeds; apply the compatibility setting on agent launch and resume.
package/dist/index.js CHANGED
@@ -21553,7 +21553,7 @@ import { readFileSync as readFileSync4 } from "node:fs";
21553
21553
  import { dirname as dirname4, join as join5 } from "node:path";
21554
21554
  import { fileURLToPath as fileURLToPath2 } from "node:url";
21555
21555
  function cliVersion() {
21556
- if (true) return "0.2.12";
21556
+ if (true) return "0.2.13";
21557
21557
  const here = dirname4(fileURLToPath2(import.meta.url));
21558
21558
  for (const candidate of [
21559
21559
  join5(here, "..", "..", "package.json"),
@@ -21938,7 +21938,8 @@ var RELEASE_PROTOCOLS = {
21938
21938
  "0.2.9": { major: 22, minor: 0 },
21939
21939
  "0.2.10": { major: 22, minor: 0 },
21940
21940
  "0.2.11": { major: 22, minor: 0 },
21941
- "0.2.12": { major: 22, minor: 0 }
21941
+ "0.2.12": { major: 22, minor: 0 },
21942
+ "0.2.13": { major: 22, minor: 0 }
21942
21943
  };
21943
21944
  function validProtocol(value) {
21944
21945
  if (typeof value !== "object" || value === null) return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@puddle-code/cli",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "puddle — self-hosted orchestrator for CLI coding agents: serves the cockpit UI and connects it to local or SSH hosts.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/PerceptronV/puddle-code#readme",