@oomkapwn/enquire-mcp 3.7.6 → 3.7.7
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/CHANGELOG.md +51 -0
- package/README.md +15 -10
- package/assets/social-preview.png +0 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,57 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [3.7.7] — 2026-05-16
|
|
6
|
+
|
|
7
|
+
> **TL;DR:** Visual + marketing refresh. New `assets/social-preview.png` leads with the emotional value prop ("Long-term memory for AI agents") and a visual flow showing vault → enquire-mcp → 5 AI agents — replaces the previous engineering-stats-heavy preview. README hero rewritten with **"The problem / The solution"** framing + sticky nav links + a clear 3-bullet differentiation block. **Zero code changes.** 786 tests unchanged. The visual + copy hierarchy is now optimized for first-time visitor conversion (3-second value-prop comprehension); technical depth is preserved but moved below the fold.
|
|
8
|
+
|
|
9
|
+
**Patch — visual + marketing refresh (no code, no behavior changes).**
|
|
10
|
+
|
|
11
|
+
### Changed — social preview image
|
|
12
|
+
|
|
13
|
+
**Old design**: dark-themed SVG with `enquire-mcp` brand + 3-line technical tagline + terminal mockup showing JSON tool calls + version stamp "v3.5 · stable" (drift since v3.7.x) + stats row (44 tools / 19 prompts / 786 tests).
|
|
14
|
+
|
|
15
|
+
**New design**: same dimensions (1280×640) and color palette (purple/cyan/slate dark theme) but reorganized for emotional value:
|
|
16
|
+
- **Top half** — big bold headline `Long-term memory for AI agents.` with `AI agents` accented in cyan; subtitle `Built on your Obsidian vault. Your knowledge, every agent, every session.`
|
|
17
|
+
- **Middle row** — visual flow: stacked markdown vault → `enquire-mcp` chip → 5 AI agent badges (Claude · Cursor · ChatGPT · Codex · "+ more"). The flow tells the story in 3 seconds.
|
|
18
|
+
- **Bottom strip** — trust signals (MIT · SLSA-3 · Hybrid retrieval · BGE reranker · HNSW · PDFs + OCR · 50+ languages · Zero cloud calls) + install command + repo link.
|
|
19
|
+
- **Removed**: version stamp (drift-prone), terminal mockup (technical noise for first-time visitors), counts row (moved to README body for visitors who want depth).
|
|
20
|
+
|
|
21
|
+
### Changed — README hero
|
|
22
|
+
|
|
23
|
+
**The problem / The solution** narrative replaces the previous feature-dump opening. Visitors now see:
|
|
24
|
+
1. **The problem**: "Every AI session starts from zero..." — connects to a pain point most LLM users experience.
|
|
25
|
+
2. **The solution**: "Your Obsidian vault becomes persistent, queryable long-term memory..." — frames the project as the answer.
|
|
26
|
+
3. **3-bullet differentiation block** in a blockquote: vendor-neutral, best-in-class retrieval, zero cloud calls.
|
|
27
|
+
|
|
28
|
+
Plus new sticky nav bar above the fold: `[⚡ 30-second install] · [🧠 Use cases] · [📊 Benchmarks] · [📖 API reference] · [💬 Compare alternatives]`.
|
|
29
|
+
|
|
30
|
+
**Stale stamp fixes** (incidental drift caught during the rewrite):
|
|
31
|
+
- README stable badge `v3.6.x-stable` → `v3.7.x-stable` (we're past v3.7.x).
|
|
32
|
+
- README image `alt` text updated to match new positioning.
|
|
33
|
+
|
|
34
|
+
Technical depth (hybrid retrieval, RRF, cross-encoder, HNSW, quantization, etc.) preserved — just moved below the hero. Visitors who want depth get it; visitors who want value-prop in 3 seconds get it too.
|
|
35
|
+
|
|
36
|
+
### Tests
|
|
37
|
+
|
|
38
|
+
**786 tests** — unchanged from v3.7.6. No code paths touched, no test additions/removals, no coverage delta. Lint clean, `tsc` strict + `noUncheckedIndexedAccess` clean, version-consistency green at `3.7.7` (5 surfaces), all K-1 invariants green.
|
|
39
|
+
|
|
40
|
+
### Migration
|
|
41
|
+
|
|
42
|
+
**No-op for every consumer.** Zero code/API/behavior/schema changes. Same npm install, same wire format. The visual refresh is visible to:
|
|
43
|
+
- GitHub repository visitors (README + social card on link previews) — instantly after merge
|
|
44
|
+
- npm consumers (`assets/social-preview.png` ships in tarball per `package.json#files`) — after `npm install`
|
|
45
|
+
|
|
46
|
+
Existing README anchors, links, and section headings preserved. The hero rewrite adds content above existing structure rather than rearranging it.
|
|
47
|
+
|
|
48
|
+
### Method note
|
|
49
|
+
|
|
50
|
+
Per CLAUDE.md anti-pattern *"Compressing CHANGELOG for aesthetics — audit trail trumps style"*: this patch documents WHY the visual changed, not just THAT it changed. The old design was engineering-trail-friendly (stats, version stamp, JSON mockup) but conversion-hostile for first-time visitors who don't know what "RRF fusion" or "BGE reranker" means. The new design optimizes the **first 3 seconds** of a visitor's attention while preserving 100% of the technical depth below.
|
|
51
|
+
|
|
52
|
+
**Why a patch release**: `assets/social-preview.png` ships in the npm tarball per `package.json#files`. npm consumers see the new image after install. GitHub viewers see the new image + README hero immediately after merge.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
5
56
|
## [3.7.6] — 2026-05-16
|
|
6
57
|
|
|
7
58
|
> **TL;DR:** Quality batch — closes 8 remaining audit-findings from the v3.6.2 external audit that weren't CRITICAL but were ship-ready (H-4, H-5, M-5, M-9, M-10, M-12, L-3, L-4). All fixes pure improvements: no new behavior, no breaking changes. Architectural items (H-1 HNSW filter-during-search, H-2 graph boost magnitude, H-3 watcher embeddings invalidation, M-2 HTTP transport full parity, M-7 PDF/OCR DoS resource controls, M-8 write-path TOCTOU, readOnlyHint-aware invariant) deferred to **v3.8.0 backlog** as they require architectural changes. 786 tests unchanged from v3.7.5 (2 existing tests updated to reflect M-10 signature change).
|
package/README.md
CHANGED
|
@@ -1,37 +1,42 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<a href="https://github.com/oomkapwn/enquire-mcp"><img src="./assets/social-preview.png" alt="enquire-mcp —
|
|
3
|
+
<a href="https://github.com/oomkapwn/enquire-mcp"><img src="./assets/social-preview.png" alt="enquire-mcp — long-term memory for AI agents. Built on your Obsidian vault. Open-source, MCP-native, vendor-neutral. Hybrid retrieval, BGE reranker, HNSW, PDFs with OCR. For Claude Code, Claude Desktop, Cursor, ChatGPT, Codex." width="100%"></a>
|
|
4
4
|
|
|
5
5
|
# enquire-mcp
|
|
6
6
|
|
|
7
7
|
### Long-term memory for AI agents. Built on your Obsidian vault.
|
|
8
8
|
|
|
9
|
-
**
|
|
9
|
+
**Stop re-explaining context to Claude, Cursor, ChatGPT every session. Your Obsidian notes become shared, searchable memory across every MCP-compatible agent — your knowledge, every model, forever yours.**
|
|
10
10
|
|
|
11
11
|
[](https://github.com/oomkapwn/enquire-mcp/actions/workflows/ci.yml)
|
|
12
12
|
[](https://www.npmjs.com/package/@oomkapwn/enquire-mcp)
|
|
13
13
|
[](https://www.npmjs.com/package/@oomkapwn/enquire-mcp)
|
|
14
14
|
[](#trust)
|
|
15
|
-
[](./STABILITY.md)
|
|
16
16
|
[](https://slsa.dev/spec/v1.0/levels#build-l3)
|
|
17
17
|
[](https://modelcontextprotocol.io/)
|
|
18
18
|
[](./LICENSE)
|
|
19
19
|
|
|
20
|
+
**[⚡ 30-second install](#-quick-start) · [🧠 Use cases](#-use-cases) · [📊 Benchmarks](./docs/benchmarks.md) · [📖 API reference](https://oomkapwn.github.io/enquire-mcp/) · [💬 Compare alternatives](./docs/COMPARISON.md)**
|
|
21
|
+
|
|
20
22
|
</div>
|
|
21
23
|
|
|
22
24
|
---
|
|
23
25
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
## The problem
|
|
27
|
+
|
|
28
|
+
Every AI session starts from zero. You re-explain your project, your design decisions, the conclusions of last week's research. Vendor "memory" features ([Claude Memory](https://www.anthropic.com/news/memory-and-tool-use), [ChatGPT Memory](https://openai.com/index/memory-and-new-controls-for-chatgpt/), Cursor memory) lock your knowledge into one provider's cloud — and forget it again when you switch tools. **Your knowledge keeps starting over.**
|
|
27
29
|
|
|
28
|
-
##
|
|
30
|
+
## The solution
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
Your Obsidian vault becomes **persistent, queryable long-term memory** for any MCP-compatible agent. One install — your knowledge is instantly accessible from Claude Code, Claude Desktop, Cursor, ChatGPT custom GPT, Codex, and every other MCP client. Plain markdown files **you own**, indexed locally, searched with the full modern IR stack, recalled across every session and every model.
|
|
31
33
|
|
|
32
|
-
|
|
34
|
+
> **Three things make enquire-mcp different**:
|
|
35
|
+
> 1. **Vendor-neutral.** Your memory lives in `.md` files. Switch from Claude to Cursor — your memory comes with you.
|
|
36
|
+
> 2. **Best-in-class retrieval.** Hybrid BM25 + multilingual embeddings + BGE cross-encoder reranker fused via RRF, scaled with HNSW + int8 quantization. The same IR stack a search startup would build — open-sourced, in one binary.
|
|
37
|
+
> 3. **Zero cloud calls during serve.** Models cached locally (one-time download from HuggingFace). Your vault content never leaves your machine. Air-gap-safe by default.
|
|
33
38
|
|
|
34
|
-
**44 tools · 19 MCP prompts · 786 unit tests · 50+ languages · v3.
|
|
39
|
+
**44 tools · 19 MCP prompts · 786 unit tests · 50+ languages · v3.7.x stable · semver-bound · MIT · SLSA-3 signed.**
|
|
35
40
|
|
|
36
41
|
---
|
|
37
42
|
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* + `McpServer({version})`) and `src/tool-registry.ts` (used in the
|
|
8
8
|
* `vault-info` resource payload).
|
|
9
9
|
*/
|
|
10
|
-
export declare const VERSION = "3.7.
|
|
10
|
+
export declare const VERSION = "3.7.7";
|
|
11
11
|
export { main } from "./cli.js";
|
|
12
12
|
export { buildEmbedText, buildMcpServer, formatReadyBanner, prepareServerDeps, type ServeOptions, type ServerDeps, startServer } from "./server.js";
|
|
13
13
|
export { parsePositiveInt, parseQuantizationMode } from "./tool-registry.js";
|
package/dist/index.js
CHANGED
|
@@ -32,7 +32,7 @@ import { main } from "./cli.js";
|
|
|
32
32
|
* + `McpServer({version})`) and `src/tool-registry.ts` (used in the
|
|
33
33
|
* `vault-info` resource payload).
|
|
34
34
|
*/
|
|
35
|
-
export const VERSION = "3.7.
|
|
35
|
+
export const VERSION = "3.7.7";
|
|
36
36
|
// Re-exports — preserve the v3.5.x public surface so http-transport.ts and
|
|
37
37
|
// tests don't need to know about the new module layout. The set below
|
|
38
38
|
// exactly matches the v3.5.x `export` declarations: `main`,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@oomkapwn/enquire-mcp",
|
|
4
|
-
"version": "3.7.
|
|
4
|
+
"version": "3.7.7",
|
|
5
5
|
"description": "Memory layer for AI agents over your Obsidian vault. Hybrid retrieval (BM25 + TF-IDF + multilingual ML embeddings, RRF-fused) with BGE cross-encoder reranking, HNSW + int8 quantization, late-chunking, HyDE + sub-question decomposition, agentic RAG, PDFs (with OCR), standalone Bases (.base query execution — no Obsidian needed), GraphRAG-light (Louvain wikilink community detection), wikilinks, backlinks, Dataview, frontmatter, canvas. Open-source long-term memory / second brain for Claude Code, Claude Desktop, Cursor, ChatGPT custom GPT, Codex, and any MCP client. 44 tools, 19 MCP prompts, 5 cross-encoder reranker models, 786 tests, SLSA-3, semver-bound, MIT.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|