@oh-my-pi/pi-coding-agent 14.5.10 → 14.5.12

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
@@ -2,6 +2,48 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [14.5.12] - 2026-04-30
6
+
7
+ ### Breaking Changes
8
+
9
+ - Removed the legacy browser action verbs (`goto`, `observe`, `click`, `type`, `fill`, `press`, `scroll`, `drag`, `wait_for_selector`, `extract_readable`, and `screenshot`) in favor of invoking those workflows through `run`
10
+
11
+ ### Added
12
+
13
+ - Added a `browser` tool `open`/`run`/`close` flow with a `run` action that executes async JavaScript and provides `page`, `browser`, `tab`, `display`, `assert`, and `wait` in scope
14
+ - Added named tabs on `open` with default name `main` so browser state can be reused across `run` calls and subagents
15
+ - Added support for `app.path` and `app.cdp_url` on `open` to launch/connect to CDP-capable desktop apps
16
+
17
+ ### Changed
18
+
19
+ - Changed browser tool output rendering to display `run` calls as JavaScript code cells with status and output previews while showing `open`/`close` as compact status lines
20
+ - Changed `open` to open or reuse named tabs and `close` to support `all: true` and `kill`-based process termination behavior
21
+ - Changed app attachment behavior to reuse an existing CDP endpoint when available and avoid unnecessary respawn of matching app processes
22
+ - Changed tab closing so closing a tab no longer implicitly affects unnamed sessions when multiple tabs are used
23
+ - Changed browser export rendering to label outputs under the `browser` tool and include app metadata badges
24
+
25
+ ### Fixed
26
+
27
+ - Fixed Electron/CDP attachment target selection to skip helper windows and pick the most likely user-visible page target
28
+ - Fixed connection startup by waiting for the CDP endpoint and surfacing a timeout error when it does not become available
29
+ - Fixed plan mode to auto-redirect `write` and `edit` calls targeting a bare `PLAN.md` (or any same-basename cwd-relative path) to the canonical `local://PLAN.md` plan artifact instead of rejecting them
30
+
31
+ ## [14.5.11] - 2026-04-30
32
+ ### Breaking Changes
33
+
34
+ - `todo_write`: renamed `replace` op to `init` and reshaped its input to `list: [{phase: string, items: string[]}]`. Tasks no longer accept a `status` field; all start `pending` and the first auto-promotes to `in_progress`. The `append` op's `items` is now `string[]` (was `{id, label}[]`)
35
+ - `todo_write`: removed the synthetic `task-N` / `phase-N` ids — task identity is now its `content` and phase identity is its `name`. The `task` field on `start`/`done`/`drop`/`note` and the `phase` field on `done`/`drop`/`rm`/`append` take those values directly
36
+ - `todo_write`: phase names no longer accept a numeric/roman prefix (`I.`, `1.`, `Phase 1:`, …). The renderer numbers phases visually (Ⅰ. Ⅱ. Ⅲ. …) and the model-facing state stores the bare noun phrase
37
+
38
+ ### Changed
39
+
40
+ - Changed `/todo` task and phase operations to target items by fuzzy content or phase name matching instead of numeric IDs
41
+ - Changed initial todo markdown export template heading from `# I. Todos` to `# Todos`
42
+
43
+ ### Fixed
44
+
45
+ - Fixed todo auto-clear scheduling to identify completed tasks by phase and content so only the matching task is cleared after delays
46
+
5
47
  ## [14.5.10] - 2026-04-30
6
48
 
7
49
  ### Breaking Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-coding-agent",
4
- "version": "14.5.10",
4
+ "version": "14.5.12",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/can1357/oh-my-pi",
7
7
  "author": "Can Boluk",
@@ -46,12 +46,12 @@
46
46
  "dependencies": {
47
47
  "@agentclientprotocol/sdk": "0.20.0",
48
48
  "@mozilla/readability": "^0.6.0",
49
- "@oh-my-pi/omp-stats": "14.5.10",
50
- "@oh-my-pi/pi-agent-core": "14.5.10",
51
- "@oh-my-pi/pi-ai": "14.5.10",
52
- "@oh-my-pi/pi-natives": "14.5.10",
53
- "@oh-my-pi/pi-tui": "14.5.10",
54
- "@oh-my-pi/pi-utils": "14.5.10",
49
+ "@oh-my-pi/omp-stats": "14.5.12",
50
+ "@oh-my-pi/pi-agent-core": "14.5.12",
51
+ "@oh-my-pi/pi-ai": "14.5.12",
52
+ "@oh-my-pi/pi-natives": "14.5.12",
53
+ "@oh-my-pi/pi-tui": "14.5.12",
54
+ "@oh-my-pi/pi-utils": "14.5.12",
55
55
  "@puppeteer/browsers": "^2.13.0",
56
56
  "@sinclair/typebox": "^0.34.49",
57
57
  "@xterm/headless": "^6.0.0",