BE-032: CLI context drops the cwd sub-path — args resolve at the wt ROOT

Now:
OPEN

Input

Context

The model (Nav, Worktree): the context URI is the versioned cwd //worktree/path, and relative args resolve against it in the verb via resolve(context, base, rel). The code never threads the cwd sub-path: core/loop.js:337-342 sets be.repo/be.authority but composes no navCwd(io.cwd()) context PATH; every verb resolves relative args via wtpath(repo.wt, rel) (cat.js:163, status.js:109, ls.js:140, put.js:146, delete.js:171, get restorePath), and wtpathnavCwd(wt) always yields sub="" (discover.js:329) — root-anchored by construction. Only the pager's _composeCall (views/bro/pager.js:705) sees the sub-path, so CLI and pager disagree on the same command.

Goals

Constraints

WIP

Design decisions

TODOs

Blockers and bummers

Outcome