@phronesis-io/openclaw-eigenflux 0.0.7 → 0.0.9-beta.0

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 (53) hide show
  1. package/README.md +3 -0
  2. package/dist/index.d.ts +9 -23
  3. package/dist/index.js +2263 -463
  4. package/openclaw.plugin.json +5 -1
  5. package/package.json +21 -8
  6. package/skills/ef-communication/SKILL.md +1 -0
  7. package/skills/ef-communication/references/relations.md +13 -0
  8. package/dist/agent-prompt-templates.d.ts +0 -19
  9. package/dist/agent-prompt-templates.d.ts.map +0 -1
  10. package/dist/agent-prompt-templates.js +0 -56
  11. package/dist/agent-prompt-templates.js.map +0 -1
  12. package/dist/cli-executor.d.ts +0 -32
  13. package/dist/cli-executor.d.ts.map +0 -1
  14. package/dist/cli-executor.js +0 -75
  15. package/dist/cli-executor.js.map +0 -1
  16. package/dist/config.d.ts +0 -83
  17. package/dist/config.d.ts.map +0 -1
  18. package/dist/config.js +0 -226
  19. package/dist/config.js.map +0 -1
  20. package/dist/credentials-loader.d.ts +0 -29
  21. package/dist/credentials-loader.d.ts.map +0 -1
  22. package/dist/credentials-loader.js +0 -117
  23. package/dist/credentials-loader.js.map +0 -1
  24. package/dist/index.d.ts.map +0 -1
  25. package/dist/index.js.map +0 -1
  26. package/dist/logger.d.ts +0 -12
  27. package/dist/logger.d.ts.map +0 -1
  28. package/dist/logger.js +0 -25
  29. package/dist/logger.js.map +0 -1
  30. package/dist/notification-route-resolver.d.ts +0 -43
  31. package/dist/notification-route-resolver.d.ts.map +0 -1
  32. package/dist/notification-route-resolver.js +0 -533
  33. package/dist/notification-route-resolver.js.map +0 -1
  34. package/dist/notifier.d.ts +0 -39
  35. package/dist/notifier.d.ts.map +0 -1
  36. package/dist/notifier.js +0 -340
  37. package/dist/notifier.js.map +0 -1
  38. package/dist/polling-client.d.ts +0 -86
  39. package/dist/polling-client.d.ts.map +0 -1
  40. package/dist/polling-client.js +0 -158
  41. package/dist/polling-client.js.map +0 -1
  42. package/dist/reply-target.d.ts +0 -8
  43. package/dist/reply-target.d.ts.map +0 -1
  44. package/dist/reply-target.js +0 -104
  45. package/dist/reply-target.js.map +0 -1
  46. package/dist/session-route-memory.d.ts +0 -22
  47. package/dist/session-route-memory.d.ts.map +0 -1
  48. package/dist/session-route-memory.js +0 -117
  49. package/dist/session-route-memory.js.map +0 -1
  50. package/dist/stream-client.d.ts +0 -48
  51. package/dist/stream-client.d.ts.map +0 -1
  52. package/dist/stream-client.js +0 -168
  53. package/dist/stream-client.js.map +0 -1
package/README.md CHANGED
@@ -29,7 +29,10 @@ The feed poll interval is read from `eigenflux config get --key feed_poll_interv
29
29
 
30
30
  ## Development
31
31
 
32
+ Requires Node.js 20+ and pnpm.
33
+
32
34
  ```bash
35
+ pnpm install
33
36
  pnpm build
34
37
  pnpm test
35
38
  pnpm bump-version <version> # syncs package.json, openclaw.plugin.json, runtime constant
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 };