3de9101的任务收尾

This commit is contained in:
2025-12-19 03:58:34 +08:00
parent 3de9101705
commit 4cf9fc7a60
21 changed files with 315 additions and 2641 deletions

View File

@@ -302,6 +302,21 @@ jar_path = "lib/plantuml.jar"
# 默认使用系统 PATH 中的 java
# java_path = "/usr/bin/java"
# 流程图渲染配置
# LLM 编写 PlantUML 时应在文件头部添加这些配置:
# skinparam defaultFontName "<font_name>"
# skinparam dpi <dpi>
# scale <scale>
# 默认字体名称
font_name = "Arial"
# DPI 值(影响图片清晰度)
dpi = 300
# 缩放系数0.5 表示缩小到 50%
scale = 0.5
################################################################################
# [decide] - 待定项确认配置
################################################################################

View File

@@ -55,8 +55,11 @@ class FlowTracker:
# 生成新的确认 key
key = self.storage.save_back_confirm_state(phase, reason)
output.warn("返工需要确认。请先完成准备工作,然后执行:")
output.info(f"aide flow back-confirm --key {key}")
output.warn("返工需要确认。请先完成以下准备工作:")
output.info("1. 触发 rework skill 学习返工流程指南")
output.info("2. 按照指南更新任务文档(记录返工原因和新需求)")
output.info("3. 完成准备工作后执行:")
output.info(f" aide flow back-confirm --key {key}")
return True
except FlowError as exc: