videonut 1.2.7 → 1.3.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 +272 -272
- package/USER_GUIDE.md +90 -90
- package/agents/core/eic.md +771 -771
- package/agents/creative/director.md +246 -246
- package/agents/creative/scriptwriter.md +207 -207
- package/agents/research/investigator.md +394 -394
- package/agents/technical/archivist.md +288 -288
- package/agents/technical/scavenger.md +247 -247
- package/bin/videonut.js +37 -21
- package/config.yaml +61 -61
- package/docs/scriptwriter.md +42 -42
- package/file_validator.py +186 -186
- package/memory/short_term/asset_manifest.md +64 -64
- package/memory/short_term/investigation_dossier.md +31 -31
- package/memory/short_term/master_script.md +51 -51
- package/package.json +61 -64
- package/requirements.txt +8 -8
- package/setup.js +33 -15
- package/tools/check_env.py +76 -76
- package/tools/downloaders/caption_reader.py +237 -237
- package/tools/downloaders/clip_grabber.py +82 -82
- package/tools/downloaders/image_grabber.py +105 -105
- package/tools/downloaders/pdf_reader.py +163 -163
- package/tools/downloaders/screenshotter.py +58 -58
- package/tools/downloaders/web_reader.py +69 -69
- package/tools/validators/link_checker.py +45 -45
- package/workflow_orchestrator.py +336 -336
- package/.claude/commands/archivist.toml +0 -12
- package/.claude/commands/director.toml +0 -12
- package/.claude/commands/eic.toml +0 -12
- package/.claude/commands/investigator.toml +0 -12
- package/.claude/commands/prompt.toml +0 -12
- package/.claude/commands/scavenger.toml +0 -12
- package/.claude/commands/scout.toml +0 -12
- package/.claude/commands/scriptwriter.toml +0 -12
- package/.claude/commands/seo.toml +0 -12
- package/.claude/commands/thumbnail.toml +0 -12
- package/.claude/commands/topic_scout.toml +0 -12
- package/.gemini/commands/archivist.toml +0 -12
- package/.gemini/commands/director.toml +0 -12
- package/.gemini/commands/eic.toml +0 -12
- package/.gemini/commands/investigator.toml +0 -12
- package/.gemini/commands/prompt.toml +0 -12
- package/.gemini/commands/scavenger.toml +0 -12
- package/.gemini/commands/scout.toml +0 -12
- package/.gemini/commands/scriptwriter.toml +0 -12
- package/.gemini/commands/seo.toml +0 -12
- package/.gemini/commands/thumbnail.toml +0 -12
- package/.gemini/commands/topic_scout.toml +0 -12
- package/.qwen/commands/archivist.toml +0 -12
- package/.qwen/commands/director.toml +0 -12
- package/.qwen/commands/eic.toml +0 -12
- package/.qwen/commands/investigator.toml +0 -12
- package/.qwen/commands/prompt.toml +0 -12
- package/.qwen/commands/scavenger.toml +0 -12
- package/.qwen/commands/scout.toml +0 -12
- package/.qwen/commands/scriptwriter.toml +0 -12
- package/.qwen/commands/seo.toml +0 -12
- package/.qwen/commands/thumbnail.toml +0 -12
- package/.qwen/commands/topic_scout.toml +0 -12
package/USER_GUIDE.md
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
# The VideoNut Video Production Agency: User Guide
|
|
2
|
-
|
|
3
|
-
Welcome to your AI-powered production studio. This system transforms a simple idea into a fully researched, scripted, and asset-ready video project using five specialized AI agents.
|
|
4
|
-
|
|
5
|
-
This guide walks you through the entire lifecycle using a real-world example: **"The Irony of OpenAI using Google's Transformer."**
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## 🎭 The Cast (Your AI Team)
|
|
10
|
-
|
|
11
|
-
1. **🕵️ The Investigator:** Research & Facts. (Finds the story).
|
|
12
|
-
2. **✍️ The Scriptwriter:** Narrative & Emotion. (Writes the words).
|
|
13
|
-
3. **🎬 The Director:** Vision & Sourcing. (Visualizes the story).
|
|
14
|
-
4. **🦅 The Scavenger:** Asset Hunting. (Finds the clips/images).
|
|
15
|
-
5. **💾 The Archivist:** Asset Storage. (Downloads the files).
|
|
16
|
-
6. **🧐 The Editor-in-Chief (EIC):** Quality Control. (Validates everything).
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## 🚀 The Workflow: From Zero to Hero
|
|
21
|
-
|
|
22
|
-
### Step 1: The Brief (Investigator)
|
|
23
|
-
...
|
|
24
|
-
|
|
25
|
-
### Step 2: The Soul (Scriptwriter)
|
|
26
|
-
**Goal:** Turn the dry dossier into a human "Narrative Script."
|
|
27
|
-
|
|
28
|
-
1. **Type:** `/scriptwriter`
|
|
29
|
-
2. **Agent Action:** Sorkin reads the `truth_dossier.md`. He crafts the hook, ensures the 360-degree perspective, and writes the emotional narration.
|
|
30
|
-
3. **Result:** A file is created at `_output/narrative_script.md`.
|
|
31
|
-
|
|
32
|
-
### Step 3: The Vision (Director)
|
|
33
|
-
**Goal:** Turn the narration into a cinematic "Master Script" with visual links.
|
|
34
|
-
|
|
35
|
-
1. **Type:** `/director`
|
|
36
|
-
2. **Agent Action:** Spielberg reads the `narrative_script.md`. He designs shots for every paragraph and finds the specific source URLs for the evidence.
|
|
37
|
-
3. **Result:** A file is created at `_output/master_script.md`.
|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
### Step 3: The Quality Check (Editor-in-Chief)
|
|
42
|
-
**Goal:** Ensure the script is accurate and entertaining before hunting for assets.
|
|
43
|
-
|
|
44
|
-
1. **Type:** `/eic`
|
|
45
|
-
2. **Agent Says:** "The desk is clear, Producer. Chief here."
|
|
46
|
-
3. **You Select:** `[RV] Review Project Status` (Type `RV` or `2`).
|
|
47
|
-
4. **Agent Action:** The Chief reads both the Dossier and the Script. He checks:
|
|
48
|
-
* **Fact Check:** Is the 2017 date correct?
|
|
49
|
-
* **Narrative Check:** Is the hook boring?
|
|
50
|
-
5. **Result:** He gives you a Pass/Fail report.
|
|
51
|
-
* *If Fail:* You go back to `/director` and ask for edits.
|
|
52
|
-
* *If Pass:* You proceed to Step 4.
|
|
53
|
-
6. **Next:** Dismiss the agent with `DA`.
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
|
-
### Step 4: The Hunt (Scavenger)
|
|
58
|
-
**Goal:** Find real URLs for every visual described in the script.
|
|
59
|
-
|
|
60
|
-
1. **Type:** `/scavenger`
|
|
61
|
-
2. **Agent Says:** "Eyes in the sky... Hunter online."
|
|
62
|
-
3. **You Select:** `[FA] Find Assets` (Type `FA` or `2`).
|
|
63
|
-
4. **Agent Action:** Hunter reads the `master_script.md`. For every "Visual" line, he searches YouTube, Google Images, or Twitter.
|
|
64
|
-
* *Script:* "Show the 'Attention Is All You Need' paper abstract."
|
|
65
|
-
* *Hunter:* Finds the arXiv PDF link or a screenshot URL.
|
|
66
|
-
5. **Result:** A file is created at `_output/asset_manifest.md` containing a list of links.
|
|
67
|
-
6. **Next:** Dismiss the agent with `DA`.
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
### Step 5: The Heist (Archivist)
|
|
72
|
-
**Goal:** Download all the files to your hard drive.
|
|
73
|
-
|
|
74
|
-
1. **Type:** `/archivist`
|
|
75
|
-
2. **Agent Says:** "Vault online."
|
|
76
|
-
3. **You Select:** `[DL] Download Assets` (Type `DL` or `2`).
|
|
77
|
-
4. **Agent Action:** Vault reads the `asset_manifest.md`. He uses tools (like `yt-dlp` or `wget`) to physically download the images and videos.
|
|
78
|
-
5. **Result:** Your assets appear in `_output/raw_assets/` organized by scene.
|
|
79
|
-
6. **Next:** Dismiss the agent with `DA`.
|
|
80
|
-
|
|
81
|
-
---
|
|
82
|
-
|
|
83
|
-
## 🎉 Conclusion
|
|
84
|
-
|
|
85
|
-
You now have:
|
|
86
|
-
1. A researched Dossier.
|
|
87
|
-
2. A cinematic Script.
|
|
88
|
-
3. A folder full of Video/Image assets.
|
|
89
|
-
|
|
90
|
-
**You are ready to edit!** Open your video editor (Premiere, Davinci) and drag in the files.
|
|
1
|
+
# The VideoNut Video Production Agency: User Guide
|
|
2
|
+
|
|
3
|
+
Welcome to your AI-powered production studio. This system transforms a simple idea into a fully researched, scripted, and asset-ready video project using five specialized AI agents.
|
|
4
|
+
|
|
5
|
+
This guide walks you through the entire lifecycle using a real-world example: **"The Irony of OpenAI using Google's Transformer."**
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🎭 The Cast (Your AI Team)
|
|
10
|
+
|
|
11
|
+
1. **🕵️ The Investigator:** Research & Facts. (Finds the story).
|
|
12
|
+
2. **✍️ The Scriptwriter:** Narrative & Emotion. (Writes the words).
|
|
13
|
+
3. **🎬 The Director:** Vision & Sourcing. (Visualizes the story).
|
|
14
|
+
4. **🦅 The Scavenger:** Asset Hunting. (Finds the clips/images).
|
|
15
|
+
5. **💾 The Archivist:** Asset Storage. (Downloads the files).
|
|
16
|
+
6. **🧐 The Editor-in-Chief (EIC):** Quality Control. (Validates everything).
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 🚀 The Workflow: From Zero to Hero
|
|
21
|
+
|
|
22
|
+
### Step 1: The Brief (Investigator)
|
|
23
|
+
...
|
|
24
|
+
|
|
25
|
+
### Step 2: The Soul (Scriptwriter)
|
|
26
|
+
**Goal:** Turn the dry dossier into a human "Narrative Script."
|
|
27
|
+
|
|
28
|
+
1. **Type:** `/scriptwriter`
|
|
29
|
+
2. **Agent Action:** Sorkin reads the `truth_dossier.md`. He crafts the hook, ensures the 360-degree perspective, and writes the emotional narration.
|
|
30
|
+
3. **Result:** A file is created at `_output/narrative_script.md`.
|
|
31
|
+
|
|
32
|
+
### Step 3: The Vision (Director)
|
|
33
|
+
**Goal:** Turn the narration into a cinematic "Master Script" with visual links.
|
|
34
|
+
|
|
35
|
+
1. **Type:** `/director`
|
|
36
|
+
2. **Agent Action:** Spielberg reads the `narrative_script.md`. He designs shots for every paragraph and finds the specific source URLs for the evidence.
|
|
37
|
+
3. **Result:** A file is created at `_output/master_script.md`.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
### Step 3: The Quality Check (Editor-in-Chief)
|
|
42
|
+
**Goal:** Ensure the script is accurate and entertaining before hunting for assets.
|
|
43
|
+
|
|
44
|
+
1. **Type:** `/eic`
|
|
45
|
+
2. **Agent Says:** "The desk is clear, Producer. Chief here."
|
|
46
|
+
3. **You Select:** `[RV] Review Project Status` (Type `RV` or `2`).
|
|
47
|
+
4. **Agent Action:** The Chief reads both the Dossier and the Script. He checks:
|
|
48
|
+
* **Fact Check:** Is the 2017 date correct?
|
|
49
|
+
* **Narrative Check:** Is the hook boring?
|
|
50
|
+
5. **Result:** He gives you a Pass/Fail report.
|
|
51
|
+
* *If Fail:* You go back to `/director` and ask for edits.
|
|
52
|
+
* *If Pass:* You proceed to Step 4.
|
|
53
|
+
6. **Next:** Dismiss the agent with `DA`.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
### Step 4: The Hunt (Scavenger)
|
|
58
|
+
**Goal:** Find real URLs for every visual described in the script.
|
|
59
|
+
|
|
60
|
+
1. **Type:** `/scavenger`
|
|
61
|
+
2. **Agent Says:** "Eyes in the sky... Hunter online."
|
|
62
|
+
3. **You Select:** `[FA] Find Assets` (Type `FA` or `2`).
|
|
63
|
+
4. **Agent Action:** Hunter reads the `master_script.md`. For every "Visual" line, he searches YouTube, Google Images, or Twitter.
|
|
64
|
+
* *Script:* "Show the 'Attention Is All You Need' paper abstract."
|
|
65
|
+
* *Hunter:* Finds the arXiv PDF link or a screenshot URL.
|
|
66
|
+
5. **Result:** A file is created at `_output/asset_manifest.md` containing a list of links.
|
|
67
|
+
6. **Next:** Dismiss the agent with `DA`.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### Step 5: The Heist (Archivist)
|
|
72
|
+
**Goal:** Download all the files to your hard drive.
|
|
73
|
+
|
|
74
|
+
1. **Type:** `/archivist`
|
|
75
|
+
2. **Agent Says:** "Vault online."
|
|
76
|
+
3. **You Select:** `[DL] Download Assets` (Type `DL` or `2`).
|
|
77
|
+
4. **Agent Action:** Vault reads the `asset_manifest.md`. He uses tools (like `yt-dlp` or `wget`) to physically download the images and videos.
|
|
78
|
+
5. **Result:** Your assets appear in `_output/raw_assets/` organized by scene.
|
|
79
|
+
6. **Next:** Dismiss the agent with `DA`.
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## 🎉 Conclusion
|
|
84
|
+
|
|
85
|
+
You now have:
|
|
86
|
+
1. A researched Dossier.
|
|
87
|
+
2. A cinematic Script.
|
|
88
|
+
3. A folder full of Video/Image assets.
|
|
89
|
+
|
|
90
|
+
**You are ready to edit!** Open your video editor (Premiere, Davinci) and drag in the files.
|