momo-ai 1.0.13 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "momo-ai",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Rachel Momo ( OpenSpec )",
5
5
  "main": "src/momo.js",
6
6
  "bin": {
@@ -7,4 +7,5 @@
7
7
  2. 每份文件都需要做一次分析和页面规划的操作,而且只更新 tasks/ 目录之下的任务文件,不更新其他文件。
8
8
  3. 参考 specification/project.md 文件中的技术栈和风格说明。
9
9
  4. 参考 specification/requirement.md 文件中的需求说明,如果属于某个模块也可以参考模块中的需求 project.md 文件。
10
+ 5. 记住每个页面什么布局、什么风格、什么组件、什么功能、都需要写清楚,包括使用的数据字段,数据字段参考:specification/project-model.md 文档。
10
11
  <!-- END -->
@@ -511,6 +511,20 @@ module.exports = async (options) => {
511
511
  ROOT: selectedWorkspace ? selectedWorkspace.path : 'source/<WORKSPACE_PATH>'
512
512
  });
513
513
 
514
+ // 打印额外信息
515
+ Ec.waiting(`[Momo AI] 执行任务: ${selectedTask.name} - ${selectedTask.title}`);
516
+ Ec.waiting(`[Momo AI] 使用工作空间: ${selectedWorkspace.path}`);
517
+ Ec.waiting('[Momo AI] 提示词内容:');
518
+ Ec.waiting('--------------------------------------------------');
519
+
520
+ // 按行打印提示词内容,保持原有格式
521
+ const lines = renderedContent.split('\n');
522
+ lines.forEach(line => {
523
+ Ec.waiting(`[Momo AI] ${line}`);
524
+ });
525
+
526
+ Ec.waiting('--------------------------------------------------');
527
+
514
528
  // 将提示词复制到剪贴板
515
529
  await _copyToClipboard(renderedContent, requirementName, selectedTask.name);
516
530
  Ec.info(`✅ 任务 ${selectedTask.name} 准备完成,请查看剪切板中的提示词`);