@openclaw/pixverse-provider 2026.5.28-beta.3 → 2026.5.28-beta.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/README.md +27 -0
- package/npm-shrinkwrap.json +3 -3
- package/package.json +8 -5
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @openclaw/pixverse-provider
|
|
2
|
+
|
|
3
|
+
Official PixVerse video generation provider plugin for OpenClaw.
|
|
4
|
+
|
|
5
|
+
This plugin registers PixVerse as a `video_generate` provider for text-to-video and image-to-video workflows.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @openclaw/pixverse-provider
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Restart the Gateway after installing or updating the plugin.
|
|
14
|
+
|
|
15
|
+
## Configure
|
|
16
|
+
|
|
17
|
+
Store your PixVerse API key in OpenClaw config or expose the supported environment variable to the Gateway. Then select PixVerse as a video generation provider.
|
|
18
|
+
|
|
19
|
+
Full setup and model/provider examples:
|
|
20
|
+
|
|
21
|
+
- https://docs.openclaw.ai/providers/pixverse
|
|
22
|
+
|
|
23
|
+
## Package
|
|
24
|
+
|
|
25
|
+
- Plugin id: `pixverse`
|
|
26
|
+
- Package: `@openclaw/pixverse-provider`
|
|
27
|
+
- Minimum OpenClaw host: `2026.5.26`
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/pixverse-provider",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/pixverse-provider",
|
|
9
|
-
"version": "2026.5.28-beta.
|
|
9
|
+
"version": "2026.5.28-beta.4",
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"openclaw": ">=2026.5.28-beta.
|
|
11
|
+
"openclaw": ">=2026.5.28-beta.4"
|
|
12
12
|
},
|
|
13
13
|
"peerDependenciesMeta": {
|
|
14
14
|
"openclaw": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/pixverse-provider",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"description": "OpenClaw PixVerse video generation provider plugin.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"openclaw": ">=2026.5.28-beta.
|
|
11
|
+
"openclaw": ">=2026.5.28-beta.4"
|
|
12
12
|
},
|
|
13
13
|
"peerDependenciesMeta": {
|
|
14
14
|
"openclaw": {
|
|
@@ -20,15 +20,17 @@
|
|
|
20
20
|
"./index.ts"
|
|
21
21
|
],
|
|
22
22
|
"install": {
|
|
23
|
+
"clawhubSpec": "clawhub:@openclaw/pixverse-provider",
|
|
23
24
|
"npmSpec": "@openclaw/pixverse-provider",
|
|
24
25
|
"defaultChoice": "npm",
|
|
25
26
|
"minHostVersion": ">=2026.5.26"
|
|
26
27
|
},
|
|
27
28
|
"compat": {
|
|
28
|
-
"pluginApi": ">=2026.5.28-beta.
|
|
29
|
+
"pluginApi": ">=2026.5.28-beta.4"
|
|
29
30
|
},
|
|
30
31
|
"build": {
|
|
31
|
-
"openclawVersion": "2026.5.28-beta.
|
|
32
|
+
"openclawVersion": "2026.5.28-beta.4",
|
|
33
|
+
"bundledDist": false
|
|
32
34
|
},
|
|
33
35
|
"release": {
|
|
34
36
|
"publishToClawHub": true,
|
|
@@ -41,7 +43,8 @@
|
|
|
41
43
|
"files": [
|
|
42
44
|
"dist/**",
|
|
43
45
|
"openclaw.plugin.json",
|
|
44
|
-
"npm-shrinkwrap.json"
|
|
46
|
+
"npm-shrinkwrap.json",
|
|
47
|
+
"README.md"
|
|
45
48
|
],
|
|
46
49
|
"bundledDependencies": []
|
|
47
50
|
}
|