@quandev104/pi-style 0.1.6 → 0.2.0
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/README.md +3 -1
- package/dist/extensions/pi-style.js +8345 -8004
- package/dist/extensions/pi-style.js.map +1 -1
- package/extension-src/pi-style/app/command-service.ts +6 -0
- package/extension-src/pi-style/domain/config-normalization.ts +15 -1
- package/extension-src/pi-style/domain/config-presets.ts +2 -2
- package/extension-src/pi-style/domain/config-types.ts +22 -2
- package/extension-src/pi-style/features/messages/index.ts +58 -10
- package/extension-src/pi-style/features/tools/boxed/index.ts +46 -1
- package/extension-src/pi-style/features/tools/boxed/session-config.ts +6 -0
- package/extension-src/pi-style/features/tools/boxed/turn-summary.ts +413 -0
- package/extension-src/pi-style/features/tools/index.ts +34 -4
- package/extension-src/pi-style/pi/compatibility-coordinator.ts +1 -0
- package/extension-src/pi-style/pi/compatibility-probe.ts +8 -2
- package/extension-src/pi-style/pi/index.ts +37 -3
- package/extension-src/pi-style/pi/session-coordinator.ts +7 -0
- package/extension-src/pi-style/shared/box.ts +30 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0] - 2026-08-08
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- *(turn-summary,box)* Broken frames on collapse/expand, faileds plural, stray placeholder rows
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- *(turn-summary)* Keep mutating tool blocks visible after the turn
|
|
12
|
+
|
|
13
|
+
## [0.1.7] - 2026-08-07
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- *(turn-summary)* Collapse completed agent runs into one dim summary line
|
|
18
|
+
|
|
3
19
|
## [0.1.6] - 2026-08-06
|
|
4
20
|
|
|
5
21
|
### Features
|
package/README.md
CHANGED
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
- **Editor** — compact/boxed/dock `CustomEditor` treatments with prompt glyph, metadata rows, and thinking-level border, preserving Pi keybindings and autocomplete.
|
|
18
18
|
- **Startup** — compact gradient logo header and optional overlay with System & Context / Available Tools panels, rendered from snapshot data collected before mount.
|
|
19
19
|
- **Messages** — assistant prefix and boxed compaction/skill/branch/MCP special blocks, and certified tool call/result selectors with pending/running/error markers.
|
|
20
|
+
- **Interim narration hiding** — the text of assistant messages that also carry tool calls is hidden (`messages.hideInterimText`): the feed shows only the tool blocks, the run summary, and the final answer.
|
|
21
|
+
- **Turn summaries** — when a turn completes, its finalized tool blocks collapse into one summary line (`➔ Read 2 files, ran 4 shell commands · 3.1s`); errors and interrupted turns stay visible, and Pi's global Ctrl+O toggle expands everything again (`tools.collapseAfterTurn`).
|
|
20
22
|
- **Auto theme** — the `titanium` palette is applied at TUI session start when no other theme is active (configurable via `theme.autoApply`, disable with `"off"`).
|
|
21
23
|
- **One visual system** — shared semantic theme, glyph sets (Nerd/Unicode/ASCII), and ANSI-safe rendering across every surface.
|
|
22
24
|
|
|
@@ -187,7 +189,7 @@ npm run check
|
|
|
187
189
|
|
|
188
190
|
`npm run check` runs all required automated gates in order.
|
|
189
191
|
|
|
190
|
-
Current test suite:
|
|
192
|
+
Current test suite: 686 tests across 31 files.
|
|
191
193
|
|
|
192
194
|
---
|
|
193
195
|
|