@quandev104/pi-style 0.1.5 → 0.1.7

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.7] - 2026-08-07
4
+
5
+ ### Features
6
+
7
+ - *(turn-summary)* Collapse completed agent runs into one dim summary line
8
+
9
+ ## [0.1.6] - 2026-08-06
10
+
11
+ ### Features
12
+
13
+ - *(compat)* Identity-first certification, support Pi 0.84.0 without version pinning
14
+
3
15
  ## [0.1.5] - 2026-08-05
4
16
 
5
17
  ### Bug Fixes
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
 
@@ -50,7 +52,7 @@ No configuration is required. The `default` preset enables:
50
52
  - `dock` editor (rounded input box) with metadata ownership resolved so the status line and editor do not duplicate text;
51
53
  - `compact` startup header (gradient logo block only; resource chips are opt-in);
52
54
  - the `titanium` theme auto-applied at session start (`theme.autoApply`, default `"titanium"`; set `"off"` to keep your active Pi theme);
53
- - certified message prefixes and boxed tool presentation when compatible with the exact Pi version.
55
+ - certified message prefixes and boxed tool presentation when the runtime surface identity matches a recorded fingerprint.
54
56
 
55
57
  Override any documented leaf through global/project `piStyle` settings, environment, or session commands. Precedence:
56
58
 
@@ -142,7 +144,7 @@ Ordinary mutations are session-only; persistence requires an explicit `global` o
142
144
  ## Compatibility
143
145
 
144
146
  - Public Pi APIs (widgets, editor, header, footer bridge) are preferred and enabled by default.
145
- - Tier C core patches (message prefixes, special blocks, tool selectors) are certified for exact Pi `0.83.0` within `>=0.83.0 <0.84.0`, isolated, reversible, and version/capability gated; native fallback otherwise.
147
+ - Tier C core patches (message prefixes, special blocks, tool selectors) are identity-certified per surface against recorded fingerprints (Pi `0.83.0`/`0.84.0` observed), isolated, reversible, and flag/config gated; any surface whose runtime identity is not recorded falls back natively on its own.
146
148
  - No render-time I/O: filesystem, Git, settings, and session data flow through cached providers into immutable snapshots.
147
149
  - Terminal-global background synchronization is unsupported/off for technical v1; explicit cell backgrounds and Pi theme APIs remain supported.
148
150
 
@@ -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: 195 tests across 18 files.
192
+ Current test suite: 686 tests across 31 files.
191
193
 
192
194
  ---
193
195