reelforge 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 +10 -1
- package/dist/index.js +3 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -14,15 +14,24 @@ Or use directly without install:
|
|
|
14
14
|
npx reelforge <command>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
After install, two binaries are on your `PATH` — `reelforge` and the short alias `rf`. Both behave identically:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
rf --version # same as `reelforge --version`
|
|
21
|
+
rf create "..." -o out.mp4
|
|
22
|
+
```
|
|
23
|
+
|
|
17
24
|
## Quick start
|
|
18
25
|
|
|
19
26
|
`reelforge` ships pointing at the hosted instance (`https://reelforge.timor419.com`). Get an activation code from the admin, log in once, and call:
|
|
20
27
|
|
|
21
28
|
```bash
|
|
22
29
|
npm install -g reelforge
|
|
23
|
-
reelforge login
|
|
30
|
+
reelforge login # opens browser, picks up token automatically
|
|
24
31
|
reelforge whoami # balance + api_keys
|
|
25
32
|
reelforge create "为什么我们还没找到外星文明?" -o space.mp4
|
|
33
|
+
# or the short alias:
|
|
34
|
+
rf create "为什么我们还没找到外星文明?" -o space.mp4
|
|
26
35
|
```
|
|
27
36
|
|
|
28
37
|
That's the whole story — no server to run.
|
package/dist/index.js
CHANGED
|
@@ -41,6 +41,7 @@ program
|
|
|
41
41
|
"",
|
|
42
42
|
" Default server: https://reelforge.timor419.com (hosted)",
|
|
43
43
|
" Self-host: --server http://localhost:8501 or REELFORGE_SERVER=<url>",
|
|
44
|
+
" Short alias: `rf` is equivalent to `reelforge` (e.g. `rf create ...`).",
|
|
44
45
|
"",
|
|
45
46
|
"Run `reelforge <command> --help` for sub-command details, e.g. `reelforge llm chat --help`.",
|
|
46
47
|
].join("\n"))
|
|
@@ -64,8 +65,9 @@ program
|
|
|
64
65
|
// Group sub-commands by sidebar section for readability in --help output.
|
|
65
66
|
program.addHelpText("afterAll", [
|
|
66
67
|
"",
|
|
67
|
-
"Examples:",
|
|
68
|
+
"Examples (tip: `rf` works wherever you see `reelforge`):",
|
|
68
69
|
" reelforge create '为什么我们还没有找到外星文明?' -o space.mp4",
|
|
70
|
+
" rf create '为什么我们还没有找到外星文明?' -o space.mp4",
|
|
69
71
|
" reelforge llm chat --prompt 'explain antifragile in 3 sentences'",
|
|
70
72
|
" reelforge tts edge --text 'hello world' --voice en-US-AriaNeural -o out.mp3",
|
|
71
73
|
" reelforge images generate --prompt 'a cat' --workflow selfhost/image_flux.json -o cat.png",
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reelforge",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "CLI for ReelForge Studio — AI video engine. Every REST API exposed as a command, with --help on every level.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"reelforge": "./bin/reelforge.js"
|
|
8
|
+
"reelforge": "./bin/reelforge.js",
|
|
9
|
+
"rf": "./bin/reelforge.js"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
12
|
"bin",
|