-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat: reference past chats with @-mentions #12456
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| "kilo-code": minor | ||
| "@kilocode/cli": minor | ||
| --- | ||
|
|
||
| Reference past chats inline with `@` in the prompt. Typing `@` now surfaces a "Past chats" option that opens a searchable picker of previous sessions (scoped to the current workspace/worktree, searched like the Agent Manager session search); selecting one attaches that session's transcript as context so the model can build on a prior conversation. Clicking the mention opens that session. Available in the CLI TUI and the VS Code extension. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| import type { KiloClient } from "@kilocode/sdk/v2/client" | ||
|
|
||
| type Item = { | ||
| id: string | ||
| title: string | ||
| updated: number | ||
| } | ||
|
|
||
| type Message = { | ||
| requestId: string | ||
| sessionID?: string | ||
| } | ||
|
|
||
| type Input = { | ||
| client: KiloClient | null | ||
| message: Message | ||
| current?: string | ||
| context?: string | ||
| dir: (id?: string) => string | ||
| exclude?: string | ||
| post: (message: unknown) => void | ||
| } | ||
|
|
||
| /** | ||
| * Past-chat mention search. Lists root sessions for the directory the current | ||
| * chat runs in (workspace root for the sidebar, the worktree for Agent Manager | ||
| * sessions) — the same directory-scoped `session.list` the session history and | ||
| * Agent Manager search are built on. Fuzzy title filtering happens in the | ||
| * webview (same mechanism as the Agent Manager sidebar search). | ||
| */ | ||
| export async function handleSessionSearch(input: Input): Promise<void> { | ||
| const client = input.client | ||
| if (!client) { | ||
| input.post({ type: "sessionSearchResult", sessions: [], requestId: input.message.requestId }) | ||
| return | ||
| } | ||
|
|
||
| const id = input.message.sessionID ?? input.current ?? input.context | ||
| const dir = input.dir(id) | ||
|
|
||
| try { | ||
| const res = await client.session.list({ directory: dir, roots: true, limit: 50 }, { throwOnError: true }) | ||
|
marius-kilocode marked this conversation as resolved.
|
||
| const sessions: Item[] = res.data | ||
| .filter((session) => session.id !== input.exclude && session.title) | ||
| .map((session) => ({ id: session.id, title: session.title, updated: session.time.updated })) | ||
| input.post({ type: "sessionSearchResult", sessions, requestId: input.message.requestId }) | ||
| } catch (err) { | ||
| console.error("[Kilo New] Session search failed:", err) | ||
| input.post({ type: "sessionSearchResult", sessions: [], requestId: input.message.requestId }) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.