@kalera/munin-openclaw 1.1.2 → 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.
- package/.turbo/turbo-build.log +1 -1
- package/SKILL.md +1 -1
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/postinstall.js +1 -1
- package/src/index.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/SKILL.md
CHANGED
|
@@ -53,7 +53,7 @@ If your Munin project has **E2EE with GraphRAG** enabled, standard E2EE rules ap
|
|
|
53
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
54
|
|
|
55
55
|
```bash
|
|
56
|
-
openclaw config set plugins.entries.munin-
|
|
56
|
+
openclaw config set plugins.entries.munin-openclaw.config.apiKey "your-api-key-here"
|
|
57
57
|
```
|
|
58
58
|
*(Alternatively, you can just set `MUNIN_BASE_URL` and `MUNIN_API_KEY` environment variables).*
|
|
59
59
|
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { MuninClient } from "@kalera/munin-sdk";
|
|
|
2
2
|
import { Type } from "@sinclair/typebox";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
export default {
|
|
5
|
-
id: "munin-
|
|
5
|
+
id: "munin-openclaw",
|
|
6
6
|
name: "Munin ContextKeep",
|
|
7
7
|
description: "Persistent memory tools for OpenClaw agents.",
|
|
8
8
|
kind: "memory",
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/postinstall.js
CHANGED
|
@@ -2,5 +2,5 @@ console.log('\n\x1b[36m=========================================================
|
|
|
2
2
|
console.log('\x1b[36m\x1b[1m🐦 Munin ContextKeep successfully installed for OpenClaw!\x1b[0m');
|
|
3
3
|
console.log('\x1b[36m=================================================================\x1b[0m\n');
|
|
4
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-
|
|
5
|
+
console.log('\x1b[33m openclaw config set plugins.entries.munin-openclaw.config.apiKey "YOUR_API_KEY_HERE"\x1b[0m\n');
|
|
6
6
|
console.log('Get your free API key at: \x1b[32mhttps://munin.kalera.dev\x1b[0m\n');
|
package/src/index.ts
CHANGED