@velvetmonkey/flywheel-memory 2.1.1 → 2.1.2

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 CHANGED
@@ -26,7 +26,7 @@
26
26
  | "What should I link?" | Not possible | 10-dimension scoring + semantic search |
27
27
  | Hubs, orphans, paths? | Not possible | Pre-indexed graph analysis |
28
28
 
29
- 76 tools across 12 categories. 6-line config. Zero cloud dependencies.
29
+ 75 tools across 12 categories. 6-line config. Zero cloud dependencies.
30
30
 
31
31
  **Try in 60 seconds:**
32
32
 
@@ -273,10 +273,10 @@ Every mutation is:
273
273
  | Schema intelligence | 6 analysis modes | No | No | No |
274
274
  | Entity extraction | Auto (18 categories) | No | No | No |
275
275
  | Learns from usage | Feedback loop + suppression | No | No | No |
276
- | Agent memory | brief + recall + memory | No | No | No |
276
+ | Agent memory | brief + search + memory | No | No | No |
277
277
  | Safe writes | Git + conflict detection | No | N/A | N/A |
278
278
  | Test coverage | 2,456 tests | Unknown | Unknown | Unknown |
279
- | Tool count | 72 | ~10 | 0 (plugin) | ~5 |
279
+ | Tool count | 75 | ~10 | 0 (plugin) | ~5 |
280
280
 
281
281
  ---
282
282
 
@@ -385,7 +385,7 @@ The fewer tools you load, the less context the AI needs to pick the right one. S
385
385
  | Doc | Why read this |
386
386
  |---|---|
387
387
  | [PROVE-IT.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/PROVE-IT.md) | See it working in 5 minutes |
388
- | [TOOLS.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/TOOLS.md) | All 76 tools documented |
388
+ | [TOOLS.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/TOOLS.md) | All 75 tools documented |
389
389
  | [ALGORITHM.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/ALGORITHM.md) | How the scoring works |
390
390
  | [COOKBOOK.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/COOKBOOK.md) | Example prompts by use case |
391
391
  | [SETUP.md](https://github.com/velvetmonkey/flywheel-memory/blob/main/docs/SETUP.md) | Full setup guide for your vault |
package/dist/index.js CHANGED
@@ -10589,7 +10589,6 @@ function parseEnabledCategories(envValue) {
10589
10589
  }
10590
10590
  if (DEPRECATED_ALIASES[lowerValue]) {
10591
10591
  const resolved = DEPRECATED_ALIASES[lowerValue];
10592
- serverLog("server", `Preset "${lowerValue}" is deprecated \u2014 use "${resolved}" instead`, "warn");
10593
10592
  if (PRESETS[resolved]) {
10594
10593
  return new Set(PRESETS[resolved]);
10595
10594
  }
@@ -10599,9 +10598,6 @@ function parseEnabledCategories(envValue) {
10599
10598
  for (const item of raw.split(",")) {
10600
10599
  const rawItem = item.trim().toLowerCase();
10601
10600
  const resolved = DEPRECATED_ALIASES[rawItem] ?? rawItem;
10602
- if (resolved !== rawItem) {
10603
- serverLog("server", `Category "${rawItem}" is deprecated \u2014 use "${resolved}" instead`, "warn");
10604
- }
10605
10601
  if (ALL_CATEGORIES.includes(resolved)) {
10606
10602
  categories.add(resolved);
10607
10603
  } else if (PRESETS[resolved]) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velvetmonkey/flywheel-memory",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "MCP tools that search, write, and auto-link your Obsidian vault — and learn from your edits.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -54,7 +54,7 @@
54
54
  "dependencies": {
55
55
  "@huggingface/transformers": "^3.8.1",
56
56
  "@modelcontextprotocol/sdk": "^1.25.1",
57
- "@velvetmonkey/vault-core": "^2.1.1",
57
+ "@velvetmonkey/vault-core": "^2.1.2",
58
58
  "better-sqlite3": "^12.0.0",
59
59
  "chokidar": "^4.0.0",
60
60
  "gray-matter": "^4.0.3",