UNPKG

code-server

Version:

Run VS Code on a remote server.

8 lines (6 loc) 830 B
--- name: chronicle:search description: Search recent chat sessions by keyword, file path, or PR/issue ref --- Search my Copilot session history for the query I provide — a keyword, a file path, or a PR/issue/commit refand list the matching sessions. Use the **chronicle** skill — it documents the `copilot_sessionStoreSql` tool, the session-store schema (the `sessions` table primary key is `id`; conversation content lives in `turns`, not on `sessions`; on local SQLite use the FTS5 `search_index` table and select `session_id` directly — never join `search_index.rowid` to `turns.rowid`), and the Search workflow including the cloud perf rules (aggregate-once via `WITH hits ... JOIN sessions`, default 90-day window on `turns`). When you invoke `copilot_sessionStoreSql`, set `subcommand: "search"` on every call.