32 KiB
作成
LocalTicketBackend によって作成されました。
Intake summary
既存 Ticket 00001KTTW04W2 の body/thread/artifacts と関連 Ticket を確認した。これは implementation_ready。範囲は Orchestrator の progress を Companion に read-only weak notification として渡すことであり、AutoKick / re-kick / scheduler ではない。Method::Notify に auto_run: bool を追加し、Companion progress notice では auto_run: false を使う。auto_run:false は idle Pod を起こさず NotifyBuffer に積むだけで、live/reachable Companion への best-effort delivery に限定し、missing/stopped Companion の spawn/restore や初期 persistent snapshot は行わない。通知内容は durable/queryable state から bounded に生成し、history に残らない context-only injection、secret/unbounded log、Companion への mutation/spawn/merge authority 付与は禁止。関連の Companion lifecycle/profile policy は closed 済みで、この Ticket は starvation prevention Ticket 00001KTJXS31R とは非重複の follow-up。blocking open questions はない。risk_flags: [notification-semantics, panel-lifecycle, companion-policy, authority-boundary, prompt-context, persistence, sensitive-content]。
State changed
Intake refinement により、AutoKick/re-kick との差分、Companion authority 境界、weak notification semantics、bounded/safe context、validation focus が整理され、Orchestrator が routing できる状態になった。
State changed
Ticket を workspace-panel が queued にしました。
Decision
Routing decision: implementation_ready(spawn は explicit follow-up まで保留)
Reason:
- Ticket body/thread は Orchestrator progress を Companion に read-only weak notification として渡す範囲を十分に固定している。
- AutoKick / re-kick / scheduler 化は非目標として明示されており、Companion authority 強化、missing/stopped Companion の spawn/restore、persistent snapshot 初期導入、context-only injection、secret/unbounded log 流入も禁止されている。
- 残る不確実性は既存 Notify / Panel / Companion 実装内での local tactic selection と targeted tests に閉じており、実装前に人間が追加で固定すべき product/API/authority decision は見つからない。
- 今回の launch instruction は「explicit follow-up before spawning role Pods」なので、ここでは queued -> inprogress、worktree 作成、coder/reviewer spawn は行わない。
Evidence checked:
- Ticket item/thread: Background、Requirements、Binding decisions / invariants、受け入れ条件、非目標、intake_summary、ready -> queued event。
- TicketRelationQuery: relation なし。unresolved depends_on / incoming blocks なし。
- TicketOrchestrationPlanQuery: 既存 plan なし。今回 accepted_plan を記録済み。
- TicketDoctor: error 0。
- repository state:
/home/hare/Projects/yoiは dirty file なし、develop...origin/develop [ahead 3]。 - worktree/branch state: 既存 implementation worktree はなし。
ticket/orchestrator-progress-companion-notifybranch は存在するがorigin/develop相当で、実装開始時に merge target の現 HEAD との整合を確認する。 - bounded code map:
crates/protocol/src/lib.rsのMethod::Notify、crates/pod/src/controller.rsの Notify handling / RunForNotification、crates/tui/src/multi_pod.rsと workspace panel 周辺、resources/profiles/companion.lua/ profile feature policy。
IntentPacket:
Intent:
- Orchestrator の Ticket 消化 progress を、live/reachable Companion に read-only weak notification として届け、Panel からその progress context の鮮度/last updated を確認できるようにする。
Binding decisions / invariants:
Notify { auto_run: false }は idle Pod を起こさず、RunForNotification を staged しない。- progress notice は AutoKick / re-kick / scheduler trigger にしない。
- Companion が missing/stopped の場合、通知だけで spawn/restore しない。
- 初期実装では persistent progress snapshot store を導入しない。
- Companion default profile の tool/feature policy を強化せず、Ticket mutation / Pod spawn / merge / worktree cleanup authority を与えない。
- Companion model context に渡す情報は history に残る形で扱い、history に残らない transient context-only injection をしない。
- 通知内容は durable/queryable state から bounded に生成し、secret/private context、sensitive provider error detail、unbounded logs、全 Ticket thread / Pod output を含めない。
- Prompt / workflow の LLM-facing framing を Rust code に直書きしない。必要なら
resources/prompts側に置く。
Requirements / acceptance criteria:
- live/reachable Companion が
Notify { auto_run: false }経由で Orchestrator progress notice を受け取れる。 - missing/stopped Companion では spawn/restore せず、best-effort delivery に留める。
- bounded summary generation と sensitive/unbounded content 排除が testable である。
- Panel から Companion progress context の鮮度または last updated が分かる。
- targeted tests を追加/更新する。
Implementation latitude:
auto_runの serialization default / migration details、delivery helper の配置、Panel freshness 表示の具体的 UI placement、summary builder の内部構造、test の分割は既存設計に沿う範囲で coder が選んでよい。- 既存 branch/worktree の扱いは実装開始時に Orchestrator が再確認し、merge target と整合する安全な branch/worktree で進める。
Escalate if:
- Companion に新しい mutation/spawn/merge authority を持たせる必要が出た場合。
auto_run:falseが history-backed notification 以外の hidden context injection を要求する場合。- missing/stopped Companion 向け persistent snapshot store が初期実装の必須要件になりそうな場合。
- Method/Protocol の互換性・serde 形式で既存 session/log を壊す設計変更が必要になった場合。
- Progress notice が scheduler / AutoKick / re-kick の実行契機になりそうな場合。
Validation:
- targeted tests for
Method::Notify { auto_run: false }idle behavior, live Companion delivery, missing/stopped no spawn/restore, bounded summary, sensitive/unbounded exclusion。 cargo test -p tuiまたは該当 targeted tests。cargo fmt --check。git diff --check。/home/hare/Projects/yoi/target/debug/yoi ticket doctor。- runtime resource / prompt / packaging に触れた場合は
nix build .#yoi。
Current code map:
crates/protocol/src/lib.rs:Method::Notifyschema / request handling type。crates/pod/src/controller.rs:Notifyhandling、NotifyBuffer、RunForNotification staging。crates/tui/src/multi_pod.rs/ workspace panel 周辺: Companion delivery and freshness UI。resources/profiles/companion.luaand profile policy code: Companion authority remains read-only/limited。
Critical risks / reviewer focus:
auto_run:falseが idle Companion を起こしていないこと。- progress notification が Orchestrator scheduler / AutoKick / re-kick と結合していないこと。
- Companion authority が増えていないこと。
- context は history-backed で、hidden transient injection になっていないこと。
- bounded/sensitive-safe summary が enforced/tested されていること。
- missing/stopped Companion で spawn/restore しないこと。
Next action:
- ユーザー/上位 Orchestrator から実装開始の explicit follow-up が来たら、side effect 前に TicketShow / relation / orchestration plan / git/worktree state を再確認し、問題なければ
queued -> inprogressを記録してから worktree 作成と sibling coder/reviewer routing に進む。
Decision
Routing follow-up: implementation start authorized by user.
Recheck summary:
- Ticket remains
queuedand previously recordedimplementation_readystill applies. - TicketRelationQuery: no unresolved
depends_on/ incomingblocksfor this Ticket. - TicketOrchestrationPlan: accepted plan
orch-plan-20260611-160703-1names branch/worktree and defers implementation until explicit follow-up; that follow-up has now arrived. - Orchestrator worktree is clean.
- Visible active work:
00001KTVJFT6Fhas coderyoi-coder-panel-focus-modelrunning on a separate branch/worktree. There may be minor overlap incrates/tui/src/multi_pod.rsaround Panel UI, so coder/reviewer must keep the Panel freshness change narrow and integration will recheck conflicts before merge.
Decision:
- Accept this Ticket now and proceed to
queued -> inprogressbefore worktree/Pod side effects. - Use existing accepted plan branch
ticket/orchestrator-progress-companion-notifyand worktree/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify. - Continue to avoid root/original workspace operations; implementation side effects are limited to the child worktree and sibling Pods.
State changed
Explicit user follow-up authorized starting the previously accepted implementation plan. Ticket body/thread, relation blockers, accepted orchestration plan, current Orchestrator workspace state, and visible active work were rechecked. No unresolved blocker or missing planning decision remains. Implementation side effects will start only after this accepted queued -> inprogress transition is recorded.
Plan
Implementation worktree created for multi-agent handoff.
- Ticket:
00001KTTW04W2 - Branch:
ticket/orchestrator-progress-companion-notify - Worktree:
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Base: Orchestrator workspace HEAD
05fe1f6f(orchestration/yoi-orchestrator), including the accepted routing record andqueued -> inprogresstransition. - Concurrent work note:
00001KTVJFT6Fis active in/home/hare/Projects/yoi/.worktree/panel-focus-composer-row-selection; any Panel UI edits should be narrow and integration will recheck conflict risk. - Scope rule: implementation work happens only in this child worktree. Root/original workspace must not be read, written, validated, merged, cleaned, or used for git operations.
- Next: spawn sibling coder with narrow write scope to the implementation worktree. Reviewer will be started after coder evidence is available.
Plan
Coder delegated.
- Coder Pod:
yoi-coder-companion-progress-notify - Worktree:
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Branch:
ticket/orchestrator-progress-companion-notify - Scope: write
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify; read child worktree plus minimal non-recursive runtime-root read required by spawn validation. - Task: implement
Notify { auto_run: false }weak progress notification semantics, bounded Orchestrator progress summary delivery to live/reachable Companion, missing/stopped no spawn/restore behavior, Panel freshness/last-updated indication, focused tests, and required validation. - Concurrent work note:
00001KTVJFT6Fhas active coder work in another worktree and may edit Panel UI; coder was instructed to keep Panel changes narrow and report overlap if it becomes a blocker. - Constraint: coder was instructed not to use root/original workspace for decision evidence or git/validation/cleanup, and not to create generated memory/local/runtime/log/lock/secret-like
.yoipaths.
Implementation report
Coder completed implementation and branch was synchronized with current Orchestrator HEAD before review.
Coder Pod:
yoi-coder-companion-progress-notify
Implementation branch/worktree:
- Branch:
ticket/orchestrator-progress-companion-notify - Worktree:
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Implementation commit:
a87d3154 feat: weak companion progress notify - Sync merge commit on implementation branch:
724b79f1 Merge branch 'orchestration/yoi-orchestrator' into ticket/orchestrator-progress-companion-notify - Worktree status: clean
Changed surfaces:
crates/protocol/src/lib.rscrates/pod/src/controller.rscrates/pod/src/discovery.rscrates/pod/tests/controller_test.rscrates/tui/src/multi_pod.rs
Implementation summary:
- Added
Method::Notify { auto_run: bool }; missingauto_rundefaults totrue,trueserializes like the old shape, andfalseis explicit. - Idle Pod
Notify { auto_run: false }does not stageRunForNotification; explicit next run drains notification history-backed through existing paths. - Existing peer notify/discovery paths keep
auto_run: true. - Panel sends bounded progress notices to live/reachable Companion only via weak
Notify { auto_run: false }. - Missing/stopped/unreachable Companion is best-effort no-op; no spawn/restore.
- Progress summary is bounded to Ticket id/title/state, role pod status, and
.yoi/tickets/<id>refs; no full thread, long output, diagnostics, provider errors, or secret-like content. - Panel title shows Companion progress freshness/last-updated without adding a persistent snapshot store.
- Companion profile/tool authority is unchanged.
Orchestrator-verified evidence from child worktree after sync with current Orchestrator branch:
git status --short --branch: clean onticket/orchestrator-progress-companion-notifycargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 testscargo test -p tui companion_progress -- --nocapture: pass, 5 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passgit diff --check orchestration/yoi-orchestrator...HEAD: passcargo run -p yoi -- ticket doctor:doctor: oknix build .#yoi: pass
Known unrelated validation failures from coder full-suite notes:
cargo test -p podstill fails existing prompt-resource assertion tests:worker_instruction_override_from_resources,worker_instruction_uses_resource_template.cargo test -p tuistill fails existing tests:multi_pod::tests::orchestrator_launch_context_includes_ticket_and_workspace_facts,multi_pod::tests::spawn_or_restore_companion_restores_live_pod,multi_pod::tests::spawn_or_restore_companion_spawns_missing_pod.- Focused weak-notify/progress tests pass; reviewer should confirm the broad failures are unrelated/pre-existing and not introduced by this Ticket.
Next:
- Spawn read-only sibling reviewer against the recorded intent, binding decisions/invariants, acceptance criteria, implementation commit
a87d3154, synced review head724b79f1, diff, validation evidence, and known broad-suite failures.
Plan
Reviewer delegated.
- Reviewer Pod:
yoi-reviewer-companion-progress-notify - Target branch/worktree:
ticket/orchestrator-progress-companion-notifyat/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Implementation commit:
a87d3154 feat: weak companion progress notify - Synced review head:
724b79f1 Merge branch 'orchestration/yoi-orchestrator' into ticket/orchestrator-progress-companion-notify - Scope: read-only child worktree plus minimal non-recursive runtime-root read required by spawn validation.
- Review basis: recorded IntentPacket, binding decisions/invariants, acceptance criteria, implementation summary, diff after syncing with current Orchestrator branch, focused validation evidence,
nix buildevidence, and known broad-suite failures. - Reviewer focus: no AutoKick/re-kick/scheduler behavior, legacy notify compatibility, bounded/history-backed progress notices, missing/stopped Companion no-op, no authority expansion, Panel freshness UI compatibility with merged focus model, and robust focused tests.
Review: request changes
Request changes.
Blocker:
crates/tui/src/multi_pod.rsのcompanion_progress_notice()が、Companion の model context に入る progress notice の framing 文言を Rust に直書きしている。- この notice は
dispatch_companion_progress_notice()からNotify { auto_run: false }として送られ、NotifyBuffer 経由で history-backed な SystemItem / LLM context になるため、単なる Panel UI 文言ではなく LLM-facing framing と判断する。 - Ticket の明示要件「Prompt / workflow 文言を Rust code に直書きしない」「LLM-facing summary framing が必要な場合は
resources/prompts側に置く」に反している。
Requested change:
- Rust 側は bounded runtime values の組み立てに留める。
- progress notice の framing/template は
resources/prompts配下へ移す。 - template/resource rendering の focused test を追加または既存
companion_progresstests を更新し、framing が resource 側から来ることと bounded/sensitive-safe values が維持されることを確認する。
Good evidence confirmed:
auto_run:falseは idle Pod にRunForNotificationを staged しない。auto_run:trueと legacy missing field の挙動は維持されている。- live/reachable Companion の socket に
Notify { auto_run: false }を送るだけで、missing/stopped/unreachable では spawn/restore されない。 - 通知内容は Ticket id/title/state、role pod status、short reason、
.yoi/tickets/<id>ref に絞られ、thread excerpt / diagnostics / provider error token はテストで除外確認されている。 - Companion profile / authority 強化は diff 上ない。
- Panel freshness は header detail 表示で、composer target / row selection の focus model には干渉していない。
Reviewer-run validation:
git diff --check orchestration/yoi-orchestrator...HEAD: passcargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 testscargo test -p tui companion_progress -- --nocapture: pass, 5 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passcargo run -p yoi -- ticket doctor:doctor: oknix build .#yoi: pass
Broad-suite failures:
cargo test -p podcurrently fails 2 prompt-resource assertion tests.cargo test -p tuicurrently fails 3 unrelated-looking tests.- These broad-suite failures do not appear caused by the progress-notify diff and are not the requested-change blocker.
Plan
Fix loop delegated to coder.
Reviewer blocker:
companion_progress_notice()hard-coded LLM-facing progress notice framing in Rust.- The notice reaches Companion model context through
Notify { auto_run: false }/ NotifyBuffer, so it must follow the prompt-resource boundary.
Coder fix request:
- Move progress notice framing/template to
resources/promptsusing existing resource conventions. - Keep Rust limited to bounded runtime values and resource rendering/loading.
- Preserve weak notify semantics, live/reachable-only delivery, missing/stopped no spawn/restore, bounded/sensitive-safe summary, no persistent snapshot store, and no authority expansion.
- Add/update focused tests proving resource-backed framing and bounded/sensitive-safe runtime values.
Status:
- Sent fix request to
yoi-coder-companion-progress-notifyon existing branch/worktree. - Reviewer verdict remains
request_changesuntil coder fix and second review.
Implementation report
Coder completed requested fix.
Coder Pod:
yoi-coder-companion-progress-notify
Implementation branch/worktree:
- Branch:
ticket/orchestrator-progress-companion-notify - Worktree:
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Original implementation commit:
a87d3154 feat: weak companion progress notify - Sync merge commit:
724b79f1 Merge branch 'orchestration/yoi-orchestrator' into ticket/orchestrator-progress-companion-notify - Fix commit:
61e6c068 fix: resource-back companion progress notice - Worktree status: clean
Fix summary:
- Added
resources/prompts/panel/companion_progress_notice.mdfor model-facing Companion progress notice framing. - Removed hard-coded progress notice framing from Rust.
- Rust now builds bounded runtime values and renders the prompt resource via
minijinja. - Added focused test proving the notice renders from the prompt resource.
- Preserved live/reachable-only delivery, missing/stopped no-op,
auto_run:false, bounded output, sensitive-field exclusion, and no persistent snapshot store. - Added
minijinjatocrates/tui/Cargo.toml, updatedCargo.lock, and updatedpackage.nixcargoHashfor Nix packaging.
Orchestrator-verified evidence from child worktree after fix:
git status --short --branch: clean onticket/orchestrator-progress-companion-notifycargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 testscargo test -p tui companion_progress -- --nocapture: pass, 6 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passgit diff --check orchestration/yoi-orchestrator...HEAD: passcargo run -p yoi -- ticket doctor:doctor: oknix build .#yoi: pass
Next:
- Request reviewer re-review of fix commit
61e6c068, focusing on the prompt-resource boundary blocker, retention of weak notify safety invariants, dependency/package updates, and validation evidence.
Review: approve
Approve.
The previous requested-change blocker is resolved.
Review findings:
- Prompt/resource boundary is now satisfied:
- Companion progress notice framing lives in
resources/prompts/panel/companion_progress_notice.md. - Rust only builds bounded runtime values and renders the prompt resource via
minijinja. COMPANION_PROGRESS_NOTICE_TEMPLATEusesinclude_str!to load the resource.render_companion_progress_notice_template()renders with strictminijinjaundefined behavior.- Focused test
companion_progress_notice_uses_prompt_resource_templateconfirms rendering comes from the resource. - Grep for prior hard-coded framing found no Rust production copy of the prompt text; only test assertion remains.
- Companion progress notice framing lives in
- Weak notify invariants remain intact:
- Companion progress dispatch still uses
send_notify_only(..., false). auto_run:falsecontroller behavior remains covered by pod controller tests.auto_run:truelegacy behavior remains covered by protocol/controller tests.
- Companion progress dispatch still uses
- Missing/stopped/unreachable Companion remains no-op:
- Target selection still requires Companion panel state to be peer-reachable and a live reachable socket.
- No spawn/restore path is introduced for progress delivery.
- No Companion authority expansion found:
- The fix touches prompt rendering, TUI dependency metadata,
Cargo.lock, andpackage.nix; it does not alter Companion profile/tool authority.
- The fix touches prompt rendering, TUI dependency metadata,
- Bounded/sensitive-safe summary remains preserved:
- Runtime values are bounded before/after rendering.
- The summary still uses ticket id/state/title/ref and role pod status, not thread excerpts, diagnostics, Pod output, or provider error details.
- Dependency/package updates are appropriate:
minijinja = "2.19.0"is already used elsewhere in the workspace (crates/pod), so adding it tocrates/tuidoes not introduce an unexpected new dependency family.Cargo.lockandpackage.nixcargoHashwere updated, andnix build .#yoipasses.
Reviewer-run validation:
git diff --check orchestration/yoi-orchestrator...HEAD: passcargo test -p tui companion_progress -- --nocapture: pass, 6 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passcargo run -p yoi -- ticket doctor:doctor: oknix build .#yoi: passcargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 tests
No blocking issues remain.
Implementation report
Integration completed in the Orchestrator workspace.
Integrated implementation:
- Ticket:
00001KTTW04W2 - Implementation branch:
ticket/orchestrator-progress-companion-notify - Implementation commits:
a87d3154 feat: weak companion progress notify61e6c068 fix: resource-back companion progress notice
- Reviewer result: approve after fix-loop, no blockers remain
- Orchestrator merge commit:
56b10a2d merge: companion weak progress notify - Integration target:
orchestration/yoi-orchestrator
Post-integration validation from Orchestrator worktree:
cargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 testscargo test -p tui companion_progress -- --nocapture: pass, 6 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passgit diff --check HEAD~1..HEAD: pass./result/bin/yoi ticket doctor:doctor: oknix build .#yoi: pass
Fix-loop resolution:
- Reviewer blocker about Rust-hard-coded LLM-facing progress notice framing was resolved by moving framing to
resources/prompts/panel/companion_progress_notice.mdand rendering it from bounded runtime values.
Remaining known broad-suite failures:
- Existing prompt/TUI broad-suite failures noted earlier remain outside this Ticket and were not blockers for the focused implementation/review.
Remaining risks:
- None blocking. Added
minijinjadependency tocrates/tui, already used elsewhere in workspace;Cargo.lockandpackage.nixwere updated and Nix build passed.
State changed
Implementation was merged into the Orchestrator branch after reviewer-requested fix, reviewer approved with no blockers, and post-integration validation passed. Cleanup and closure will be recorded next.
Implementation report
Cleanup completed.
- Stopped coder Pod:
yoi-coder-companion-progress-notify - Stopped reviewer Pod:
yoi-reviewer-companion-progress-notify - Removed child worktree:
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notify - Deleted implementation branch:
ticket/orchestrator-progress-companion-notify - Orchestrator worktree status after cleanup: clean
Cleanup was limited to child implementation worktree/branch and related child Pods. Root/original workspace was not touched.
State changed
Ticket を closed にしました。
完了
Orchestrator progress を AutoKick なしで live/reachable Companion に通知する仕組みを実装した。
実装概要:
Method::Notify { auto_run: bool }を追加し、auto_run: falseでは idle Pod にRunForNotificationを stage しない weak notification にした。auto_run: trueと legacy missing-field behavior は既存 Notify と互換にした。- Panel から live/reachable Companion へ bounded progress notice を
Notify { auto_run: false }で送るようにした。 - missing/stopped/unreachable Companion は best-effort no-op とし、spawn/restore しない。
- Progress summary は Ticket id/title/state、role pod status、short reason、
.yoi/tickets/<id>refs に限定し、full thread、Pod output、diagnostics、provider errors、secret-like content を含めない。 - Panel に Companion progress freshness / last-updated indication を追加した。
- Reviewer request_changes を受け、Companion progress notice の LLM-facing framing を Rust 直書きから
resources/prompts/panel/companion_progress_notice.mdへ移し、Rust は bounded runtime values の rendering に限定した。 - Companion profile/tool authority は変更していない。
Review / integration:
- Implementation commits:
a87d3154 feat: weak companion progress notify61e6c068 fix: resource-back companion progress notice
- Reviewer:
yoi-reviewer-companion-progress-notifyが初回 request_changes、fix 後 approve。 - Orchestrator merge commit:
56b10a2d merge: companion weak progress notify - Ticket completion commit:
2b64f428 ticket: mark companion notify done
Validation:
cargo test -p protocol: pass, 39 testscargo test -p pod --test controller_test: pass, 36 testscargo test -p tui companion_progress -- --nocapture: pass, 6 testscargo test -p tui send_notify_only_can_deliver_weak_notification_without_auto_run -- --nocapture: pass, 1 testcargo check -p protocol -p pod -p tui: passcargo fmt --check: passgit diff --check HEAD~1..HEAD: pass./result/bin/yoi ticket doctor:doctor: oknix build .#yoi: pass
Known unrelated broad-suite failures:
- Existing prompt/TUI broad-suite failures noted in thread remain outside this Ticket and were not blockers for focused implementation/review.
Cleanup:
- coder/reviewer Pods stopped。
- child worktree
/home/hare/Projects/yoi/.worktree/orchestrator-progress-companion-notifyremoved。 - branch
ticket/orchestrator-progress-companion-notifydeleted。
Non-blocking risk:
- Added
minijinjadependency tocrates/tui; it is already used elsewhere in the workspace, andCargo.lock/package.nixwere updated with passing Nix build.
State changed
実運用で、実装が Ticket の意図を逸脱していることが確認されたため reopen する。
Reopen reason:
- 現実の挙動は、Panel を開いているだけで periodic reload に連動して Companion へ progress notice を繰り返し送る形になっている。
- Ticket は Orchestrator progress を Companion に共有することを求めていたが、Panel を actionless な notification feed source にすること、長文/スナップショット的 progress notice を Panel refresh ごとに送ることは要求していない。
auto_run: falseは idle Pod を起こさないだけで、Notify は Companion history/model context に入るため、通知 spam / context 汚染として扱うべきだった。- Progress notice の発生源は Panel の定期 reload ではなく、Pod/Orchestrator の明示的な進捗イベント、または明示 user action に紐づくべきである。
Next planning/fix question:
- 既存
Method::Notify { auto_run }互換部分は残すか。 - Panel reload から Companion への automatic dispatch を削除または default-off にするか。
- Orchestrator/Pod 起点でどの明示イベントだけを Companion に通知するか。
- 送る場合の payload を snapshot ではなく bounded event notice に縮小するか。
Until this is resolved, current Companion progress notice implementation should be treated as defective and not closed.