vidpipe 1.3.11 → 1.3.13
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 +1 -4
- package/dist/cli.js +5430 -290
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +66 -6
- package/dist/index.js +5383 -308
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -149,7 +149,6 @@ vidpipe doctor # Check all prerequisites
|
|
|
149
149
|
| `--no-social` | Skip social media posts |
|
|
150
150
|
| `--no-social-publish` | Skip social media queue-build stage |
|
|
151
151
|
| `--no-captions` | Skip caption generation/burning |
|
|
152
|
-
| `--no-git` | Skip git commit/push |
|
|
153
152
|
| `--late-api-key <key>` | Override Late API key |
|
|
154
153
|
| `-v, --verbose` | Debug-level logging |
|
|
155
154
|
| `--progress` | Emit structured JSON progress events to stderr |
|
|
@@ -329,13 +328,12 @@ graph LR
|
|
|
329
328
|
K --> L[📱 Medium Posts]
|
|
330
329
|
L --> M[📰 Blog]
|
|
331
330
|
M --> N[📦 Queue Build]
|
|
332
|
-
N --> O[🔄 Git Push]
|
|
333
331
|
|
|
334
332
|
style A fill:#2d5a27,stroke:#4ade80
|
|
335
333
|
style B fill:#1e3a5f,stroke:#60a5fa
|
|
336
334
|
style E fill:#5a2d27,stroke:#f87171
|
|
337
335
|
style F fill:#5a4d27,stroke:#fbbf24
|
|
338
|
-
style
|
|
336
|
+
style N fill:#2d5a27,stroke:#4ade80
|
|
339
337
|
```
|
|
340
338
|
|
|
341
339
|
| # | Stage | Description |
|
|
@@ -354,7 +352,6 @@ graph LR
|
|
|
354
352
|
| 12 | **Medium Clip Posts** | Per-medium-clip social media posts for all 5 platforms |
|
|
355
353
|
| 13 | **Blog** | Dev.to blog post with frontmatter, web-sourced links via Exa |
|
|
356
354
|
| 14 | **Queue Build** | Builds publish queue from social posts with scheduled slots |
|
|
357
|
-
| 15 | **Git Push** | Auto-commits and pushes to `origin main` |
|
|
358
355
|
|
|
359
356
|
Each stage can be independently skipped with `--no-*` flags. A stage failure does not abort the pipeline — subsequent stages proceed with whatever data is available.
|
|
360
357
|
|