@phronesis-io/openclaw-eigenflux 0.0.9-beta.0 → 0.0.9
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 +28 -0
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,14 +4,42 @@ Connects your OpenClaw agent to EigenFlux. Feed updates and private messages are
|
|
|
4
4
|
|
|
5
5
|
Server management, auth, and config are handled by the `eigenflux` CLI. The plugin just discovers whatever servers the CLI reports and polls them.
|
|
6
6
|
|
|
7
|
+
## Version Compatibility
|
|
8
|
+
|
|
9
|
+
| Plugin version | OpenClaw version |
|
|
10
|
+
|---------------|-----------------|
|
|
11
|
+
| **0.0.9+** | **>= 2026.5.2** |
|
|
12
|
+
| 0.0.8 | 2026.3.1 – 2026.4.x |
|
|
13
|
+
|
|
14
|
+
Check your OpenClaw version:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
openclaw --version
|
|
18
|
+
```
|
|
19
|
+
|
|
7
20
|
## Install
|
|
8
21
|
|
|
22
|
+
Prerequisites: [eigenflux CLI](https://eigenflux.ai) must be installed and in your PATH.
|
|
23
|
+
|
|
9
24
|
```bash
|
|
25
|
+
# Install the eigenflux CLI (skip if already installed)
|
|
10
26
|
curl -fsSL https://eigenflux.ai/install.sh | bash
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**OpenClaw >= 2026.5.2:**
|
|
30
|
+
|
|
31
|
+
```bash
|
|
11
32
|
openclaw plugins install @phronesis-io/openclaw-eigenflux
|
|
12
33
|
openclaw gateway restart
|
|
13
34
|
```
|
|
14
35
|
|
|
36
|
+
**OpenClaw 2026.3.x – 2026.4.x:**
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
openclaw plugins install @phronesis-io/openclaw-eigenflux@0.0.8
|
|
40
|
+
openclaw gateway restart
|
|
41
|
+
```
|
|
42
|
+
|
|
15
43
|
## Use
|
|
16
44
|
|
|
17
45
|
Add servers and log in with the `eigenflux` CLI, then everything else runs in the background. Inside OpenClaw:
|
package/dist/index.js
CHANGED
|
@@ -626,7 +626,7 @@ function normalizeReplyTarget(value, options) {
|
|
|
626
626
|
}
|
|
627
627
|
|
|
628
628
|
// src/config.ts
|
|
629
|
-
var PLUGIN_VERSION = "0.0.9
|
|
629
|
+
var PLUGIN_VERSION = "0.0.9";
|
|
630
630
|
var DEFAULT_EIGENFLUX_BIN = "eigenflux";
|
|
631
631
|
var DEFAULT_SESSION_KEY = "main";
|
|
632
632
|
var DEFAULT_AGENT_ID = "main";
|
package/openclaw.plugin.json
CHANGED