feat(conversations): add full-text message search endpoint (M1-006)
Some checks failed
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/pr/ci Pipeline failed

Adds GET /api/conversations/search?q=<query> endpoint that searches
message content across all authenticated user's conversations using
PostgreSQL ILIKE. Supports limit/offset pagination (default limit=20)
and returns results sorted by recency with conversation context.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 15:42:59 -05:00
parent 1d14ddcfe7
commit 06c3e51290
5 changed files with 77 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ export {
type NewConversation,
type Message,
type NewMessage,
type MessageSearchResult,
} from './conversations.js';
export {
createAgentsRepo,