docs: check off completed vector/semantic search items in roadmap#46
Merged
keeganthomp merged 4 commits intomainfrom Apr 8, 2026
Merged
docs: check off completed vector/semantic search items in roadmap#46keeganthomp merged 4 commits intomainfrom
keeganthomp merged 4 commits intomainfrom
Conversation
Vector search, hybrid BM25+cosine scoring, embedding providers, and index persistence are all implemented but were still marked as TODO. https://claude.ai/code/session_018i9rTaA3Yycgkx6eHHX4rh
…tag/date filtering, highlighting
- Fuzzy matching: edit distance ≤ 1 for tokens ≥ 4 chars, with discounted scoring
- Phrase search: quoted strings require exact adjacency ("attention mechanism")
- Tag filtering: --tag flag filters results by frontmatter tags (AND logic, repeatable)
- Date filtering: --since flag filters to articles dated on or after a given date
- Highlighting: ANSI bold on matched terms in terminal output (disabled for --json)
- Index version bumped to v2 (backward-compatible load from v1)
- 27 new tests covering all features (301 total passing)
https://claude.ai/code/session_018i9rTaA3Yycgkx6eHHX4rh
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
… tool Expose the new advanced search capabilities (tag filtering, date filtering, phrase search) through the MCP server so AI clients can use them. https://claude.ai/code/session_018i9rTaA3Yycgkx6eHHX4rh
…param gaps New MCP tools: - kib_config: get/set/list vault configuration - kib_skill: list and run vault skills (summarize, flashcards, etc) - kib_export: export wiki as markdown or HTML static site Enhanced existing tools: - kib_search: add scope param (wiki/raw/all) - kib_lint: add fix param for auto-fixing issues - kib_compile: add max param to limit sources per pass - kib_ingest: add dry_run param for preview MCP server now exposes 11 tools (was 8), matching CLI capabilities. 14 new MCP tests added (315 total passing). https://claude.ai/code/session_018i9rTaA3Yycgkx6eHHX4rh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Vector search, hybrid BM25+cosine scoring, embedding providers, and
index persistence are all implemented but were still marked as TODO.
https://claude.ai/code/session_018i9rTaA3Yycgkx6eHHX4rh