@oh-my-pi/pi-coding-agent 16.3.13 → 16.3.15
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 +16 -0
- package/dist/cli.js +2914 -3023
- package/dist/types/utils/thinking-display.d.ts +5 -0
- package/package.json +12 -12
- package/src/modes/components/transcript-container.ts +33 -0
- package/src/prompts/system/system-prompt.md +5 -3
- package/src/prompts/system/workflow-notice.md +5 -5
- package/src/task/agents.ts +0 -2
- package/src/utils/thinking-display.ts +74 -28
- package/src/prompts/agents/tester.md +0 -111
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.3.15] - 2026-07-09
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Integrated testing guidance directly into the main system prompt for improved workflow cohesion
|
|
10
|
+
- Moved testing guidance into the main system prompt and removed the bundled Tester subagent.
|
|
11
|
+
|
|
12
|
+
## [16.3.14] - 2026-07-09
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fixed issue where unfinalized tool blocks could incorrectly pin the live-region scroll seam
|
|
17
|
+
- Improved rendering of raw thinking blocks by stripping empty HTML comment noise
|
|
18
|
+
- Fixed display of thinking blocks consisting entirely of hidden comment noise
|
|
19
|
+
- Fixed gpt-5.6 reasoning summaries rendering literal `<!-- -->` sentinel lines in thinking blocks; empty HTML comments (and the unterminated `<!--` tail while streaming) are now dropped from the thinking display, and blocks reduced to pure comment noise are hidden entirely.
|
|
20
|
+
|
|
5
21
|
## [16.3.13] - 2026-07-09
|
|
6
22
|
|
|
7
23
|
### Fixed
|