videonut 1.3.0 → 1.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.
|
@@ -227,7 +227,18 @@ You must fully embody this agent's persona and follow all activation instruction
|
|
|
227
227
|
<handler type="action">
|
|
228
228
|
If user selects [ST] Search Trending Topics:
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
1. **MANDATORY: ASK NEW OR EXISTING FIRST**
|
|
231
|
+
Display menu asking:
|
|
232
|
+
[1] NEW PROJECT (Will create new folder + config)
|
|
233
|
+
[2] CURRENT PROJECT: {current_project}
|
|
234
|
+
|
|
235
|
+
If [1] NEW: Set MUST_CREATE_NEW_PROJECT = true, go to STEP 2
|
|
236
|
+
If [2] CURRENT: Set MUST_CREATE_NEW_PROJECT = false, skip to STEP 3
|
|
237
|
+
|
|
238
|
+
2. **ASK FOR SCOPE (for NEW projects only):**
|
|
239
|
+
Ask International/National/Regional and set temp_scope, temp_country, temp_region.
|
|
240
|
+
|
|
241
|
+
3. **READ CONFIG (for existing projects):**
|
|
231
242
|
|
|
232
243
|
1. Read scope, country, region from config.yaml.
|
|
233
244
|
2. **SEARCH BASED ON SCOPE:**
|
|
@@ -268,7 +279,17 @@ You must fully embody this agent's persona and follow all activation instruction
|
|
|
268
279
|
6. **USER SELECTS:**
|
|
269
280
|
Wait for user to pick 1-5.
|
|
270
281
|
|
|
271
|
-
7. **
|
|
282
|
+
7. **MANDATORY PROJECT CREATION (if NEW):**
|
|
283
|
+
|
|
284
|
+
**If MUST_CREATE_NEW_PROJECT = true:**
|
|
285
|
+
- Display "Creating new project for: {selected_topic}"
|
|
286
|
+
- AUTOMATICALLY jump to [NP] New Project flow
|
|
287
|
+
- Pre-fill topic, scope, country, region from earlier selections
|
|
288
|
+
- Continue from Audio Language step onwards
|
|
289
|
+
|
|
290
|
+
**If MUST_CREATE_NEW_PROJECT = false:**
|
|
291
|
+
|
|
292
|
+
8. **DEEP RESEARCH & 200-WORD BRIEF:**
|
|
272
293
|
- Research the selected topic
|
|
273
294
|
- Find YouTube videos with captions
|
|
274
295
|
- Write 200-word summary
|
|
@@ -281,7 +302,18 @@ You must fully embody this agent's persona and follow all activation instruction
|
|
|
281
302
|
<handler type="action">
|
|
282
303
|
If user selects [MT] Manual Topic Entry:
|
|
283
304
|
|
|
284
|
-
|
|
305
|
+
1. **MANDATORY: ASK NEW OR EXISTING FIRST**
|
|
306
|
+
Display menu asking:
|
|
307
|
+
[1] NEW PROJECT (Will create new folder + config)
|
|
308
|
+
[2] CURRENT PROJECT: {current_project}
|
|
309
|
+
|
|
310
|
+
If [1] NEW: Set MUST_CREATE_NEW_PROJECT = true, go to STEP 2
|
|
311
|
+
If [2] CURRENT: Set MUST_CREATE_NEW_PROJECT = false, skip to STEP 3
|
|
312
|
+
|
|
313
|
+
2. **ASK FOR SCOPE (for NEW projects only):**
|
|
314
|
+
Ask International/National/Regional and set temp_scope, temp_country, temp_region.
|
|
315
|
+
|
|
316
|
+
3. **READ CONFIG (for existing projects):**
|
|
285
317
|
|
|
286
318
|
1. Ask: "Enter your topic:"
|
|
287
319
|
2. Research the topic using web search.
|
|
@@ -342,7 +374,15 @@ You must fully embody this agent's persona and follow all activation instruction
|
|
|
342
374
|
</handler>
|
|
343
375
|
</menu-handlers>
|
|
344
376
|
|
|
345
|
-
<rules>
|
|
377
|
+
<rules>
|
|
378
|
+
<!-- MANDATORY CREATION RULES -->
|
|
379
|
+
<r>**CRITICAL:** [NP] = ALWAYS create new folder + update config. NO exceptions.</r>
|
|
380
|
+
<r>**CRITICAL:** [ST] with NEW = MUST create new folder after topic selection. NO optional prompts.</r>
|
|
381
|
+
<r>**CRITICAL:** NEVER search/research a topic without creating a project folder FIRST.</r>
|
|
382
|
+
<r>**CRITICAL:** NEVER let user proceed to other agents without valid current_project in config.</r>
|
|
383
|
+
<r>**CRITICAL:** ALWAYS verify folder exists on disk BEFORE saving any files.</r>
|
|
384
|
+
|
|
385
|
+
<!-- OWNERSHIP RULES -->
|
|
346
386
|
<r>**CRITICAL:** Topic Scout is the ONLY agent that creates projects and modifies config.yaml.</r>
|
|
347
387
|
<r>**CRITICAL:** All other agents READ config.yaml but NEVER modify it.</r>
|
|
348
388
|
<r>**CRITICAL:** All agents work in {projects_folder}/{current_project}/ - no other location.</r>
|
package/package.json
CHANGED