tegwick
8179929a4a
feat: implement lightweight full text search plugin using SQLite FTS5 (issue #83)
Added comprehensive full text search capabilities as a lightweight plugin.
Key features:
- SQLite FTS5-based search engine with no external dependencies
- Automatic indexing via database triggers for real-time updates
- Advanced query support: phrase search, boolean operators, proximity search
- Complete CLI interface with search commands
- Graceful fallback to LIKE queries when FTS5 unavailable
- Plugin architecture integration for extensibility
CLI Commands:
- `markitect search init` - Initialize search indexes
- `markitect search query` - Perform full text searches
- `markitect search status` - View index statistics
- `markitect search rebuild` - Rebuild indexes from scratch
Search Features:
- Content type filtering (files, schemas, all)
- Result pagination and formatting options
- Query validation and syntax assistance
- Performance optimization and index maintenance
Technical Implementation:
- FTSSearchPlugin: Main search plugin class
- SearchIndexer: FTS5 table management and indexing
- QueryParser: Query optimization and FTS5 syntax conversion
- Comprehensive error handling and fallback mechanisms
- 25 test cases covering all functionality
Documentation includes complete usage guide and examples.
Resolves issue #83: Full text search
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-03 17:03:11 +02:00
..
2025-10-02 08:14:38 +02:00
2025-10-03 16:48:03 +02:00
2025-10-02 15:33:32 +02:00
2025-09-30 17:28:39 +02:00
2025-10-02 09:14:24 +02:00
2025-10-02 09:32:16 +02:00
2025-10-02 09:14:24 +02:00
2025-10-03 17:03:11 +02:00
2025-10-01 02:39:29 +02:00
2025-10-02 15:33:32 +02:00
2025-09-16 03:04:18 +02:00
2025-10-03 05:47:02 +02:00
2025-09-30 13:09:37 +02:00
2025-09-24 01:14:27 +02:00
2025-09-27 09:31:47 +02:00
2025-10-03 10:45:43 +02:00
2025-09-27 08:28:10 +02:00
2025-10-03 17:03:11 +02:00
2025-10-03 10:53:44 +02:00
2025-09-30 02:59:43 +02:00
2025-09-24 01:14:27 +02:00
2025-10-03 10:35:16 +02:00
2025-10-01 08:21:42 +02:00
2025-09-23 04:28:29 +02:00
2025-09-30 17:28:39 +02:00
2025-09-30 17:28:39 +02:00
2025-10-01 02:39:29 +02:00
2025-09-29 21:21:21 +02:00
2025-10-02 17:37:24 +02:00
2025-10-01 08:21:42 +02:00
2025-10-01 08:03:11 +02:00
2025-09-25 03:01:40 +02:00
2025-10-01 16:16:46 +02:00
2025-09-29 21:21:21 +02:00