@phronesis-io/openclaw-eigenflux 0.0.8 → 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.
Files changed (51) hide show
  1. package/README.md +28 -0
  2. package/dist/index.d.ts +9 -23
  3. package/dist/index.js +2265 -457
  4. package/openclaw.plugin.json +5 -1
  5. package/package.json +21 -8
  6. package/dist/agent-prompt-templates.d.ts +0 -19
  7. package/dist/agent-prompt-templates.d.ts.map +0 -1
  8. package/dist/agent-prompt-templates.js +0 -56
  9. package/dist/agent-prompt-templates.js.map +0 -1
  10. package/dist/cli-executor.d.ts +0 -32
  11. package/dist/cli-executor.d.ts.map +0 -1
  12. package/dist/cli-executor.js +0 -75
  13. package/dist/cli-executor.js.map +0 -1
  14. package/dist/config.d.ts +0 -83
  15. package/dist/config.d.ts.map +0 -1
  16. package/dist/config.js +0 -226
  17. package/dist/config.js.map +0 -1
  18. package/dist/credentials-loader.d.ts +0 -29
  19. package/dist/credentials-loader.d.ts.map +0 -1
  20. package/dist/credentials-loader.js +0 -117
  21. package/dist/credentials-loader.js.map +0 -1
  22. package/dist/index.d.ts.map +0 -1
  23. package/dist/index.js.map +0 -1
  24. package/dist/logger.d.ts +0 -12
  25. package/dist/logger.d.ts.map +0 -1
  26. package/dist/logger.js +0 -25
  27. package/dist/logger.js.map +0 -1
  28. package/dist/notification-route-resolver.d.ts +0 -66
  29. package/dist/notification-route-resolver.d.ts.map +0 -1
  30. package/dist/notification-route-resolver.js +0 -603
  31. package/dist/notification-route-resolver.js.map +0 -1
  32. package/dist/notifier.d.ts +0 -39
  33. package/dist/notifier.d.ts.map +0 -1
  34. package/dist/notifier.js +0 -335
  35. package/dist/notifier.js.map +0 -1
  36. package/dist/polling-client.d.ts +0 -86
  37. package/dist/polling-client.d.ts.map +0 -1
  38. package/dist/polling-client.js +0 -158
  39. package/dist/polling-client.js.map +0 -1
  40. package/dist/reply-target.d.ts +0 -8
  41. package/dist/reply-target.d.ts.map +0 -1
  42. package/dist/reply-target.js +0 -104
  43. package/dist/reply-target.js.map +0 -1
  44. package/dist/session-route-memory.d.ts +0 -22
  45. package/dist/session-route-memory.d.ts.map +0 -1
  46. package/dist/session-route-memory.js +0 -117
  47. package/dist/session-route-memory.js.map +0 -1
  48. package/dist/stream-client.d.ts +0 -48
  49. package/dist/stream-client.d.ts.map +0 -1
  50. package/dist/stream-client.js +0 -168
  51. package/dist/stream-client.js.map +0 -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.d.ts CHANGED
@@ -1,26 +1,12 @@
1
- import type { OpenClawPluginApi } from 'openclaw/plugin-sdk';
2
- declare function register(api: OpenClawPluginApi): void;
3
- declare const plugin: {
1
+ import * as openclaw_plugin_sdk_plugin_entry from 'openclaw/plugin-sdk/plugin-entry';
2
+ import * as openclaw_plugin_sdk from 'openclaw/plugin-sdk';
3
+
4
+ declare const _default: {
4
5
  id: string;
5
6
  name: string;
6
7
  description: string;
7
- configSchema: {
8
- readonly type: "object";
9
- readonly additionalProperties: false;
10
- readonly properties: {
11
- readonly eigenfluxBin: {
12
- readonly type: "string";
13
- readonly description: "Path to the eigenflux CLI binary";
14
- readonly default: "eigenflux";
15
- };
16
- readonly openclawCliBin: {
17
- readonly type: "string";
18
- readonly description: "OpenClaw CLI binary used by runtime command fallbacks";
19
- readonly default: "openclaw";
20
- };
21
- };
22
- };
23
- register: typeof register;
24
- };
25
- export default plugin;
26
- //# sourceMappingURL=index.d.ts.map
8
+ configSchema: openclaw_plugin_sdk.OpenClawPluginConfigSchema;
9
+ register: NonNullable<openclaw_plugin_sdk_plugin_entry.OpenClawPluginDefinition["register"]>;
10
+ } & Pick<openclaw_plugin_sdk_plugin_entry.OpenClawPluginDefinition, "kind" | "reload" | "nodeHostCommands" | "securityAuditCollectors">;
11
+
12
+ export { _default as default };