Make the child-item panel on the work-item detail page open the SHARED quick-view peek on click, exactly like the relationships panel already does — a consistency fix (motir-core, frontend only).
app/(authed)/items/[key]/_components/ChildList.tsx renders each child as a plain <Link href="/items/<id>"> that NAVIGATES away.RelationshipPeekLink (same dir): a real anchor to the item, but a PLAIN primary click is intercepted to open ?peek=<id> (the shared IssueQuickView modal); modifier/middle-click still opens the full page in a new tab natively.<IssueQuickViewController /> (items/[key]/page.tsx:455), so the peek infra is present — nothing new to wire.ChildList, replace the inner <Link> with RelationshipPeekLink (reuse it — do not re-implement the click interception), keeping the existing row markup (type icon · identifier · title · status pill · assignee) and classes. RelationshipPeekLink is 'use client'; rendering it from the (server) ChildList is fine.--el-* + shape tokens only); no new component invented — reuses RelationshipPeekLink.?peek URL / panel state, not a timeout.RelationshipPeekLink + usePeekOpen/IssueQuickView (shipped). Files: ChildList.tsx, RelationshipPeekLink.tsx, IssueQuickViewController. Token/interaction rules per motir-core/CLAUDE.md.