feat: chat history search (cross-session + in-chat)#321
Merged
Conversation
Add /search (with /find, /grep, 搜索 aliases) and a `pilotdeck chat` CLI subcommand to search chat history, exposed via channel commands, the UI command handler, and the session module. Co-authored-by: Cursor <cursoragent@cursor.com>
Add a floating search bar in the chat pane so users can find text within the current conversation, jump between matches, and highlight results. Co-authored-by: Cursor <cursoragent@cursor.com>
| ): Promise<SessionFileTarget[]> { | ||
| let names: string[]; | ||
| try { | ||
| names = await readdir(chatDir); |
fix: correct chat search match positioning
| ): Matcher { | ||
| if (options.regex) { | ||
| const flags = options.caseSensitive ? "" : "i"; | ||
| const pattern = new RegExp(query, flags); |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
/search(aliases:/find,/grep,/搜索) for IM channels and Web UI, pluspilotdeck chat searchCLI — scans JSONL transcripts under~/.pilotdeck/projects/*/chats/Cmd+F/Ctrl+F) with match navigation, highlighting, and auto-scroll within the current conversationUsage
Slash / CLI (cross-session)
Web UI (current session)
Cmd+F(Mac) orCtrl+F(Windows)Test plan
pilotdeck chat search <keyword>in a project with existing chats and verify matches/search dockerand confirm formatted results appear in chat/search <keyword>and confirm direct reply (no agent turn)Cmd+F, search a phrase, verify highlight + scroll--all,--limit, and--roleflags on slash commandMade with Cursor