You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
Make engineering documentation searchable by LLM coding assistants (Claude Code, Cursor, Codex CLI). Uses SQLite FTS5 for keyword search and vector embeddings for semantic search. Single file, no external services.
4
4
5
+
## Why This Architecture
6
+
7
+
Hybrid search gives you the best of both worlds. FTS5 handles exact matches—API names, error messages, symbols. Embeddings handle vocabulary mismatch—when someone searches "make grid finer near edges" instead of "mesh refinement."
8
+
9
+
SQLite FTS5 + sqlite-vec keeps everything in one file. No vector database to operate, no Docker, no external services.
10
+
11
+
What this replaces: grep (no ranking), Qdrant/Weaviate (operational overhead), local LLMs (slow, no accuracy benefit for retrieval).
12
+
5
13
## Requirements
6
14
7
15
- Python 3.11+
@@ -72,14 +80,25 @@ For COMSOL-specific conversion, see [docs/comsol.md](docs/comsol.md). You can ad
0 commit comments