@velvetmonkey/flywheel-memory 2.0.65 → 2.0.67

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -6403,6 +6403,8 @@ var TYPE_BOOST = {
6403
6403
  // Crafts, sports
6404
6404
  finance: 1,
6405
6405
  // Accounts, budgets
6406
+ periodical: 1,
6407
+ // Daily/weekly/monthly notes — low boost
6406
6408
  technologies: 0,
6407
6409
  // Common, avoid over-suggesting
6408
6410
  acronyms: 0,
@@ -7380,8 +7382,10 @@ function serverLog(component, message, level = "info") {
7380
7382
  if (buffer.length > MAX_ENTRIES) {
7381
7383
  buffer.shift();
7382
7384
  }
7385
+ const now = /* @__PURE__ */ new Date();
7386
+ const hms = `${String(now.getHours()).padStart(2, "0")}:${String(now.getMinutes()).padStart(2, "0")}:${String(now.getSeconds()).padStart(2, "0")}`;
7383
7387
  const prefix = level === "error" ? "[Memory] ERROR" : level === "warn" ? "[Memory] WARN" : "[Memory]";
7384
- console.error(`${prefix} [${component}] ${message}`);
7388
+ console.error(`${prefix} [${hms}] [${component}] ${message}`);
7385
7389
  }
7386
7390
  function getServerLog(options = {}) {
7387
7391
  const { since, component, limit = 100 } = options;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@velvetmonkey/flywheel-memory",
3
- "version": "2.0.65",
4
- "description": "MCP server that gives Claude full read/write access to your Obsidian vault. Select from 42 tools for search, backlinks, graph queries, mutations, and hybrid semantic search.",
3
+ "version": "2.0.67",
4
+ "description": "MCP server that gives Claude full read/write access to your Obsidian vault. Select from 51 tools for search, backlinks, graph queries, mutations, agent memory, and hybrid semantic search.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@modelcontextprotocol/sdk": "^1.25.1",
55
- "@velvetmonkey/vault-core": "2.0.65",
55
+ "@velvetmonkey/vault-core": "2.0.67",
56
56
  "better-sqlite3": "^11.0.0",
57
57
  "chokidar": "^4.0.0",
58
58
  "gray-matter": "^4.0.3",