auto-sync: 2026-05-17 21:14:40

This commit is contained in:
cfdaily
2026-05-17 21:14:40 +08:00
parent af2382ddcb
commit aadd2e621f
2 changed files with 27 additions and 0 deletions
+4
View File
@@ -30,6 +30,10 @@ class Task:
risk_level: str = "standard"
estimated_duration_minutes: Optional[int] = None
escalated: bool = False
# v2.6.1 路由扩展字段(司马懿 BUG-1:不改 assignee 语义)
current_agent: Optional[str] = None # 当前阶段执行者(随状态流转更新)
previous_agent: Optional[str] = None # 前一阶段执行者(审计追溯)
next_capability: Optional[str] = None # Agent 声明的下一步需要的能力(Mode B)
@classmethod
def from_row(cls, row: Any) -> Task: