@magyk/vincent 0.1.3 → 0.1.5
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/vincent.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.5] — 2026-05-11
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Generated videos are now silent by default — audio suppressed via negative prompt (veo3) and FFmpeg post-processing where available (veo3-lite)
|
|
13
|
+
- Session picker now opens on a clean full-screen welcome; Esc quits the app
|
|
14
|
+
- Thinking blocks render as Markdown in a dedicated ephemeral zone, clearing after each agent turn
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## [0.1.4] — 2026-05-08
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- README: removed incorrect `export GEMINI_API_KEY` step — the app prompts for the key interactively on first run and saves it automatically
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
9
25
|
## [0.1.3] — 2026-05-08
|
|
10
26
|
|
|
11
27
|
### Changed
|
package/README.md
CHANGED
|
@@ -14,10 +14,12 @@ Requires Node.js ≥ 25.
|
|
|
14
14
|
## Quickstart
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
export GEMINI_API_KEY=your_key_here
|
|
18
17
|
vincent path/to/product-image.jpg
|
|
19
18
|
```
|
|
20
19
|
|
|
20
|
+
On first run, Vincent will prompt you to paste your Gemini API key and save it automatically.
|
|
21
|
+
Get one free at https://aistudio.google.com/apikey — one key covers LLM, image, and video generation.
|
|
22
|
+
|
|
21
23
|
## Options
|
|
22
24
|
|
|
23
25
|
```
|