diff --git a/.agents/skills/multi-agent-mux-loop/SKILL.md b/.agents/skills/multi-agent-mux-loop/SKILL.md index f145861..78a4ce5 100644 --- a/.agents/skills/multi-agent-mux-loop/SKILL.md +++ b/.agents/skills/multi-agent-mux-loop/SKILL.md @@ -10,7 +10,7 @@ Run an autonomous planning-execution-review loop using multiple agents (Planner, Creator, Reviewers) in the workspace. It supports: - **Collaborative Planning** (`--plan` and `--plan-talk N`): Planner designs the solution, Creator challenges the plan for N turns to resolve edge cases, then implementation starts. -- **Self-Planning** (default): Planner를 거치지 않고 직접 구현을 시작합니다. 이때 최신 승격된 계획서(`.agents/reports/canary-projects-multi-agent-mux-planner-reviewer-claude/report-final.md`)가 존재한다면 이를 자동으로 로드하여 계획에 입각해 자율 구현합니다. +- **Existing Plan Execution** (default without `--plan`): Planner 에이전트에게 계획 작성을 위임하지 않고 기존에 승격된 계획서(`.agents/reports/canary-projects-multi-agent-mux-planner-reviewer-claude/report-final.md`)의 내용을 로드하여 작업자(Creator)의 판단하에 즉시 구현을 시작합니다. - **Targeted Peer-Review** (`--reviewer`): Runs custom-selected reviewer agents to verify code changes. - **Total Peer-Review** (`--all-reviewer`): Enforces a unanimous PASS verdict from all registered reviewer sessions. - **Self-Review** (default): Creator verifies its code changes autonomously without peer reviews. @@ -91,8 +91,8 @@ sequenceDiagram Dev->>Plan: send critiques (Discussion) Plan-->>Dev: update plan & reach consensus end - else Self-Planning - Loop->>Dev: notify direct task execution (Self-planned) + else Use Existing Plan (No --plan) + Loop->>Dev: notify task execution using existing plan end Loop->>Dev: delegate code implementation @@ -138,7 +138,7 @@ sequenceDiagram | 워크플로우 단계 | 해당 CLI 옵션 | 설명 | | :--- | :--- | :--- | -| **Phase 1: Planning** | `--plan` | Planner 에이전트를 기동하여 최초 계획 작성을 강제합니다. | +| **Phase 1: Planning** | `--plan` | Planner 에이전트를 기동하여 최초 계획 작성을 강제합니다. (옵션을 지정하지 않을 경우 새 계획서 작성을 생략하고 기존 계획에 의거하여 즉시 구현에 착수합니다.) | | **Phase 1: Debate** | `--plan-talk N` | Planner와 Creator가 상호 대화식 챌린지 루프를 `N`회 돌며 계획을 교차 정제합니다. | | **Phase 2: Execution** | (기본값) | `--target-agent`로 명시한 주 작업 세션에 코딩 태스크를 주입합니다. | | **Phase 3: Review** | `--reviewer "A,B"` | 지정된 리뷰어 세션 리스트(`A`, `B` 등)에 교차 Peer Review를 위임합니다. | @@ -150,7 +150,7 @@ sequenceDiagram ## Workflow ```bash -# 1. Self-planning + Self-review (direct task execution) +# 1. Existing-plan execution + Self-review (direct task execution using existing promoted plan) bash .agents/skills/multi-agent-mux-loop/scripts/run_loop.sh \ --target-agent "canary-projects-multi-agent-mux-creator-claude" \ --task "Fix typo in deploy/README.md"