Open
Conversation
b6773d8 to
379ef29
Compare
379ef29 to
f8502b1
Compare
f8502b1 to
46ca80f
Compare
46ca80f to
c8b318b
Compare
c8b318b to
4589df1
Compare
4589df1 to
54003b6
Compare
Author
|
cc: @tobi |
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.
v1.0.8 shipped a bunch of renames and removals but the docs didn't follow. Went through
mcp.ts,store.ts,qmd.ts,llm.ts, andcollections.tsline by line and fixed everything that was wrong.mcp-setup.mdhad the old tool namestructured_search(nowquery,mcp.ts:244), wrong param name onget(pathshould befile,mcp.ts:367), a ghostfullparam that doesn't exist, and missingfromLine/maxLines.collectionwas a string, now it's acollectionsarray (mcp.ts:313). Also missing theexpandsearch type.README.mdlisted 3 dead MCP tools (qmd_search,qmd_vector_search,qmd_deep_search). Onlyqmd_queryexists now. HTTP section said "two endpoints" butPOST /querywas missing. Reranker section saidrankAndSort()but the code usesrankAll()(llm.ts:1054). Said "Top 30" butRERANK_CANDIDATE_LIMIT = 40(store.ts:227). Score table had "LLM 0-10 rating / score / 10" which isn't howrankAll()works. Schema listedcollectionsandpath_contextstables that getDROP TABLE'd on init (store.ts:636-637). Env vars table was missingXDG_CONFIG_HOMEandNO_COLOR.docs/SYNTAX.mdhad a"q"param in the API example that doesn't exist anywhere inmcp.ts.CLAUDE.mdstill hadqmd context check(removed in262c7d3), was missing 4 collection subcommands (show,update-cmd,include,exclude), and said "Qwen3" instead ofqmd-query-expansion-1.7B.Changes
skills/qmd/references/mcp-setup.md: tool rename, param fixes, addedexpandtype (+5/-3)README.md: dead tool names, missing endpoint, reranker, schema, env vars (+22/-15)docs/SYNTAX.md: removed ghostqparam (+4/-12)CLAUDE.md: removed dead cmd, added missing subcommands, fixed model name (+6/-5)Test plan
mcp.tstool schemasregisterTool()callsstore.tsCREATE TABLE statements