From ff01984a6980f0be4dbc49afdbf68d4dc5c779bf Mon Sep 17 00:00:00 2001 From: Godopu Date: Sun, 12 Jul 2026 23:18:30 +0900 Subject: [PATCH] docs(workflow): clarify agent standby behavior after PASS verdict Update the multi-agent workflow guidelines to explicitly specify that agent sessions should not be stopped automatically upon receiving a PASS verdict. Instead, they must remain in a standby (running) state, awaiting further task instructions from the user, consistent with the project's lifecycle charter. --- .agents/multi_agent_workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.agents/multi_agent_workflow.md b/.agents/multi_agent_workflow.md index 366bc66..cd3660d 100644 --- a/.agents/multi_agent_workflow.md +++ b/.agents/multi_agent_workflow.md @@ -78,7 +78,7 @@ 2. 리뷰어들은 `git diff`를 바탕으로 개별 검증을 수행하고 보고서 형태의 리뷰 피드백을 출력합니다. - **반려 (`NOT PASS`)** -> 피드백 요약본을 Planner 에이전트에게 전송하여 상위 레벨 계획(Rev.n) 개시. - **통과 (`PASS`)** -> 모든 검토 사항이 해결되었음을 명시. -3. 모든 리뷰어가 PASS를 발행하면 작업을 완결하고 세션을 안전하게 종료(`multi-agent-mux-stop`)합니다. +3. 모든 리뷰어가 PASS를 발행하면 작업을 완결하고, 다른 에이전트 세션들은 종료하지 않고 다음 태스크 지시가 있을 때까지 프롬프트 대기 상태(Standby)로 유지합니다. ---