feat: cross-session @-mention / semantic retrieval #54
Labels
No labels
backend
bug
chore
duplication
effort:complex
effort:medium
effort:trivial
enhancement
frontend
fullstack
priority:high
ready-for-agent
refactor
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
dries/ocman#54
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From spec/multi-agent-support/agent-feature-survey.md — finding #2.
What it is
When you
@-mention a previous conversation, the agent pulls in relevant excerpts (not the full transcript) — summaries, checkpoints, and matching message chunks.Seen in
Windsurf/Cascade ("@-mention previous conversations").
ocman angle
ocman owns the entire message corpus across every session in the OpenCode DB. We could build a search index (BM25 to start, embeddings later) over all messages and surface a global search box ("find that conversation where I debugged the auth flow"). Selected results could be copied as a prompt snippet back into the active OpenCode session via the existing HTTP proxy.
Effort
M for text/BM25, L if we add embeddings + a vector store.