@quandev104/pi-style 0.2.7 → 0.2.10
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 +23 -0
- package/README.md +2 -2
- package/dist/extensions/pi-style.js +8900 -8464
- package/dist/extensions/pi-style.js.map +1 -1
- package/extension-src/pi-style/app/command-service.ts +2 -0
- package/extension-src/pi-style/domain/config-normalization.ts +3 -0
- package/extension-src/pi-style/domain/config-types.ts +8 -0
- package/extension-src/pi-style/features/messages/index.ts +451 -37
- package/extension-src/pi-style/features/messages/special-blocks.ts +2 -22
- package/extension-src/pi-style/features/startup/index.ts +24 -4
- package/extension-src/pi-style/features/startup/logo.ts +22 -18
- package/extension-src/pi-style/features/tools/bash-execution.ts +24 -8
- package/extension-src/pi-style/features/tools/boxed/edit.ts +25 -30
- package/extension-src/pi-style/features/tools/boxed/git.ts +21 -13
- package/extension-src/pi-style/features/tools/boxed/quick-edit.ts +35 -38
- package/extension-src/pi-style/features/tools/boxed/shared.ts +34 -0
- package/extension-src/pi-style/features/tools/boxed/turn-summary.ts +114 -38
- package/extension-src/pi-style/features/tools/boxed/write.ts +1 -0
- package/extension-src/pi-style/features/tools/index.ts +10 -6
- package/extension-src/pi-style/pi/compatibility-coordinator.ts +2 -0
- package/extension-src/pi-style/pi/compatibility-probe.ts +88 -19
- package/extension-src/pi-style/pi/session-coordinator.ts +20 -1
- package/extension-src/pi-style/shared/ansi.ts +45 -0
- package/extension-src/pi-style/shared/box.ts +126 -47
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.10] - 2026-09-07
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- *(compat)* Support Pi 0.85.1 runtime identities
|
|
8
|
+
|
|
9
|
+
### Documentation
|
|
10
|
+
|
|
11
|
+
- *(changelog)* Describe the unreleased tools work; refresh test counts
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- *(messages)* Surface completed thinking runs as a clickable summary row
|
|
16
|
+
- *(tools)* Report aggregate diff stats in the collapsed turn summary
|
|
17
|
+
- *(tools)* Boxes own their status background; failed boxes render error frames
|
|
18
|
+
|
|
19
|
+
## [0.2.9] - 2026-09-04
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- *(compat)* Support Pi 0.85.0 runtime identities
|
|
24
|
+
- *(startup)* Show the current project path in the heading; simpler logo
|
|
25
|
+
|
|
3
26
|
## [0.2.7] - 2026-08-25
|
|
4
27
|
|
|
5
28
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -147,7 +147,7 @@ Ordinary mutations are session-only; persistence requires an explicit `global` o
|
|
|
147
147
|
## Compatibility
|
|
148
148
|
|
|
149
149
|
- Public Pi APIs (widgets, editor, header, footer bridge) are preferred and enabled by default.
|
|
150
|
-
- Tier C core patches (message prefixes, special blocks, tool selectors) are identity-certified per surface against recorded fingerprints (Pi `0.83.0`–`0.
|
|
150
|
+
- Tier C core patches (message prefixes, special blocks, tool selectors) are identity-certified per surface against recorded fingerprints (Pi `0.83.0`–`0.85.1` observed; Pi ≥`0.84.3` loads the CLI from a minified bundled runtime, so every surface also records the bundled identities; `0.85.1` rebundles with renamed minified parameters — every surface re-verified in both families), isolated, reversible, and flag/config gated; any surface whose runtime identity is not recorded falls back natively on its own.
|
|
151
151
|
- No render-time I/O: filesystem, Git, settings, and session data flow through cached providers into immutable snapshots.
|
|
152
152
|
- Terminal-global background synchronization is unsupported/off for technical v1; explicit cell backgrounds and Pi theme APIs remain supported.
|
|
153
153
|
- Terminal multiplexers gate kitty graphics: in herdr, previews (and Pi's own tool-result images) require `experimental.kitty_graphics = true` in `~/.config/herdr/config.toml` plus a server restart; tmux disables images upstream.
|
|
@@ -193,7 +193,7 @@ npm run check
|
|
|
193
193
|
|
|
194
194
|
`npm run check` runs all required automated gates in order.
|
|
195
195
|
|
|
196
|
-
Current test suite:
|
|
196
|
+
Current test suite: 853 tests across 43 files.
|
|
197
197
|
|
|
198
198
|
---
|
|
199
199
|
|