videodraft 0.3.7 → 0.4.0
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 +25 -21
- package/dist/index.js +800 -96
- package/package.json +1 -1
- package/skills/index.json +9 -9
- package/skills/videodraft/SKILL.md +46 -14
- package/skills/videodraft/references/examples.md +68 -5
- package/skills/videodraft/references/models.md +107 -12
- package/skills/videodraft/references/pipeline.md +34 -19
package/README.md
CHANGED
|
@@ -45,6 +45,9 @@ videodraft generate voice-changer ./speech.wav --voice elevenlabs-kPzsL2i3teMYv0
|
|
|
45
45
|
videodraft generate dub ./clip.mp4 --to es --duration 30 --download dubbed.mp4
|
|
46
46
|
videodraft upscale image ./photo.png --scale 4x --download ./photo-4x.png
|
|
47
47
|
videodraft avatar create ./founder.jpg --script "$(videodraft avatar script 'our launch' --json | jq -r .script)"
|
|
48
|
+
videodraft edit video ./clip.mp4 "Add falling snow" --model grok-imagine-video-edit --download ./clip-snow.mp4
|
|
49
|
+
videodraft edit motion ./character.png "Apply the reference dance" --motion-video ./dance.mp4 --download ./character-dance.mp4
|
|
50
|
+
videodraft generate video "Match this performance" --model kling-o3-video-ref-edit --ref-video ./performance.mp4 --ref ./wardrobe.png --download ./guided.mp4
|
|
48
51
|
```
|
|
49
52
|
|
|
50
53
|
Discover the full asset lane:
|
|
@@ -55,6 +58,7 @@ videodraft tools list --lane assets
|
|
|
55
58
|
videodraft tools list --lane asset_io
|
|
56
59
|
videodraft models image
|
|
57
60
|
videodraft models video
|
|
61
|
+
videodraft models video --category video_edit
|
|
58
62
|
videodraft models audio
|
|
59
63
|
```
|
|
60
64
|
|
|
@@ -75,18 +79,18 @@ videodraft export <project> --download final.mp4
|
|
|
75
79
|
|
|
76
80
|
## Commands
|
|
77
81
|
|
|
78
|
-
| Group
|
|
79
|
-
|
|
80
|
-
| Auth
|
|
81
|
-
| Account
|
|
82
|
-
| Projects
|
|
83
|
-
| Pipeline
|
|
84
|
-
| Generate
|
|
85
|
-
| Jobs
|
|
86
|
-
| Media
|
|
87
|
-
| Everything else | `tools list [--lane assets\|asset_io\|project_data\|production]` `tools schema <name>` `call <tool> --args '<json>'`
|
|
88
|
-
| Agents
|
|
89
|
-
| Utility
|
|
82
|
+
| Group | Commands |
|
|
83
|
+
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
84
|
+
| Auth | `login` `logout` `whoami` |
|
|
85
|
+
| Account | `credits` `costs [model]` `models [image\|video\|audio\|voices\|styles]` `workspaces` `sessions list/create` |
|
|
86
|
+
| Projects | `projects list/get/delete/favorite/open` `checkpoint create/list/restore` |
|
|
87
|
+
| Pipeline | `create` `shots` `produce` (`--mode full_video`) `attach` `finalize` `export` `export-status` `video-prompts` |
|
|
88
|
+
| Generate | `generate image/video/voiceover/music/sound-effect/dialogue/voice-changer/dub` `edit video/motion` `upscale image/video` `avatar script/create/render/get/list/fabric/lipsync` |
|
|
89
|
+
| Jobs | `status <job>` `wait <job>` `generations` |
|
|
90
|
+
| Media | `upload <file>` `media list` `describe <url\|file>` `download <url>` |
|
|
91
|
+
| Everything else | `tools list [--lane assets\|asset_io\|project_data\|production]` `tools schema <name>` `call <tool> --args '<json>'` |
|
|
92
|
+
| Agents | `skills install [--agent claude\|codex\|cursor]` `skills path` |
|
|
93
|
+
| Utility | `config get/set/path` `completion bash\|zsh` `docs` `--version` |
|
|
90
94
|
|
|
91
95
|
`call` reaches **every** VideoDraft API tool (the full MCP catalog), including ones without a curated command — new platform features work in the CLI the day they ship.
|
|
92
96
|
|
|
@@ -118,15 +122,15 @@ gh skill install videodraft-ai/cli videodraft --scope user # GitHub CLI; name
|
|
|
118
122
|
|
|
119
123
|
## Environment variables
|
|
120
124
|
|
|
121
|
-
| Variable
|
|
122
|
-
|
|
123
|
-
| `VIDEODRAFT_API_KEY`
|
|
124
|
-
| `VIDEODRAFT_BASE_URL`
|
|
125
|
-
| `VIDEODRAFT_CONFIG_DIR`
|
|
126
|
-
| `VIDEODRAFT_TELEMETRY=0`
|
|
127
|
-
| `DO_NOT_TRACK=1`
|
|
128
|
-
| `VIDEODRAFT_NO_UPDATE_CHECK=1`
|
|
129
|
-
| `HTTPS_PROXY` / `HTTP_PROXY` / `NO_PROXY` | Proxy support
|
|
125
|
+
| Variable | Purpose |
|
|
126
|
+
| ----------------------------------------- | --------------------------------------------------- |
|
|
127
|
+
| `VIDEODRAFT_API_KEY` | Bearer token (`vd_mcp_…`) — skips the login flow |
|
|
128
|
+
| `VIDEODRAFT_BASE_URL` | Target server (default `https://app.videodraft.ai`) |
|
|
129
|
+
| `VIDEODRAFT_CONFIG_DIR` | Config location (default `~/.config/videodraft`) |
|
|
130
|
+
| `VIDEODRAFT_TELEMETRY=0` | Disable telemetry |
|
|
131
|
+
| `DO_NOT_TRACK=1` | Disable telemetry (and the update check) |
|
|
132
|
+
| `VIDEODRAFT_NO_UPDATE_CHECK=1` | Disable the update notice |
|
|
133
|
+
| `HTTPS_PROXY` / `HTTP_PROXY` / `NO_PROXY` | Proxy support |
|
|
130
134
|
|
|
131
135
|
## Telemetry
|
|
132
136
|
|