yoi/.yoi/tickets/00001KV11DHGZ/thread.md

12 KiB
Raw Blame History

作成

LocalTicketBackend によって作成されました。


Decision

決定:

  • 旧方針の「Orchestrator delegation scope だけを狭める」ではなく、1 Ticket にまとめて「Profile から concrete scope を外し、launch policy が runtime authority を付与する」方針に広げる。
  • Profile は reusable behavior / prompt / model / feature policy を持つ層とし、filesystem scope / delegation_scope は起動経路が concrete workspace/cwd とともに決める。
  • Orchestrator の desired effective authority は launch policy で direct read workspace + delegation read workspace, write workspace/.worktree として構築する。
  • Lua/profile replacement API (00001KTZY8HK2) はこの scope 問題の前提にしない。scope 以外の replacement が必要なら後続として扱う。

State changed

Ticket を workspace-panel が queued にしました。


Decision

Routing decision: queued_waiting_conflict

Reason:

  • Ticket is queued and appears implementation-ready, but it touches Profile concrete scope / launch policy surfaces.
  • 00001KTZY8HK2 was also queued and accepted in this routing pass for Profile API/resource migration (extend removal). Running both profile-surface migrations in parallel is likely to create merge conflicts and unclear review boundaries.
  • No missing requirement or dependency blocker was identified; this is a conflict/migration-order wait.

Next action:

  • Keep queued for now.
  • Re-evaluate after 00001KTZY8HK2 is merged/validated, or if human explicitly authorizes parallel work despite conflict risk.

Decision

Routing decision: implementation_ready

Reason:

  • The previous conflict/wait on 00001KTZY8HK2 is resolved: profile extend removal has been reviewed, merged, validated, and marked done.
  • Ticket remains queued, has implementation-ready requirements/acceptance criteria, and relation records are non-blocking related links only.
  • Risk flags are scope/delegation/profile/launch/restore, but binding invariants and acceptance tests are concrete.

Evidence checked:

  • Ticket body/thread/relations/orchestration-plan records.
  • Completed 00001KTZY8HK2 status and validation.
  • Orchestrator worktree clean state.

IntentPacket:

  • Move concrete filesystem scope / delegation_scope out of reusable Profiles and into launch policy/effective metadata construction. Preserve restore snapshot authority and explicit child delegation behavior.

Binding decisions / invariants:

  • Profiles own reusable behavior/model/prompt/feature policy, not concrete runtime authority.
  • Fresh Orchestrator launch effective authority: direct read original workspace; delegation read original workspace + write original workspace .worktree; no root workspace write delegation.
  • Normal Companion/TUI launch still gets expected workspace write direct scope from launch policy.
  • SpawnPod child direct scope is explicit delegated child scope, not inherited/profile scope.
  • Restore preserves metadata snapshot and does not reapply current profile/default launch authority over saved scope.

Validation:

  • focused scope/profile/client/pod/spawn/restore tests, cargo build -p yoi, cargo fmt --check, git diff --check; nix build .#yoi if packaging/resource changes warrant or feasible.

State changed

Profile extend removal prerequisite/conflict has been resolved and merged. Ticket evidence, related records, orchestration plan, and clean workspace state were checked. No blockers remain; implementation can proceed in a dedicated child worktree.


Implementation report

実装報告Coder

Commit:

  • implementation: 21bf009a3f95978007468005982903c8d7cae9e7 (feat: move profile scope to launch policy)

変更ファイル:

  • resources/profiles/default.lua
  • resources/profiles/companion.lua
  • resources/profiles/intake.lua
  • resources/profiles/orchestrator.lua
  • resources/profiles/coder.lua
  • resources/profiles/reviewer.lua
  • crates/manifest/src/profile.rs
  • crates/manifest/src/config.rs
  • crates/pod/src/entrypoint.rs
  • crates/pod/src/spawn/tool.rs

実装内容:

  • Builtin reusable Profiles から concrete filesystem scope / delegation_scope を削除した。
  • Profile resolution の implicit default workspace-write scope を廃止し、Profiles without scope を empty scope として解決可能にした。
  • Fresh profile launch の effective authority を pod entrypoint の launch policy で付与するようにした。
    • normal Companion/TUI/default profile launch: workspace write direct scope.worktree write deny+ workspace read / .worktree write delegation。
    • Ticket Orchestrator role launch: original workspace read direct scope + original workspace read / <workspace>/.worktree write delegation。root workspace write delegation は付与しない。
    • Ticket Intake/Reviewer role launch: workspace read direct scope。
    • Ticket Coder role launch: workspace write direct scope。
  • Single-file --manifest mode は従来どおり concrete scope.allow を要求し、Profile launch policy と混同しないようにした。
  • SpawnPod child scope replacement path は維持し、narrow Orchestrator delegation で Coder/Reviewer 用の root-read + implementation-worktree-write validation が成立することをテストした。
  • Existing user Profile scope / delegation_scope compatibility は deprecated-compatible path として残したTicket の選択肢に沿って、builtin role launch authority は Profile scope に依存しない)。

Validation:

  • cargo test -p manifest
  • Focused tests
    • cargo test -p manifest builtin_role_profiles_are_registered_and_resolve --quiet
    • cargo test -p manifest builtin_default_resolves_without_external_evaluator --quiet
    • cargo test -p manifest resolve_accepts_empty_scope_for_profile_launch_policy --quiet
    • cargo test -p pod --lib entrypoint::tests::normal_startup_uses_default_profile --quiet
    • cargo test -p pod --lib entrypoint::tests::orchestrator_profile_launch_gets_read_root_and_worktree_delegation_from_launch_policy --quiet
    • cargo test -p pod --lib spawn::tool::tests::orchestration_delegation_allows_root_read_and_worktree_writes_not_root_writes --quiet
    • cargo test -p pod --lib pod::pod_metadata_restore_manifest_tests::snapshot_preserves_saved_scope_over_current_manifest --quiet
    • cargo test -p client ticket_role --quiet
  • cargo build -p yoi
  • cargo fmt --check
  • git diff --check
  • nix build .#yoi not run: no Cargo.lock, packaging, or resource inclusion pattern changed.

Residual risks / notes:

  • Full cargo test -p pod --lib was attempted and still has two prompt-text assertion failures (worktree status, diff, and test results) in prompt catalog/system tests; this diff did not touch prompt resources or those assertions. Focused scope/profile/spawn/restore tests passed.
  • User Profile scope compatibility remains supported for now; future schema cleanup can remove or deprecate it explicitly if desired.

Review: approve

Approve implementation review for Ticket 00001KV11DHGZ.

Scope reviewed: implementation commit 21bf009a plus ticket report commit 77892b94 against base cdb12af9.

Evidence:

  • Builtin role profile resources no longer contain scope or delegation_scope; reusable profile data retains role/model/prompt/feature/tool policy only.
  • Fresh profile launch scope is applied in crates/pod/src/entrypoint.rs by launch policy after profile resolution. Default/Companion launches receive direct workspace write scope with .worktree write denied and delegation gets workspace read plus .worktree write. Orchestrator ticket-role launches receive direct root read and delegation root read plus .worktree write, with no root workspace write delegation.
  • SpawnPod profile/inherit handling continues to replace child direct scope with the explicit delegated child scope and resets child delegation unless explicitly provided; profile/default scope does not leak into child direct authority.
  • Pod metadata restore uses saved manifest snapshots when present, so saved scope/delegation are preserved instead of being overwritten by current profile/default launch policy.
  • One-file manifest loading still rejects missing/empty concrete scope.allow; the retained user-profile scope compatibility path is separated from builtin role authority and is overwritten by launch/delegation policy on fresh role launches.

Validation performed:

  • cargo test -p manifest --quiet
  • Focused pod tests for normal startup launch policy, orchestrator launch policy, SpawnPod delegation scoping, and metadata snapshot restore.
  • cargo test -p client ticket_role --quiet
  • cargo build -p yoi
  • cargo fmt --check
  • git diff --check cdb12af9..HEAD

Result: approve. No blocking requirement or design-boundary concern found.


Implementation report

Integration outcome: merged and validated.

  • Implementation branch: ticket-00001KV11DHGZ-profile-launch-policy-scope
  • Implementation commit: 21bf009a feat: move profile scope to launch policy
  • Report commit: 77892b94 ticket: report 00001KV11DHGZ implementation
  • Review commit: dcbdf251 ticket: approve profile launch policy scope
  • Orchestrator merge commit: 3a67b95b merge: profile launch policy scope

Reviewer result:

  • approve。Builtin role Profiles no longer carry concrete scope / delegation_scope; fresh profile launches get concrete scope/delegation from launch policy; Orchestrator launch gets direct root read plus delegation root read + .worktree write with no root workspace write delegation; SpawnPod child scope remains explicit delegated scope; restore preserves saved metadata snapshot.

Orchestrator validation after merge:

  • cargo test -p manifest --quiet: PASS
  • cargo test -p pod --lib entrypoint::tests::normal_startup_uses_default_profile --quiet: PASS
  • cargo test -p pod --lib entrypoint::tests::orchestrator_profile_launch_gets_read_root_and_worktree_delegation_from_launch_policy --quiet: PASS
  • cargo test -p pod --lib spawn::tool::tests::orchestration_delegation_allows_root_read_and_worktree_writes_not_root_writes --quiet: PASS
  • cargo test -p pod --lib pod::pod_metadata_restore_manifest_tests::snapshot_preserves_saved_scope_over_current_manifest --quiet: PASS
  • cargo test -p client ticket_role --quiet: PASS
  • cargo build -p yoi: PASS
  • cargo fmt --check: PASS
  • git diff --check: PASS
  • nix build .#yoi: PASS

Residual notes:

  • User Profile scope compatibility remains supported for now; builtin role authority no longer depends on Profile concrete scope.
  • Full cargo test -p pod --lib was not used as merge gate because Coder observed pre-existing prompt text assertion failures unrelated to this diff.

Next:

  • Mark Ticket done and clean up child coder/reviewer Pods plus implementation worktree/branch.

State changed

Implementation branch was reviewed, approved, merged into the Orchestrator branch as 3a67b95b, and validated in the Orchestrator worktree. Focused manifest/client/pod launch-policy/scope/restore tests, build, formatting, diff check, and nix build .#yoi passed. Ticket implementation work is done; closure remains separate.


State changed

Ticket を closed にしました。


完了

Closed after prior done-state completion.