@kalera/munin-openclaw 1.1.0 → 1.1.3

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @kalera/munin-openclaw@1.1.0 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/openclaw
2
+ > @kalera/munin-openclaw@1.1.3 build /home/runner/work/munin-for-agents/munin-for-agents/adapters/openclaw
3
3
  > tsc -p tsconfig.json
4
4
 
package/SKILL.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "@kalera/munin-openclaw"
3
3
  description: "Munin - The Free (or $1.6/mo) Persistent Memory for OpenClaw. Stop your agent from having Alzheimer's."
4
- version: "1.0.0"
4
+ version: "1.0.1"
5
5
  metadata:
6
6
  clawdbot:
7
7
  type: "plugin"
@@ -50,9 +50,12 @@ If your Munin project has **E2EE with GraphRAG** enabled, standard E2EE rules ap
50
50
  ## 🚀 Setup (Fast & Honest)
51
51
 
52
52
  1. **Get your Munin key:** Grab a **free** cloud key at [munin.kalera.dev](https://munin.kalera.dev).
53
- 2. **Configure OpenClaw:** Add these to your `.env` or agent config:
54
- - `MUNIN_BASE_URL`: Where your Munin lives (e.g., `https://munin.kalera.dev`).
55
- - `MUNIN_API_KEY`: Your key to the kingdom.
53
+ 2. **Configure OpenClaw:** Once installed via `openclaw plugins install @kalera/munin-openclaw`, you can set your API key directly via the OpenClaw CLI without manually editing any config files:
54
+
55
+ ```bash
56
+ openclaw config set plugins.entries.munin-openclaw.config.apiKey "your-api-key-here"
57
+ ```
58
+ *(Alternatively, you can just set `MUNIN_BASE_URL` and `MUNIN_API_KEY` environment variables).*
56
59
 
57
60
  *(Note: Provide your agent with the `Context Core ID` in its system prompt so it knows which project to use when making tool calls).*
58
61
 
package/dist/index.d.ts CHANGED
@@ -2,7 +2,8 @@ declare const _default: {
2
2
  id: string;
3
3
  name: string;
4
4
  description: string;
5
- configSchema: import("openclaw/plugin-sdk").OpenClawPluginConfigSchema;
6
- register: NonNullable<import("openclaw/plugin-sdk/plugin-runtime").OpenClawPluginDefinition["register"]>;
7
- } & Pick<import("openclaw/plugin-sdk/plugin-runtime").OpenClawPluginDefinition, "kind">;
5
+ kind: string;
6
+ configSchema: any;
7
+ register(api: any): void;
8
+ };
8
9
  export default _default;
package/dist/index.js CHANGED
@@ -1,9 +1,8 @@
1
- import { definePluginEntry } from "openclaw/plugin-sdk/core";
2
1
  import { MuninClient } from "@kalera/munin-sdk";
3
2
  import { Type } from "@sinclair/typebox";
4
3
  import { z } from "zod";
5
- export default definePluginEntry({
6
- id: "munin-memory",
4
+ export default {
5
+ id: "munin-openclaw",
7
6
  name: "Munin ContextKeep",
8
7
  description: "Persistent memory tools for OpenClaw agents.",
9
8
  kind: "memory",
@@ -12,7 +11,7 @@ export default definePluginEntry({
12
11
  .string()
13
12
  .default("https://munin.kalera.dev")
14
13
  .describe("The base URL for your Munin ContextKeep server."),
15
- apiKey: z.string().describe("Your API key for Munin."),
14
+ apiKey: z.string().optional().describe("Your API key for Munin."),
16
15
  }),
17
16
  register(api) {
18
17
  const baseUrl = api.pluginConfig?.baseUrl ||
@@ -98,4 +97,4 @@ export default definePluginEntry({
98
97
  },
99
98
  });
100
99
  },
101
- });
100
+ };
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "munin-memory",
2
+ "id": "munin-openclaw",
3
3
  "name": "Munin ContextKeep",
4
4
  "description": "Persistent memory and Context Core for OpenClaw agents.",
5
5
  "kind": "memory",
@@ -16,8 +16,7 @@
16
16
  "type": "string",
17
17
  "description": "Your API key for Munin."
18
18
  }
19
- },
20
- "required": ["apiKey"]
19
+ }
21
20
  },
22
21
  "skills": ["."]
23
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalera/munin-openclaw",
3
- "version": "1.1.0",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "openclaw": {
6
6
  "extensions": [
@@ -14,16 +14,20 @@
14
14
  }
15
15
  },
16
16
  "dependencies": {
17
+ "@sinclair/typebox": "^0.34.49",
18
+ "zod": "^4.3.6",
17
19
  "@kalera/munin-sdk": "1.0.0",
18
20
  "@kalera/munin-runtime": "1.0.0"
19
21
  },
20
22
  "devDependencies": {
21
- "@sinclair/typebox": "^0.34.49",
22
23
  "openclaw": "^2026.3.28",
23
- "typescript": "^5.9.2",
24
- "zod": "^4.3.6"
24
+ "typescript": "^5.9.2"
25
+ },
26
+ "peerDependencies": {
27
+ "openclaw": "^2026.3.0"
25
28
  },
26
29
  "scripts": {
30
+ "postinstall": "node ./postinstall.js",
27
31
  "build": "tsc -p tsconfig.json",
28
32
  "lint": "tsc -p tsconfig.json --noEmit",
29
33
  "test": "echo 'adapter-openclaw tests: pending'"
package/postinstall.js ADDED
@@ -0,0 +1,6 @@
1
+ console.log('\n\x1b[36m=================================================================\x1b[0m');
2
+ console.log('\x1b[36m\x1b[1m🐦 Munin ContextKeep successfully installed for OpenClaw!\x1b[0m');
3
+ console.log('\x1b[36m=================================================================\x1b[0m\n');
4
+ console.log('To activate your Munin Memory plugin, set your API key by running:\n');
5
+ console.log('\x1b[33m openclaw config set plugins.entries.munin-openclaw.config.apiKey "YOUR_API_KEY_HERE"\x1b[0m\n');
6
+ console.log('Get your free API key at: \x1b[32mhttps://munin.kalera.dev\x1b[0m\n');
package/src/index.ts CHANGED
@@ -1,10 +1,9 @@
1
- import { definePluginEntry } from "openclaw/plugin-sdk/core";
2
1
  import { MuninClient } from "@kalera/munin-sdk";
3
2
  import { Type } from "@sinclair/typebox";
4
3
  import { z } from "zod";
5
4
 
6
- export default definePluginEntry({
7
- id: "munin-memory",
5
+ export default {
6
+ id: "munin-openclaw",
8
7
  name: "Munin ContextKeep",
9
8
  description: "Persistent memory tools for OpenClaw agents.",
10
9
  kind: "memory",
@@ -13,9 +12,9 @@ export default definePluginEntry({
13
12
  .string()
14
13
  .default("https://munin.kalera.dev")
15
14
  .describe("The base URL for your Munin ContextKeep server."),
16
- apiKey: z.string().describe("Your API key for Munin."),
15
+ apiKey: z.string().optional().describe("Your API key for Munin."),
17
16
  }) as any,
18
- register(api) {
17
+ register(api: any) {
19
18
  const baseUrl =
20
19
  (api.pluginConfig?.baseUrl as string) ||
21
20
  process.env.MUNIN_BASE_URL ||
@@ -112,4 +111,4 @@ export default definePluginEntry({
112
111
  },
113
112
  });
114
113
  },
115
- });
114
+ };