search_sessions
Find past discussions, decisions, or debugging details from previous sessions using full-text search with stemming. Returns relevant session excerpts and scores.
Instructions
Search across all past session conversations. Finds what was discussed, decided, or debugged in previous sessions. Full-text search with porter stemming — e.g., "why did we switch to GraphQL", "auth middleware bug", "database migration approach". Requires index_sessions to be run first. Read-only. Returns JSON: { results: [{ session_id, text, score }], total_results }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (FTS5 with porter stemming) | |
| limit | No | Max results (default: 20) |