@lobu/openclaw-plugin 6.0.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.
- package/README.md +40 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1244 -0
- package/dist/index.js.map +1 -0
- package/dist/openclaw.plugin.json +55 -0
- package/dist/owletto-guidance.d.ts +5 -0
- package/dist/owletto-guidance.d.ts.map +1 -0
- package/dist/owletto-guidance.js +40 -0
- package/dist/owletto-guidance.js.map +1 -0
- package/dist/types.d.ts +38 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/openclaw.plugin.json +55 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @lobu/openclaw-plugin
|
|
2
|
+
|
|
3
|
+
Lobu memory plugin for [OpenClaw](https://openclaw.ai). Gives OpenClaw agents persistent, structured memory over MCP — recall relevant facts before each prompt and capture new observations after each session.
|
|
4
|
+
|
|
5
|
+
Full install guide: **[lobu.ai/connect-from/openclaw](https://lobu.ai/connect-from/openclaw/)**
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @lobu/openclaw-plugin
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then log in and configure against your Lobu memory MCP endpoint:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
lobu login
|
|
17
|
+
lobu memory configure --url <mcp-url> --org <org-slug>
|
|
18
|
+
lobu memory health --url <mcp-url> --org <org-slug>
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Replace `<mcp-url>` with your workspace MCP URL (for example `https://lobu.ai/mcp/acme`, or `http://localhost:8787/mcp` for the local runtime). `lobu memory configure` writes a `tokenCommand` that uses `lobu token --raw`, so the plugin reuses the top-level Lobu CLI login.
|
|
22
|
+
|
|
23
|
+
## Configuration
|
|
24
|
+
|
|
25
|
+
| Field | Description |
|
|
26
|
+
|-------|-------------|
|
|
27
|
+
| `mcpUrl` | Full MCP endpoint URL. Required. |
|
|
28
|
+
| `webUrl` | Public web URL for the Lobu memory instance. Used to generate links shown to the agent. |
|
|
29
|
+
| `token` | Bearer token for MCP requests. Optional — if unset, the plugin runs interactive device login. |
|
|
30
|
+
| `tokenCommand` | Shell command that prints a bearer token to stdout. Alternative to `token`. |
|
|
31
|
+
| `headers` | Extra HTTP headers for MCP requests. |
|
|
32
|
+
| `autoRecall` | Search Lobu memory for relevant memories before each prompt. Default `true`. |
|
|
33
|
+
| `recallLimit` | Maximum recalled memory records per request. Default `6`. |
|
|
34
|
+
| `autoCapture` | Capture conversation observations as long-term memories after each session. Default `true`. |
|
|
35
|
+
|
|
36
|
+
See [`openclaw.plugin.json`](./openclaw.plugin.json) for the full schema.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
BUSL-1.1. See the repository [LICENSE](../../LICENSE).
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA67BA,QAAA,MAAM,MAAM;;;;;kBAKI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAmiBtC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|