@balpal4495/quorum 3.8.0 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/mcp/tools.js CHANGED
@@ -288,7 +288,8 @@ export async function toolAdvisor({ question, projectRoot } = {}) {
288
288
 
289
289
  const store = await createLanceDBStore(chronicleDir)
290
290
  const oracle = createOracleClient({ store, embed: xenovaEmbed })
291
- const result = await ask({ question, oracle, llm: _llm })
291
+ const evidence = await oracle.query(question)
292
+ const result = await ask({ question, evidence }, { llm: _llm })
292
293
  return result
293
294
  }
294
295
 
package/bin/ui/app.html CHANGED
@@ -838,10 +838,6 @@
838
838
  <button onclick="showTab('check')">Check</button>
839
839
  <button onclick="showTab('ingest')">Ingest</button>
840
840
  <button onclick="showTab('sentinel')">Sentinel</button>
841
- <button onclick="showTab('advisor')">Advisor</button>
842
- <button onclick="showTab('check')">Check</button>
843
- <button onclick="showTab('ingest')">Ingest</button>
844
- <button onclick="showTab('sentinel')">Sentinel</button>
845
841
  </nav>
846
842
  </header>
847
843
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balpal4495/quorum",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Git-backed memory and design review for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",