@vanillaskyai/video 0.1.0 → 0.1.1
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 +15 -0
- package/PUBLIC-API.md +14 -3
- package/README.md +3 -3
- package/docs/getting-started.md +2 -2
- package/docs/integrate-nextjs.md +2 -2
- package/examples/nextjs-quickstart/package.json +1 -1
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
VanillaSky follows semantic versioning. This changelog begins with the 0.1 beta.
|
|
4
4
|
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
<!-- Add release notes for the next version here. -->
|
|
8
|
+
|
|
9
|
+
## 0.1.1
|
|
10
|
+
|
|
11
|
+
No runtime changes: the public API, behavior, and dependencies are identical to
|
|
12
|
+
0.1.0. This release replaces the 0.1.1-beta line and moves `latest` onto a
|
|
13
|
+
single, current version so the repository, npm, and vanillasky.ai agree.
|
|
14
|
+
|
|
15
|
+
- Simplified the release process to a version bump, an annotated tag on `main`,
|
|
16
|
+
and an OIDC publish. Changesets, the generated Version Packages branch, and
|
|
17
|
+
the npm-latest compatibility gate are removed; the tag job now packs a commit
|
|
18
|
+
CI has already verified instead of re-running the suite.
|
|
19
|
+
|
|
5
20
|
## 0.1.0
|
|
6
21
|
|
|
7
22
|
Initial beta release for `@vanillaskyai/video`.
|
package/PUBLIC-API.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# VanillaSky Video 0.1 public API
|
|
2
2
|
|
|
3
|
-
Status: frozen public beta contract for `0.1.
|
|
3
|
+
Status: frozen public beta contract for `0.1.1`.
|
|
4
4
|
|
|
5
5
|
This document defines the API that may enter the fresh
|
|
6
6
|
`@vanillaskyai/video` package. An export not listed here is internal. Tests and
|
|
@@ -18,8 +18,10 @@ public API review.
|
|
|
18
18
|
|
|
19
19
|
- `0.1.x` patch releases do not make breaking changes to documented APIs or the
|
|
20
20
|
serialized `Video` schema.
|
|
21
|
-
- A later `0.x` minor
|
|
22
|
-
|
|
21
|
+
- A compatible later `0.x` minor needs no migration ceremony. A breaking
|
|
22
|
+
pre-1.0 minor must document both `### Breaking changes` and `### Adoption` in
|
|
23
|
+
its changelog section, with concrete fenced before and after code examples
|
|
24
|
+
respectively.
|
|
23
25
|
- An API prefixed with `experimental_` may change in a patch. Canonical examples
|
|
24
26
|
must pin an exact package version when they use one.
|
|
25
27
|
- Deprecated APIs remain usable until the next minor release. The `0.1`
|
|
@@ -30,6 +32,15 @@ public API review.
|
|
|
30
32
|
- Framework adapters are examples, not separate public APIs. The release suite
|
|
31
33
|
verifies current Next.js and Vite production builds.
|
|
32
34
|
|
|
35
|
+
The frozen public API surface report is compared on every pull request. It is
|
|
36
|
+
intentionally conservative: every existing normalized declaration and reachable
|
|
37
|
+
support declaration must remain exactly equal because the report cannot safely
|
|
38
|
+
distinguish input and output positions.
|
|
39
|
+
As a result, even optional field additions to an existing public
|
|
40
|
+
type fail a patch gate; use a documented pre-1.0 minor unless a separately
|
|
41
|
+
reviewed, direction-aware compatibility check can prove the change safe. New
|
|
42
|
+
exports, wider supported peer ranges, and new optional peers remain additive.
|
|
43
|
+
|
|
33
44
|
## Environment boundaries
|
|
34
45
|
|
|
35
46
|
| Entry point | Environment | May import React | May import Node built-ins |
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Give your AI a video output
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
**VanillaSky is the open-source video response layer.** Turn text, structured
|
|
6
6
|
data, and live application context into personalized video responses that start
|
|
@@ -17,7 +17,7 @@ the planning prompt, trusted templates, validation, streaming, and player.
|
|
|
17
17
|
For humans:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install @vanillaskyai/video@0.1.
|
|
20
|
+
npm install @vanillaskyai/video@0.1.1 ai @ai-sdk/openai
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
For coding agents:
|
|
@@ -101,7 +101,7 @@ shows each complete, validated scene as soon as it is ready and returns a
|
|
|
101
101
|
deterministic `Video` object when generation finishes.
|
|
102
102
|
|
|
103
103
|
A copy-and-run app is in
|
|
104
|
-
[`examples/nextjs-quickstart`](https://github.com/VanillaSkyAi/video/tree/v0.1.
|
|
104
|
+
[`examples/nextjs-quickstart`](https://github.com/VanillaSkyAi/video/tree/v0.1.1/examples/nextjs-quickstart).
|
|
105
105
|
|
|
106
106
|
## Shape the response
|
|
107
107
|
|
package/docs/getting-started.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Install VanillaSky:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @vanillaskyai/video@0.1.
|
|
8
|
+
npm install @vanillaskyai/video@0.1.1 ai @ai-sdk/openai
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Set your provider key in `.env.local` (never commit it):
|
|
@@ -49,7 +49,7 @@ The local bypass is intentionally fail-closed: it accepts only localhost while
|
|
|
49
49
|
Next.js is in development and denies every production request. Replace it with
|
|
50
50
|
your real session validation before deploying. For literal files and commands,
|
|
51
51
|
use the tested
|
|
52
|
-
[`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.
|
|
52
|
+
[`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.1/examples/nextjs-quickstart).
|
|
53
53
|
|
|
54
54
|
`model` can come from any AI SDK provider, registry, gateway, compatible API,
|
|
55
55
|
or custom implementation. The application can choose a cheaper or faster model
|
package/docs/integrate-nextjs.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Install VanillaSky and one AI SDK provider:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @vanillaskyai/video@0.1.
|
|
8
|
+
npm install @vanillaskyai/video@0.1.1 ai @ai-sdk/openai
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Create an ignored `.env.local`:
|
|
@@ -71,7 +71,7 @@ requests; replace it with your application's session validation before
|
|
|
71
71
|
deploying.
|
|
72
72
|
|
|
73
73
|
The copy-and-run app is in the
|
|
74
|
-
[`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.
|
|
74
|
+
[`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.1/examples/nextjs-quickstart).
|
|
75
75
|
|
|
76
76
|
For another LLM, replace `openai(...)` with the matching AI SDK model. The route
|
|
77
77
|
shape and React code stay the same. See [Provider integration](provider-integration.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vanillaskyai/video",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Open-source video response SDK for personalized AI applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"generative-video",
|
|
@@ -112,9 +112,7 @@
|
|
|
112
112
|
"verify:package-size": "tsx scripts/verify-package-size.ts",
|
|
113
113
|
"verify:api": "npm run build && node scripts/verify-public-api-surface.mjs",
|
|
114
114
|
"verify:package": "npm run build && node scripts/verify-packed-package.mjs",
|
|
115
|
-
"release:
|
|
116
|
-
"release:preflight": "node scripts/release-preflight.mjs",
|
|
117
|
-
"release:check": "npm run verify:api && npm run release:dry-run"
|
|
115
|
+
"release:build": "node scripts/release-build.mjs"
|
|
118
116
|
},
|
|
119
117
|
"peerDependencies": {
|
|
120
118
|
"react": ">=18 <20",
|
|
@@ -140,17 +138,18 @@
|
|
|
140
138
|
"@types/node": "^24.10.1",
|
|
141
139
|
"@types/react": "^18.3.28",
|
|
142
140
|
"@types/react-dom": "^18.3.7",
|
|
143
|
-
"eslint": "^9.39.1",
|
|
144
141
|
"es-module-lexer": "^1.7.0",
|
|
142
|
+
"eslint": "^9.39.1",
|
|
145
143
|
"globals": "^16.5.0",
|
|
146
144
|
"jsdom": "^26.1.0",
|
|
145
|
+
"mdast-util-from-markdown": "2.0.3",
|
|
147
146
|
"openai": "^7.4.0",
|
|
148
147
|
"react": "^18.3.1",
|
|
149
148
|
"react-dom": "^18.3.1",
|
|
150
149
|
"tsup": "^8.5.1",
|
|
150
|
+
"tsx": "^4.23.12",
|
|
151
151
|
"typescript": "^5.9.3",
|
|
152
152
|
"typescript-eslint": "^8.48.1",
|
|
153
|
-
"tsx": "^4.23.12",
|
|
154
153
|
"vitest": "^3.2.4"
|
|
155
154
|
},
|
|
156
155
|
"overrides": {
|