@oh-my-pi/pi-coding-agent 17.3.3 → 17.3.4

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/{CHANGELOG-s5t1xdmy.md → CHANGELOG-trcc215s.md} +13 -0
  3. package/dist/cli.js +3563 -3537
  4. package/dist/docs-index.generated.txt +1 -1
  5. package/dist/types/markit/converters/pdf/index.d.ts +2 -1
  6. package/dist/types/tools/read-pdf.d.ts +15 -0
  7. package/dist/types/utils/external-editor.d.ts +7 -0
  8. package/dist/types/utils/markit.d.ts +3 -4
  9. package/package.json +13 -16
  10. package/scripts/build-binary.ts +0 -2
  11. package/scripts/bundle-dist.ts +0 -1
  12. package/src/cli/read-cli.ts +2 -0
  13. package/src/markit/NOTICE +8 -8
  14. package/src/markit/converters/pdf/index.ts +14 -126
  15. package/src/mcp/client.ts +8 -9
  16. package/src/modes/rpc/rpc-client.ts +7 -0
  17. package/src/modes/utils/hotkeys-markdown.ts +1 -1
  18. package/src/tools/read-pdf.ts +135 -0
  19. package/src/tools/read.ts +63 -37
  20. package/src/utils/external-editor.ts +24 -5
  21. package/src/utils/markit.ts +6 -44
  22. package/dist/types/markit/converters/pdf/columns.d.ts +0 -35
  23. package/dist/types/markit/converters/pdf/extract.d.ts +0 -10
  24. package/dist/types/markit/converters/pdf/grid.d.ts +0 -25
  25. package/dist/types/markit/converters/pdf/headers.d.ts +0 -24
  26. package/dist/types/markit/converters/pdf/render.d.ts +0 -24
  27. package/dist/types/markit/converters/pdf/types.d.ts +0 -75
  28. package/dist/types/tools/read-pdf-images.d.ts +0 -12
  29. package/dist/types/utils/mupdf-wasm-embed.d.ts +0 -1
  30. package/scripts/embed-mupdf-wasm.ts +0 -67
  31. package/src/markit/converters/pdf/columns.ts +0 -103
  32. package/src/markit/converters/pdf/extract.ts +0 -598
  33. package/src/markit/converters/pdf/grid.ts +0 -780
  34. package/src/markit/converters/pdf/headers.ts +0 -106
  35. package/src/markit/converters/pdf/render.ts +0 -501
  36. package/src/markit/converters/pdf/types.ts +0 -84
  37. package/src/tools/read-pdf-images.ts +0 -250
  38. package/src/utils/mupdf-wasm-embed.ts +0 -12
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [17.3.4] - 2026-08-14
6
+
7
+ ### Changed
8
+
9
+ - Replaced the MuPDF-WASM PDF document backend with `pdf-inspector` through `@oh-my-pi/pi-natives`, preserving cached text conversion and PDF line selectors while reporting pages that need OCR.
10
+ - Restored `read <pdf>:` and `read <pdf>:<image>.png` page rendering by automatically capturing PDF pages through the headless Chromium browser tool.
11
+
12
+ ### Fixed
13
+
14
+ - Fixed Streamable HTTP MCP sessions being invalidated by opening the optional GET SSE stream before sending `notifications/initialized`, which prevented Figma Dev Mode MCP from connecting ([#8514](https://github.com/can1357/oh-my-pi/issues/8514)).
15
+ - Fixed the `/hotkeys` table describing Ctrl+D (`app.exit`) as "Exit (when editor is empty)" when it actually exits unconditionally and saves the current prompt as a resumable draft ([#8530](https://github.com/can1357/oh-my-pi/issues/8530)).
16
+ - Fixed Ctrl+G external editors failing to launch on Windows because Bun re-quoted the embedded `cmd.exe /c` command line ([#8544](https://github.com/can1357/oh-my-pi/issues/8544)).
17
+
5
18
  ## [17.3.3] - 2026-08-14
6
19
 
7
20
  ### Fixed
@@ -2,6 +2,19 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [17.3.4] - 2026-08-14
6
+
7
+ ### Changed
8
+
9
+ - Replaced the MuPDF-WASM PDF document backend with `pdf-inspector` through `@oh-my-pi/pi-natives`, preserving cached text conversion and PDF line selectors while reporting pages that need OCR.
10
+ - Restored `read <pdf>:` and `read <pdf>:<image>.png` page rendering by automatically capturing PDF pages through the headless Chromium browser tool.
11
+
12
+ ### Fixed
13
+
14
+ - Fixed Streamable HTTP MCP sessions being invalidated by opening the optional GET SSE stream before sending `notifications/initialized`, which prevented Figma Dev Mode MCP from connecting ([#8514](https://github.com/can1357/oh-my-pi/issues/8514)).
15
+ - Fixed the `/hotkeys` table describing Ctrl+D (`app.exit`) as "Exit (when editor is empty)" when it actually exits unconditionally and saves the current prompt as a resumable draft ([#8530](https://github.com/can1357/oh-my-pi/issues/8530)).
16
+ - Fixed Ctrl+G external editors failing to launch on Windows because Bun re-quoted the embedded `cmd.exe /c` command line ([#8544](https://github.com/can1357/oh-my-pi/issues/8544)).
17
+
5
18
  ## [17.3.3] - 2026-08-14
6
19
 
7
20
  ### Fixed