@magyk/vincent 0.1.17 → 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 CHANGED
@@ -6,6 +6,34 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [0.2.0] — 2026-05-14
10
+
11
+ ### Changed
12
+ - **Node 22 (LTS) now supported** — minimum Node requirement dropped from 25 to 22.
13
+ Node 24 is recommended. The published bundle targets Node 22+, so users on any
14
+ current LTS release can install and run Vincent without upgrading Node.
15
+ - **Image filename shown in agent context** — when you upload a product image,
16
+ Vincent now tells the agent the filename (e.g. `shoe.jpg`) rather than the
17
+ generic "a product image". This gives the agent a meaningful label to refer back
18
+ to during the session.
19
+
20
+ ---
21
+
22
+ ## [0.1.18] — 2026-05-14
23
+
24
+ ### Fixed
25
+ - **Agent no longer claims it can't access local files** — the image-ready hint
26
+ sent to the agent no longer includes the original file path (e.g.
27
+ `~/Downloads/photo.jpg`). Seeing a local path caused the agent to hallucinate
28
+ "I can't access your file system" even though the file was already copied to
29
+ the session directory. The hint is now path-free.
30
+ - **Wrong product image — clearer recovery path** — if `analyze_product_image`
31
+ returns a result that doesn't look like a product (e.g. you accidentally
32
+ uploaded the wrong photo), Vincent now says so explicitly and tells you to
33
+ type `/new` to start a fresh session with the correct image.
34
+
35
+ ---
36
+
9
37
  ## [0.1.17] — 2026-05-14
10
38
 
11
39
  ### Fixed
package/README.md CHANGED
@@ -10,7 +10,7 @@ Built on Google Gemini (LLM + image generation) and Veo3 (video generation).
10
10
 
11
11
  ## Requirements
12
12
 
13
- Node.js ≥ 25. Install via [nvm](https://github.com/nvm-sh/nvm): `nvm install 25 && nvm use 25`.
13
+ Node.js ≥ 22 (LTS), Node 24 recommended. Install via [nvm](https://github.com/nvm-sh/nvm): `nvm install 24 && nvm use 24`.
14
14
 
15
15
  ## Install
16
16