@magyk/vincent 0.1.15 → 0.1.18

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,58 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [0.1.18] — 2026-05-14
10
+
11
+ ### Fixed
12
+ - **Agent no longer claims it can't access local files** — the image-ready hint
13
+ sent to the agent no longer includes the original file path (e.g.
14
+ `~/Downloads/photo.jpg`). Seeing a local path caused the agent to hallucinate
15
+ "I can't access your file system" even though the file was already copied to
16
+ the session directory. The hint is now path-free.
17
+ - **Wrong product image — clearer recovery path** — if `analyze_product_image`
18
+ returns a result that doesn't look like a product (e.g. you accidentally
19
+ uploaded the wrong photo), Vincent now says so explicitly and tells you to
20
+ type `/new` to start a fresh session with the correct image.
21
+
22
+ ---
23
+
24
+ ## [0.1.17] — 2026-05-14
25
+
26
+ ### Fixed
27
+ - **Local image paths with spaces now work** — pasting a path like
28
+ `/Users/alice/Downloads/product shot.png` directly into Vincent no longer
29
+ silently fails. Previously the path was split at the first space, losing
30
+ the extension, so the image was never detected. The fix uses Node's
31
+ `path.extname` and `path.isAbsolute` instead of hand-rolled string checks.
32
+
33
+ ---
34
+
35
+ ## [0.1.16] — 2026-05-13
36
+
37
+ ### Added
38
+ - **Agent memories** — Vincent now remembers guidance and preferences across sessions.
39
+ When you say things like "always ask before generating more than 3 videos", "keep proposals
40
+ to one sentence", or "prefer cinematic lighting", he stores them and applies them to every
41
+ future session automatically.
42
+ - **`/memories` command** — lists all saved guidance and preferences at any time.
43
+ - **`remember` tool** — the agent calls this autonomously when you state a clear rule or
44
+ preference. Two categories: `guidance` (how the agent should operate) and `preference`
45
+ (how output should look). Memories are stored in `~/.local/share/magyk/vincent/memories.json`
46
+ (macOS: `~/Library/Application Support/magyk/vincent/memories.json`).
47
+
48
+ ### Changed
49
+ - **Session storage reorganized** — all Vincent data (sessions, memories, future preferences)
50
+ now lives under `~/.local/share/magyk/vincent/` (macOS: `~/Library/Application Support/magyk/vincent/`).
51
+ Sessions are in `vincent/sessions/`. Existing sessions are not migrated — they were in the
52
+ old `genartifacts/pvtui-*` location and will no longer appear in `/resume`. Start a fresh
53
+ session to continue under the new layout.
54
+
55
+ ### Removed
56
+ - Unused internal creative preference tools (`set_creative_preferences`, `reset_creative_preferences`)
57
+ that were never exposed to users. Explicit creative preferences are now set via the `remember` tool.
58
+
59
+ ---
60
+
9
61
  ## [0.1.15] — 2026-05-13
10
62
 
11
63
  ### Added
@@ -1,4 +1,4 @@
1
- @anthropic-ai/sdk 0.95.1
1
+ @anthropic-ai/sdk 0.91.1
2
2
  --
3
3
  Copyright 2023 Anthropic, PBC.
4
4
 
@@ -793,7 +793,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
793
793
 
794
794
  ========================================================================
795
795
 
796
- cache-manager-fs-hash 2.0.0
796
+ cache-manager-fs-hash 3.0.0
797
797
  --
798
798
  The MIT License (MIT)
799
799
 
@@ -1151,7 +1151,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1151
1151
 
1152
1152
  ========================================================================
1153
1153
 
1154
- exponential-backoff 3.1.1
1154
+ exponential-backoff 3.1.3
1155
1155
  --
1156
1156
  Apache License
1157
1157
  Version 2.0, January 2004
@@ -1341,7 +1341,7 @@ Apache License
1341
1341
  same "printed page" as the copyright notice for easier
1342
1342
  identification within third-party archives.
1343
1343
 
1344
- Copyright [yyyy] [name of copyright owner]
1344
+ Copyright 2019 Coveo Solutions Inc.
1345
1345
 
1346
1346
  Licensed under the Apache License, Version 2.0 (the "License");
1347
1347
  you may not use this file except in compliance with the License.
@@ -3585,7 +3585,7 @@ software or this license, under any kind of legal claim.***
3585
3585
 
3586
3586
  ========================================================================
3587
3587
 
3588
- semver 7.7.4
3588
+ semver 7.8.0
3589
3589
  --
3590
3590
  The ISC License
3591
3591