@velvetmonkey/flywheel-memory 2.0.151 → 2.0.153
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/README.md +10 -4
- package/dist/index.js +697 -289
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
<p><strong>MCP tools that search, write, and auto-link your Obsidian vault — and learn from your edits.</strong><br/>All local. All yours. A few lines of config.</p>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
|
+
**Search** — One call returns section provenance, extracted dates, entity bridges, and confidence scores. Your AI decides what to read next without opening any files.
|
|
8
|
+
|
|
9
|
+
**Write** — Every mutation auto-links entities across your vault. Names, projects, and relationships wikilinked in real time.
|
|
10
|
+
|
|
11
|
+
**Remember** — Links you keep get stronger. Links you remove get suppressed. The graph compounds with use.
|
|
12
|
+
|
|
7
13
|
[](https://www.npmjs.com/package/@velvetmonkey/flywheel-memory)
|
|
8
14
|
[](https://modelcontextprotocol.io/)
|
|
9
15
|
[](https://github.com/velvetmonkey/flywheel-memory/actions/workflows/ci.yml)
|
|
@@ -95,7 +101,7 @@ Try it yourself: `cd demos/carter-strategy && claude`
|
|
|
95
101
|
|
|
96
102
|
Search "authentication" -- exact matches. Search "login security" -- same notes, plus every note about auth that never uses the word.
|
|
97
103
|
|
|
98
|
-
Keyword search finds what you said. Semantic search finds what you meant. Flywheel runs both and
|
|
104
|
+
Keyword search finds what you said. Semantic search finds what you meant. Flywheel runs both, fuses the results via Reciprocal Rank Fusion, and U-shaped interleaves them so the best results land at attention peaks. Top results include the full section content around each match -- a decision surface, not a list of filenames. Runs locally on a 23 MB model with contextual embedding prefixes. Nothing leaves your machine.
|
|
99
105
|
|
|
100
106
|
### 2. Every Suggestion Has a Receipt
|
|
101
107
|
|
|
@@ -131,14 +137,14 @@ Content about "deployment automation" suggests `[[CI/CD]]` — no keyword match
|
|
|
131
137
|
- **Semantic clusters**: Groups notes by meaning instead of folder structure
|
|
132
138
|
- **Semantic wikilinks**: Suggestions based on what you *mean*, not just what you typed
|
|
133
139
|
|
|
134
|
-
Build once with `init_semantic`. Everything upgrades automatically. Configurable model via `EMBEDDING_MODEL` env var.
|
|
140
|
+
Build once with `init_semantic`. Each note is embedded with a contextual prefix (title + tags) so the vector carries document identity alongside content meaning. Everything upgrades automatically. Configurable model via `EMBEDDING_MODEL` env var.
|
|
135
141
|
|
|
136
142
|
### 5. Agentic Memory
|
|
137
143
|
|
|
138
144
|
The system remembers context across sessions. No more starting from scratch.
|
|
139
145
|
|
|
140
146
|
- **`brief`** assembles startup context: recent sessions, active entities, stored memories, corrections, vault pulse — token-budgeted
|
|
141
|
-
- **`
|
|
147
|
+
- **`search`** retrieves across all knowledge channels: notes, entities, and memories in one call — returns a decision surface with section content, bridges, and confidence scores
|
|
142
148
|
- **`memory`** stores observations with confidence decay, TTL, and lifecycle management
|
|
143
149
|
|
|
144
150
|
Your AI picks up where it left off.
|
|
@@ -154,7 +160,7 @@ Your AI picks up where it left off.
|
|
|
154
160
|
| Same input → same output? | Not guaranteed | Always | Always |
|
|
155
161
|
| Runs offline? | Often not | Yes | Yes (local embeddings) |
|
|
156
162
|
| Learns from usage? | Retraining | No | Implicit feedback loop |
|
|
157
|
-
| Agent memory | No | No | Yes (brief +
|
|
163
|
+
| Agent memory | No | No | Yes (brief + search + memory) |
|
|
158
164
|
|
|
159
165
|
---
|
|
160
166
|
|