2 Commits

Author SHA1 Message Date
CodingInCarhartts 6ad6748e6e feat: add session memory tools with semantic search and logging
Adds comprehensive session memory management with the following tools:
- start_logging_session: Begin logging a session with optional name
- log_message: Log user/agent messages to active sessions
- search_session: Semantic search within a specific session
- search_all_sessions: Semantic search across all logged sessions
- list_sessions: List all sessions with optional active filter
- get_session: Get session details and messages
- end_session: End session with optional summary
Database schema includes:
- sessions table with name, timestamps, summary, and active status
- session_messages table with role, content, and creation time
- Proper indexes for performance
- Foreign key relationships
All tools support semantic search using the existing embedding model.
2025-12-14 22:19:18 -08:00
CodingInCarhartts 22aeab952d feat: Implement initial personal knowledge management system with vector search and MCP server integration. 2025-12-14 12:31:01 -08:00