@magyk/vincent 0.1.2 → 0.1.4
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/README.md +20 -10
- package/dist/vincent.js +1 -1
- package/package.json +22 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@magyk/vincent` will be documented here.
|
|
4
|
+
|
|
5
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## [0.1.4] — 2026-05-08
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- README: removed incorrect `export GEMINI_API_KEY` step — the app prompts for the key interactively on first run and saves it automatically
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## [0.1.3] — 2026-05-08
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Updated package description and README to lead with the product video angle
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## [0.1.2] — 2026-05-08
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Proprietary freeware EULA (Magyk Inc.)
|
|
27
|
+
- JavaScript obfuscation of bundled source (string array encoding)
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Restricted to Google-only model stack (Gemini LLM + image, Veo3/Veo3-lite video)
|
|
31
|
+
- Removed TTS, Flux image generation, and Hailuo video paths from CLI
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## [0.1.1] — 2026-05-08
|
|
36
|
+
|
|
37
|
+
_Internal release — superseded by 0.1.2._
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## [0.1.0] — 2026-05-08
|
|
42
|
+
|
|
43
|
+
_Internal release — superseded by 0.1.2._
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Vincent
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Turn a single product image into a polished marketing video — entirely in your terminal.
|
|
4
|
+
Vincent uses Google Gemini and Veo3 to write the concept, generate scene visuals, animate them, and assemble the final video.
|
|
4
5
|
|
|
5
6
|
## Install
|
|
6
7
|
|
|
@@ -8,19 +9,28 @@ Vincent is an AI-powered product video creation assistant that runs in your term
|
|
|
8
9
|
npm install -g @magyk/vincent
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
Requires Node.js ≥ 25.
|
|
13
|
+
|
|
14
|
+
## Quickstart
|
|
12
15
|
|
|
13
16
|
```
|
|
14
|
-
vincent
|
|
17
|
+
vincent path/to/product-image.jpg
|
|
15
18
|
```
|
|
16
19
|
|
|
17
|
-
|
|
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
|
+
|
|
23
|
+
## Options
|
|
18
24
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
25
|
+
```
|
|
26
|
+
vincent [image] [options]
|
|
27
|
+
|
|
28
|
+
--video-model <id> veo3 or veo3-lite (default: veo3-lite)
|
|
29
|
+
--storage <path> Override artifact output directory
|
|
30
|
+
--self-test Run diagnostics and exit
|
|
31
|
+
-h, --help Show help
|
|
32
|
+
```
|
|
22
33
|
|
|
23
|
-
##
|
|
34
|
+
## License
|
|
24
35
|
|
|
25
|
-
|
|
26
|
-
Set them in your environment before running.
|
|
36
|
+
Proprietary freeware. See LICENSE for terms. © 2026 Magyk Inc.
|