openclaw-openviking-setup-helper 0.3.0-beta.13 → 0.3.0-beta.15

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/install.js +3 -2
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -47,8 +47,8 @@ const FALLBACK_LEGACY = {
47
47
  id: "memory-openviking",
48
48
  kind: "memory",
49
49
  slot: "memory",
50
- required: ["index.ts", "config.ts", "openclaw.plugin.json", "package.json"],
51
- optional: ["package-lock.json", ".gitignore"],
50
+ required: ["index.ts", "config.ts", "client.ts", "openclaw.plugin.json", "package.json"],
51
+ optional: ["package-lock.json", ".gitignore", "memory-ranking.ts", "text-utils.ts", "process-manager.ts", "tsconfig.json"],
52
52
  };
53
53
 
54
54
  // Must match examples/openclaw-plugin/install-manifest.json (npm only installs package deps, not these .ts files).
@@ -1575,6 +1575,7 @@ async function configureOpenClawPlugin({
1575
1575
  const p = cfg.plugins;
1576
1576
  if (!p.entries) p.entries = {};
1577
1577
  if (!p.entries[pluginId]) p.entries[pluginId] = {};
1578
+ p.entries[pluginId].enabled = true;
1578
1579
  if (!p.entries[pluginId].config) p.entries[pluginId].config = {};
1579
1580
  if (!Array.isArray(p.allow)) p.allow = [];
1580
1581
  if (!p.allow.includes(pluginId)) p.allow.push(pluginId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-openviking-setup-helper",
3
- "version": "0.3.0-beta.13",
3
+ "version": "0.3.0-beta.15",
4
4
  "description": "Setup helper for installing OpenViking memory plugin into OpenClaw",
5
5
  "type": "module",
6
6
  "bin": {