cerevox 1.4.0 → 1.4.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.
@@ -328,4 +328,26 @@ subtitles:
328
328
 
329
329
  **⚠️ 重要提醒:绝不允许跳过memory_bank的实时更新,这是保证项目状态一致性的关键机制。**
330
330
 
331
+ ### 🎯 任务完成后的强制性检查
332
+
333
+ **在每个任务执行完成后,必须执行以下最终检查:**
334
+
335
+ 1. **验证所有memory_bank文件已更新**
336
+ - [ ] `action_context.md` 记录了完整的操作流程
337
+ - [ ] `material_context.md` 包含所有生成的素材信息
338
+ - [ ] `iteration_context.md` 标记当前迭代状态为completed
339
+ - [ ] `project_context.md` 反映最新的项目状态
340
+
341
+ 2. **确认数据一致性**
342
+ - [ ] 素材文件路径与material_context.md中的记录一致
343
+ - [ ] 时长信息在不同文件间保持同步
344
+ - [ ] 版本号和时间戳准确无误
345
+
346
+ 3. **记录任务完成状态**
347
+ - [ ] 在action_context.md中添加任务完成的最终记录
348
+ - [ ] 更新project_context.md的updated_at时间戳
349
+ - [ ] 如有输出文件,确保在iteration_context.md中记录
350
+
351
+ **🚨 关键原则:任务执行完成 ≠ 工作完成,只有memory_bank完全更新后才算真正完成!**
352
+
331
353
  **初始化完成后,即可进入具体的视频制作流程。**
@@ -112,8 +112,12 @@ projects/<id>/
112
112
 
113
113
  ### 场景类型规则
114
114
 
115
- - 常规场景:包含`start_frame`和`video_prompt`字段,使用`generate-image` + `generate-video`工作流
116
- - 科学原理场景:标记`type: "principle"`,包含`video_prompt`字段,使用`generate-principle-video`工具,无需`start_frame`字段
115
+ - **常规场景**:包含`start_frame`和`video_prompt`字段,使用`generate-image` + `generate-video`工作流
116
+ - **科学原理场景**:
117
+ - **使用条件**:仅当用户明确指定需要科学原理演示视频时才启用
118
+ - **标记方式**:`type: "principle"`
119
+ - **字段要求**:包含`video_prompt`字段,使用`generate-principle-video`工具,无需`start_frame`字段
120
+ - **默认策略**:除非用户明确要求,否则默认使用常规场景类型
117
121
 
118
122
  ### story_board.json 示例
119
123
 
@@ -356,8 +360,9 @@ VideoProject支持转场滤镜,在`timeline.tracks[].clips[]`中配置`transit
356
360
  9. `download-outputs` → `zerocut-project-close`
357
361
 
358
362
  ### B. 科学原理解释
359
- * 用户要求时才启用科学原理解释
363
+ * **仅在用户明确要求时才启用**科学原理解释功能
360
364
  * 使用`generate-principle-video`创建演示动画
365
+ * **重要**:不要主动建议使用科学原理视频,除非用户的需求明确涉及科学概念演示
361
366
 
362
367
  ### C. 本地图片素材
363
368
  * 用户提供图片时使用`upload-local-image`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cerevox",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "TypeScript SDK for browser automation and secure command execution in highly available and scalable micro computer environments",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",