@magyk/vincent 0.1.5 → 0.1.7
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 +26 -0
- package/README.md +74 -9
- package/dist/vincent.js +1 -1
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,32 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.7] — 2026-05-11
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Typing long feedback in the scene proposal widget no longer crashes with
|
|
13
|
+
"Rendered line exceeds terminal width" — the display scrolls to keep the
|
|
14
|
+
current cursor position visible within the terminal width
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## [0.1.6] — 2026-05-11
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- `npm install -g` no longer fails when `sharp` cannot build from source — `sharp` and
|
|
22
|
+
the four main platform prebuilts (`@img/sharp-darwin-arm64`, `@img/sharp-darwin-x64`,
|
|
23
|
+
`@img/sharp-linux-x64`, `@img/sharp-linux-arm64`) are now `optionalDependencies`;
|
|
24
|
+
image preview falls back to `jimp` automatically if the native binary is unavailable
|
|
25
|
+
- `loadSystemPrompt` in the bundled binary now correctly accepts a capabilities object
|
|
26
|
+
instead of treating it as a filename, fixing the `prompt file [object Object] not found`
|
|
27
|
+
crash on startup
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- README expanded with a Getting Started section, configuration paths, and output directory details
|
|
31
|
+
- Build script syncs the npm README from the canonical `README-vincent.md` at build time
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
9
35
|
## [0.1.5] — 2026-05-11
|
|
10
36
|
|
|
11
37
|
### Changed
|
package/README.md
CHANGED
|
@@ -1,7 +1,54 @@
|
|
|
1
1
|
# Vincent
|
|
2
2
|
|
|
3
3
|
Turn a single product image into a polished marketing video — entirely in your terminal.
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
Vincent is an AI agent that takes your product photo and a short brief, then handles everything:
|
|
6
|
+
concept writing, scene image generation, animation, and final video assembly.
|
|
7
|
+
No video editing skills required.
|
|
8
|
+
|
|
9
|
+
Built on Google Gemini (LLM + image generation) and Veo3 (video generation).
|
|
10
|
+
|
|
11
|
+
## Getting Started
|
|
12
|
+
|
|
13
|
+
### 1. Install Node.js 25
|
|
14
|
+
|
|
15
|
+
Vincent requires Node.js 25 or later. The easiest way is [nvm](https://github.com/nvm-sh/nvm):
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|
|
19
|
+
source ~/.nvm/nvm.sh
|
|
20
|
+
nvm install 25
|
|
21
|
+
nvm use 25
|
|
22
|
+
node --version # should print v25.x.x
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### 2. Install Vincent
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install -g @magyk/vincent
|
|
29
|
+
vincent --version
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 3. Get a Google API key
|
|
33
|
+
|
|
34
|
+
[Google AI Studio](https://aistudio.google.com) is the fastest way to get a key — one key covers the LLM, image generation, and Veo video generation.
|
|
35
|
+
|
|
36
|
+
1. Go to [aistudio.google.com](https://aistudio.google.com) and sign in with your Google Account.
|
|
37
|
+
2. Click **Get API key** (or **API keys**) in the sidebar.
|
|
38
|
+
3. Click **Create API key**. You can create it in a new or existing Google Cloud project.
|
|
39
|
+
4. Copy the key and keep it somewhere safe — you'll paste it into Vincent on first run.
|
|
40
|
+
|
|
41
|
+
> **Billing note:** AI Studio uses a tiered billing system (Prepay and Postpay). New accounts start on a free tier with generous rate limits. For high-volume or production use you'll need to link a billing account.
|
|
42
|
+
|
|
43
|
+
### 4. Make your first video
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
vincent path/to/product-image.jpg
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
On first run, Vincent will ask you to paste your Gemini API key — it saves it automatically so you only need to do this once. Then describe what you want; it will propose a concept, generate scene images, animate them with Veo3, and assemble the final video in your working directory.
|
|
50
|
+
|
|
51
|
+
---
|
|
5
52
|
|
|
6
53
|
## Install
|
|
7
54
|
|
|
@@ -14,23 +61,41 @@ Requires Node.js ≥ 25.
|
|
|
14
61
|
## Quickstart
|
|
15
62
|
|
|
16
63
|
```
|
|
64
|
+
export GEMINI_API_KEY=your_key_here
|
|
17
65
|
vincent path/to/product-image.jpg
|
|
18
66
|
```
|
|
19
67
|
|
|
20
|
-
|
|
21
|
-
|
|
68
|
+
Vincent opens an interactive session. Describe what you want; it will propose a concept,
|
|
69
|
+
generate scene images, animate them, and produce a final video in your working directory.
|
|
70
|
+
|
|
71
|
+
## Configuration
|
|
72
|
+
|
|
73
|
+
On first run, Vincent creates a settings file at:
|
|
74
|
+
- **Linux:** `~/.local/share/magyk/settings.json`
|
|
75
|
+
- **macOS:** `~/Library/Application Support/magyk/settings.json`
|
|
76
|
+
|
|
77
|
+
You can also use `/settings` inside the TUI to configure API keys and model preferences,
|
|
78
|
+
or set `GEMINI_API_KEY` in your environment (takes priority over the settings file).
|
|
22
79
|
|
|
23
80
|
## Options
|
|
24
81
|
|
|
25
82
|
```
|
|
26
|
-
vincent [image] [options]
|
|
83
|
+
vincent [image-url-or-path] [options]
|
|
27
84
|
|
|
28
|
-
--
|
|
29
|
-
--
|
|
30
|
-
--
|
|
31
|
-
-
|
|
85
|
+
--image <url|path> Product image (also accepted as a positional arg)
|
|
86
|
+
--video-model <id> veo3 or veo3-lite (default: veo3-lite)
|
|
87
|
+
--storage <path> Override artifact output directory
|
|
88
|
+
--self-test Run built-in diagnostics and exit
|
|
89
|
+
-h, --help Show help
|
|
32
90
|
```
|
|
33
91
|
|
|
92
|
+
## Output
|
|
93
|
+
|
|
94
|
+
Each session creates a directory under `~/.local/share/magyk/genartifacts/` (Linux)
|
|
95
|
+
or `~/Library/Application Support/magyk/genartifacts/` (macOS) containing the original
|
|
96
|
+
image, generated scene images, and the final assembled video.
|
|
97
|
+
|
|
34
98
|
## License
|
|
35
99
|
|
|
36
|
-
|
|
100
|
+
See [LICENSE](https://www.npmjs.com/package/@magyk/vincent?activeTab=code) for terms.
|
|
101
|
+
© 2026 Magyk Inc.
|