@argo-video/cli 0.3.0 → 0.3.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/README.md +13 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -17,7 +17,8 @@ Write a demo script with Playwright. Add a voiceover manifest. Run one command.
|
|
|
17
17
|
|
|
18
18
|
## Showcase
|
|
19
19
|
|
|
20
|
-
[Watch the demo video](
|
|
20
|
+
[Watch the demo video](
|
|
21
|
+
https://gist.github.com/user-attachments/assets/ddc11570-7149-4203-8c65-5700386bba5b)
|
|
21
22
|
|
|
22
23
|
> *This demo was recorded by Argo, using Argo. Yes, really.*
|
|
23
24
|
|
|
@@ -221,6 +222,17 @@ choco install ffmpeg # Windows
|
|
|
221
222
|
|
|
222
223
|
4. **Export** — ffmpeg combines the screen recording (WebM) with the aligned narration (WAV) into an H.264 MP4.
|
|
223
224
|
|
|
225
|
+
## LLM Skill
|
|
226
|
+
|
|
227
|
+
Argo ships as a **Claude Code skill** so LLMs can create demo videos autonomously. Install it as a plugin:
|
|
228
|
+
|
|
229
|
+
```bash
|
|
230
|
+
# In Claude Code
|
|
231
|
+
/plugin marketplace add shreyaskarnik/argo
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
The skill teaches Claude how to write demo scripts, voiceover manifests, overlay cues, and run the pipeline — no manual guidance needed.
|
|
235
|
+
|
|
224
236
|
## License
|
|
225
237
|
|
|
226
238
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argo-video/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Turn Playwright demo scripts into polished product demo videos with AI voiceover",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -10,8 +10,9 @@
|
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
13
14
|
"import": "./dist/index.js",
|
|
14
|
-
"
|
|
15
|
+
"default": "./dist/index.js"
|
|
15
16
|
}
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|