@velvetmonkey/flywheel-memory 2.5.0 → 2.5.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.
Files changed (2) hide show
  1. package/dist/index.js +7 -5
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -11890,10 +11890,10 @@ var PRESETS = {
11890
11890
  temporal: ["temporal"],
11891
11891
  diagnostics: ["diagnostics"]
11892
11892
  };
11893
- var DEFAULT_PRESET = "full";
11893
+ var DEFAULT_PRESET = "agent";
11894
11894
  var DEPRECATED_ALIASES = {
11895
- default: "full",
11896
- // default is now an alias for full
11895
+ default: "agent",
11896
+ // default tracks DEFAULT_PRESET
11897
11897
  minimal: "agent",
11898
11898
  writer: "agent",
11899
11899
  // writer was agent+tasks, agent now includes tasks
@@ -11953,10 +11953,12 @@ function parseEnabledCategories(envValue) {
11953
11953
  function resolveToolConfig(envValue) {
11954
11954
  const raw = (envValue ?? process.env.FLYWHEEL_TOOLS ?? process.env.FLYWHEEL_PRESET)?.trim();
11955
11955
  if (!raw) {
11956
+ const cats = new Set(PRESETS[DEFAULT_PRESET]);
11957
+ const isFullToolset = cats.size === ALL_CATEGORIES.length && ALL_CATEGORIES.every((c) => cats.has(c));
11956
11958
  return {
11957
- categories: new Set(PRESETS[DEFAULT_PRESET]),
11959
+ categories: cats,
11958
11960
  preset: DEFAULT_PRESET,
11959
- isFullToolset: true,
11961
+ isFullToolset,
11960
11962
  enableProgressiveDisclosure: false
11961
11963
  };
11962
11964
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velvetmonkey/flywheel-memory",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
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",
@@ -55,7 +55,7 @@
55
55
  "dependencies": {
56
56
  "@huggingface/transformers": "^3.8.1",
57
57
  "@modelcontextprotocol/sdk": "^1.25.1",
58
- "@velvetmonkey/vault-core": "^2.5.0",
58
+ "@velvetmonkey/vault-core": "^2.5.1",
59
59
  "better-sqlite3": "^12.0.0",
60
60
  "chokidar": "^4.0.0",
61
61
  "gray-matter": "^4.0.3",