@magyk/vincent 0.1.12 → 0.1.14
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 +43 -0
- package/dist/THIRD_PARTY_NOTICES.txt +4004 -0
- package/dist/vincent.js +1 -1
- package/package.json +6 -10
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.14] — 2026-05-13
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **In-app API key editing** — `/settings` now includes an inline key-entry screen
|
|
13
|
+
for all configured providers. Keys can be added, changed, or cleared without
|
|
14
|
+
leaving the TUI or editing the settings file directly.
|
|
15
|
+
- **Welcome message on first session** — new users see a concise onboarding block
|
|
16
|
+
explaining the three ways to get an image into Vincent: paste a URL, paste a
|
|
17
|
+
file path, or type `@` followed by 3+ characters to fuzzy-search files on your
|
|
18
|
+
machine. Points to `/help` for the full command reference.
|
|
19
|
+
- **Third-party notices in npm package** — `THIRD_PARTY_NOTICES.txt` is now
|
|
20
|
+
included in the published package, covering all bundled open-source libraries.
|
|
21
|
+
`/about` now explicitly names the `@earendil-works/pi-*` framework packages
|
|
22
|
+
that power the TUI and agent loop.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- **Footer sharpened** — keybinding hints updated to `/help: commands` (was
|
|
26
|
+
`/cmd: commands`) and `@: file search` (was `@file: autocomplete`). The footer
|
|
27
|
+
also switches to proposal-mode hints (`a: accept | d: dismiss | type to
|
|
28
|
+
override | Esc: dismiss`) whenever a proposal is on screen, then restores
|
|
29
|
+
automatically after accept or dismiss.
|
|
30
|
+
- **CLI image arg skips the session picker** — `vincent ./product.jpg` now starts
|
|
31
|
+
a new session immediately without showing the session history picker. The update
|
|
32
|
+
notice surfaces in the chat startup banner instead.
|
|
33
|
+
- **CLI image arg survives first-run key setup** — if no API key is configured
|
|
34
|
+
and the user runs `vincent ./product.jpg`, the image path is automatically
|
|
35
|
+
re-submitted after the key is saved, rather than being silently dropped.
|
|
36
|
+
- **sharp removed** — `jimp` is now the sole image-processing library. The five
|
|
37
|
+
optional `@img/sharp-*` platform packages are gone from the npm package, and
|
|
38
|
+
`npm install -g @magyk/vincent` no longer attempts any native compilation.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## [0.1.13] — 2026-05-13
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
- **Update notification at startup** — Vincent now shows a banner in the session
|
|
46
|
+
picker and at TUI startup when a newer version is available on npm.
|
|
47
|
+
- **Gemini Image Pro model** — new image generation model option available in
|
|
48
|
+
`/settings`.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
9
52
|
## [0.1.12] — 2026-05-12
|
|
10
53
|
|
|
11
54
|
### Changed
|