feat(mcp): timestamp search, delete-by-query, slash-command docs; chore: untrack local build/venv dirs - #97
Merged
Conversation
Owner
Author
|
@copilot resolve the merge conflicts in this pull request |
Resolve conflicts keeping 0.7.8 version across all packages. Incorporate security hardening from 0.7.7 (clampTopK, security.ts) while preserving 0.7.8 features: ts-range search (clampTopK now applied), delete-by-query, and slash-command docs. Co-authored-by: jose-compu <30682875+jose-compu@users.noreply.github.com>
…ve merge conflicts Agent-Logs-Url: https://github.com/jose-compu/logosdb/sessions/6dabbd9b-a41a-4c2a-95b4-86e31344a401 Co-authored-by: jose-compu <30682875+jose-compu@users.noreply.github.com>
Contributor
Merged
Also added |
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.
Summary
Ships 0.7.8 MCP improvements: optional ISO timestamp bounds on
logosdb_search(wired to NodesearchTsRange), semantic delete vialogosdb_deletewithquery/search_top_k/match_rank, and root README +.claude/commandsdocs for Claude Code slash flows. Stops tracking accidentally committedbuild-san/,build-fuzz/, and.venv-test/and ignores them going forward.Closes #94, closes #95, closes #96
Changes
logosdb_search: optionalts_from,ts_to,candidate_kfor timestamp-window search (feat(mcp): expose timestamp-range search (search_ts_range / from_ts, to_ts) #94)logosdb_delete: delete byidor by natural-languagequerywith optionalsearch_top_k/match_rank(feat(mcp) or docs: semantic delete / forget-by-query vs ID-only logosdb_delete #96)mcp/src/store.ts: declaresearchTsRangeon the localLogosDBtyping.claude/commands/) (docs: document Claude Code slash commands (/index, /search, /forget) in main README #95).claude/commands/search.mdandforget.mdupdated for new parametersmcp/README.md: tool table aligned with new parameterslogosdb.h,pyproject.toml,mcp/nodejs/n8npackages; CHANGELOG entry.gitignore:build-san/,build-fuzz/,.venv-test/; remove those trees from the git index (files remain on disk)Type of Change
Testing
Describe the tests you ran:
mcp/:npm install --ignore-scripts,npm run build(tsc)ctest --output-on-failure,pytestfrom a cleanbuild/as in CIChecklist
ctest --output-on-failure,pytest)feat:,fix:,docs:, etc.)Additional Notes
logosdb_delete: callers must supply eitheridorquery, not both. By-iddelete still requires the namespace handle to be open (same as before); query-based delete can open an existing on-disk namespace using the embedding dimension from the query vector.logosdb_search: timestamp filtering is active whents_fromand/orts_tois non-empty; otherwise behavior matches the previous plain semantic search.git rm --cachedonly untracks paths; contributors may still have localbuild-san,build-fuzz,.venv-testfolders until they delete them manually if desired.