@alfe.ai/openclaw 0.0.17 → 0.0.18
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/dist/index.js +3955 -2
- package/dist/plugin2.js +23 -1
- package/package.json +5 -4
package/dist/plugin2.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createRequire } from "node:module";
|
|
1
2
|
import { join } from "node:path";
|
|
2
3
|
import { homedir } from "node:os";
|
|
3
4
|
import { resolveConfig } from "@alfe.ai/config";
|
|
@@ -6,7 +7,13 @@ import { randomUUID } from "node:crypto";
|
|
|
6
7
|
import { EventEmitter } from "node:events";
|
|
7
8
|
import { createLogger } from "@auriclabs/logger";
|
|
8
9
|
//#region \0rolldown/runtime.js
|
|
10
|
+
var __create = Object.create;
|
|
9
11
|
var __defProp = Object.defineProperty;
|
|
12
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
13
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
14
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
15
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
16
|
+
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
10
17
|
var __exportAll = (all, no_symbols) => {
|
|
11
18
|
let target = {};
|
|
12
19
|
for (var name in all) __defProp(target, name, {
|
|
@@ -16,6 +23,21 @@ var __exportAll = (all, no_symbols) => {
|
|
|
16
23
|
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
17
24
|
return target;
|
|
18
25
|
};
|
|
26
|
+
var __copyProps = (to, from, except, desc) => {
|
|
27
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
28
|
+
key = keys[i];
|
|
29
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
30
|
+
get: ((k) => from[k]).bind(null, key),
|
|
31
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
return to;
|
|
35
|
+
};
|
|
36
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
37
|
+
value: mod,
|
|
38
|
+
enumerable: true
|
|
39
|
+
}) : target, mod));
|
|
40
|
+
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
19
41
|
//#endregion
|
|
20
42
|
//#region ../../node_modules/.pnpm/@sinclair+typebox@0.34.48/node_modules/@sinclair/typebox/build/esm/type/guard/value.mjs
|
|
21
43
|
/** Returns true if this value is an async iterator */
|
|
@@ -3222,4 +3244,4 @@ const plugin = {
|
|
|
3222
3244
|
}
|
|
3223
3245
|
};
|
|
3224
3246
|
//#endregion
|
|
3225
|
-
export { isIPCEvent as a, PROTOCOL_VERSION as i, registerWithDaemon as n, isIPCRequest as o, IPCClient as r, isIPCResponse as s, plugin as t };
|
|
3247
|
+
export { isIPCEvent as a, __commonJSMin as c, PROTOCOL_VERSION as i, __require as l, registerWithDaemon as n, isIPCRequest as o, IPCClient as r, isIPCResponse as s, plugin as t, __toESM as u };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "OpenClaw plugin for Alfe — connects to local gateway daemon via IPC for integration management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,12 +23,13 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@auriclabs/logger": "^0.1.1",
|
|
25
25
|
"@sinclair/typebox": "^0.34.48",
|
|
26
|
-
"@alfe/agent-client": "^0.1.0",
|
|
27
|
-
"@alfe.ai/agent-api-client": "^0.0.2",
|
|
28
26
|
"@alfe.ai/config": "^0.0.5",
|
|
27
|
+
"@alfe.ai/agent-api-client": "^0.0.2"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@alfe/agent-client": "^0.1.0",
|
|
29
31
|
"@alfe.ai/integrations": "^0.0.15"
|
|
30
32
|
},
|
|
31
|
-
"devDependencies": {},
|
|
32
33
|
"files": [
|
|
33
34
|
"dist",
|
|
34
35
|
"openclaw.plugin.json"
|