-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Cross-Session Context Querying #2436
Copy link
Copy link
Open
Labels
area:context-memoryContext window, memory, compaction, checkpoints, and instruction loadingContext window, memory, compaction, checkpoints, and instruction loadingarea:sessionsSession management, resume, history, session picker, and session stateSession management, resume, history, session picker, and session state
Metadata
Metadata
Assignees
Labels
area:context-memoryContext window, memory, compaction, checkpoints, and instruction loadingContext window, memory, compaction, checkpoints, and instruction loadingarea:sessionsSession management, resume, history, session picker, and session stateSession management, resume, history, session picker, and session state
Type
Fields
Give feedbackNo fields configured for Feature.
Describe the feature or problem you'd like to solve
When working on a complex project, I often have multiple sessions approaching it from different angles. Session A may have already built deep context about the codebase or problem space, but Session B has no way to leverage that understanding — it must re-research everything from scratch or rely on summarized versions of the understanding.
Proposed solution
Allow a session to semantically query another session's accumulated context — either live (if the target session
is idle) or from its stored checkpoints. This could look like:
can ingest cheaply
background agents, but targeting existing sessions)
Example prompts or workflows
Use case: Multi-perspective analysis workflows — one session deep-dives into architecture, another focuses on security review, a third
on implementation. Each should be able to tap into the others' findings without redundant exploration, similar to how a team of
engineers would collaborate.
Additional context
No response