@magyk/vincent 0.1.8 → 0.1.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 CHANGED
@@ -6,6 +6,49 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [0.1.10] — 2026-05-12
10
+
11
+ ### Fixed
12
+ - **Inline images on Ghostty / macOS** — `@earendil-works/pi-tui@0.74.0` added
13
+ Ghostty detection (it was absent in 0.63.1), so non-PNG product photos now
14
+ attempt inline display. The previous sharp subprocess approach couldn't find
15
+ the module for global npm installs and fell back to sending raw JPEG bytes as
16
+ PNG — Ghostty silently ignored them. All non-PNG files now use the async
17
+ jimp conversion path, which correctly produces PNG and shows a placeholder
18
+ while converting.
19
+ - **Proposal box text duplication** — the proposal description and footer were
20
+ already shown verbatim in the embed above the callout; the widget was
21
+ repeating them. The cyan BorderBox callout now shows only the accept/feedback
22
+ controls.
23
+ - **Product analysis output hidden from user** — the internal "Product Analysis
24
+ Complete" embed (with the full analysis text) was visible in chat. That text
25
+ is for the agent, not the user; only the product image is shown now.
26
+
27
+ ---
28
+
29
+ ## [0.1.9] — 2026-05-12
30
+
31
+ ### Added
32
+ - **Update notifications** — at startup, Vincent checks npm for a newer version
33
+ (12-hour cached, non-blocking). When one is available a banner appears in chat:
34
+ `⬆ Vincent X.Y.Z is available (you have W.X.Y). Run /update to install.`
35
+ - **`/update` slash command** — runs `npm install -g @magyk/vincent@latest` and
36
+ streams progress into the chat. On success prompts you to restart. On failure
37
+ (permission, network, or other) shows the exact manual command to run instead.
38
+ - **`--version` / `-v` flag** — print the installed version and exit.
39
+
40
+ ### Changed
41
+ - Proposals are now framed in a **cyan bordered callout** (`❯ Proposal — title`)
42
+ so they're unmistakably distinct from the agent's regular response text.
43
+ - Thinking zone moved **below the editor input** and labelled
44
+ "▸ Vincent's thoughts" — reads as running commentary rather than part of the
45
+ chat history.
46
+ - User-visible product name unified through a central `PRODUCT_NAME = "Vincent"`
47
+ constant — CLI help, TUI header, session picker, and self-test banner now all
48
+ show "Vincent" consistently.
49
+
50
+ ---
51
+
9
52
  ## [0.1.8] — 2026-05-11
10
53
 
11
54
  ### Fixed