@oh-my-pi-zen/pi-coding-agent 16.3.6-zen.3 → 16.3.6-zen.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.
- package/CHANGELOG.md +13 -0
- package/dist/cli.js +3006 -3004
- package/dist/types/config/settings-schema.d.ts +31 -3
- package/dist/types/extensibility/custom-tools/types.d.ts +2 -2
- package/dist/types/extensibility/extensions/types.d.ts +1 -1
- package/dist/types/extensibility/shared-events.d.ts +2 -2
- package/dist/types/session/agent-session.d.ts +2 -2
- package/dist/types/session/compact-modes.d.ts +2 -2
- package/package.json +12 -12
- package/src/config/settings-schema.ts +40 -4
- package/src/extensibility/custom-tools/types.ts +2 -2
- package/src/extensibility/extensions/types.ts +1 -1
- package/src/extensibility/shared-events.ts +2 -2
- package/src/modes/components/model-selector.ts +1 -1
- package/src/modes/components/status-line/component.test.ts +56 -0
- package/src/modes/components/status-line/segments.ts +2 -2
- package/src/modes/controllers/event-controller.ts +9 -2
- package/src/session/agent-session.ts +78 -39
- package/src/session/compact-modes.ts +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.3.6-zen.4] - 2026-07-06
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added a `unicode-snapcompact` compaction strategy and `/compact unicode-snapcompact` mode that archive Unicode/CJK history through zpix-backed Snapcompact frames while leaving the legacy `snapcompact` strategy unchanged; the benchmark/experiment harness lives at [cagedbird043/cjk-visual-context-bench](https://github.com/cagedbird043/cjk-visual-context-bench).
|
|
10
|
+
- Added `snapcompact.unicodeShape` to select Unicode Snapcompact's zpix quality or density preset independently from the legacy `snapcompact.shape` setting.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed retry fallback treating relay `520` HTML error pages as model failures; these transient proxy responses now retry on the same model instead of switching providers.
|
|
15
|
+
- Fixed retry fallback failing to advance to the next model on relay `insufficient_user_*` quota errors.
|
|
16
|
+
- Fixed the status line model segment dropping the provider prefix after model metadata refreshes; provider names now remain visible unless `statusLine.segmentOptions.model.showProvider` is explicitly disabled.
|
|
17
|
+
|
|
5
18
|
## [16.3.6-zen.3] - 2026-07-04
|
|
6
19
|
|
|
7
20
|
### Added
|