From 5d981b16773fad3bcd61392a62847c4710d62124 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Sat, 30 May 2026 10:52:07 +0800 Subject: [PATCH] auto-sync: 2026-05-30 10:52:07 --- src/daemon/ticker.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/daemon/ticker.py b/src/daemon/ticker.py index a4f2198..2f7cb5e 100644 --- a/src/daemon/ticker.py +++ b/src/daemon/ticker.py @@ -501,9 +501,8 @@ class Ticker: {f'有 {summary["failed"]} 个 sub task failed,优先判断是应该重试、换人、还是调整方案。' if summary['failed'] > 0 else '无失败'} ### 你可以 -- 创建新一轮 sub tasks: curl -X POST http://localhost:8083/api/projects/{project_id}/tasks \\ - -H 'Content-Type: application/json' \\ - -d '{{"title": "...", "description": "...", "parent_task": "{parent_task.id}", "assignee": "zhangfei-dev"}}' +- 创建新一轮 sub tasks: POST http://localhost:8083/api/projects/{project_id}/tasks + body: {"title": "...", "description": "...", "parent_task": "{parent_task.id}", "assignee": "zhangfei-dev"} - 调整 goal(更新 parent task description/must_haves) - 标记完成(如果 goal 已达成,回复 GOAL_ACHIEVED)