@elizaos/cli 1.4.4 → 1.4.5
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/BrowserWebSocketTransport-5YQPVDV7.js +7 -0
- package/dist/EnhancedEvaluationEngine-APOQ6INN.js +473 -0
- package/dist/EvaluationEngine-Y7ZQJBRC.js +9 -0
- package/dist/LocalEnvironmentProvider-JWFGG4IN.js +15 -0
- package/dist/NodeWebSocketTransport-PUO724EY.js +8 -0
- package/dist/ScreenRecorder-YK246DNJ.js +10 -0
- package/dist/agent-start-6QJQAMKA.js +13 -0
- package/dist/bidi-2SVNH6F7.js +15309 -0
- package/dist/{bun-exec-ULMPAIQC.js → bun-exec-NH4UCUY4.js} +1 -1
- package/dist/chunk-2ESYSVXG.js +48 -0
- package/dist/chunk-3AEYIKBZ.js +432 -0
- package/dist/chunk-5IWKEMEF.js +239 -0
- package/dist/chunk-5WZO2HMM.js +2644 -0
- package/dist/chunk-ABGBVB74.js +3501 -0
- package/dist/{chunk-NSNXXD3I.js → chunk-BCO32GR6.js} +2 -2
- package/dist/chunk-CGXTFHQP.js +25 -0
- package/dist/chunk-EXUFDTUD.js +3948 -0
- package/dist/chunk-FGGNHEXZ.js +211860 -0
- package/dist/chunk-FWYHSCLF.js +243 -0
- package/dist/chunk-I57T3WPO.js +165 -0
- package/dist/chunk-LBZLMFFF.js +221 -0
- package/dist/chunk-LG7YDBMV.js +401 -0
- package/dist/chunk-NHKLUXNE.js +166 -0
- package/dist/chunk-PUZHCSGF.js +828 -0
- package/dist/chunk-PWDR7CPA.js +7828 -0
- package/dist/{chunk-N5G5XSGP.js → chunk-Q6M2K53X.js} +3 -3
- package/dist/chunk-SVHCNBHM.js +289 -0
- package/dist/{chunk-HOC6B3QV.js → chunk-VFFOOPYS.js} +4 -238
- package/dist/chunk-WX37MM4G.js +292 -0
- package/dist/chunk-XFJIHUT3.js +6 -0
- package/dist/chunk-XPPESCCM.js +787 -0
- package/dist/chunk-YBDC5OZO.js +40 -0
- package/dist/commands/agent/actions/index.js +2 -2
- package/dist/commands/agent/index.js +2 -2
- package/dist/commands/create/actions/index.js +4 -3
- package/dist/commands/create/index.js +5 -4
- package/dist/commands/shared/index.js +1 -1
- package/dist/index.js +66796 -4986
- package/dist/js-yaml-KADNMPWR.js +35 -0
- package/dist/matrix-orchestrator-3WLRK7GG.js +1070 -0
- package/dist/matrix-runner-KDPETCKQ.js +160 -0
- package/dist/matrix-schema-PCO2KGJY.js +102 -0
- package/dist/parameter-override-ALOPPXCE.js +487 -0
- package/dist/{plugin-creator-TCUFII32.js → plugin-creator-J7GNPMPG.js} +1 -1
- package/dist/process-manager-IU2A3BTQ.js +9 -0
- package/dist/{registry-ELONUC44.js → registry-65KMEA7N.js} +2 -2
- package/dist/resource-monitor-EHZSH2P6.js +15 -0
- package/dist/run-isolation-PGLZ37Y7.js +29 -0
- package/dist/runtime-factory-Q4U5YBNV.js +22 -0
- package/dist/schema-C25LVPEK.js +17 -0
- package/dist/src/commands/report/src/assets/report_template.html +1704 -0
- package/dist/src-EJG4ILDC.js +5 -0
- package/dist/templates/plugin-quick-starter/package.json +2 -2
- package/dist/templates/plugin-starter/package.json +2 -2
- package/dist/templates/project-starter/package.json +4 -4
- package/dist/templates/project-tee-starter/package.json +4 -4
- package/dist/typescript-ZF3IK2DJ.js +5 -0
- package/dist/{utils-X6UXPLKD.js → utils-QFD2PW4X.js} +2 -2
- package/package.json +14 -8
- package/templates/plugin-quick-starter/package.json +2 -2
- package/templates/plugin-starter/package.json +2 -2
- package/templates/project-starter/package.json +4 -4
- package/templates/project-tee-starter/package.json +4 -4
- package/dist/chunk-3RG5ZIWI.js +0 -10
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// ../../node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserWebSocketTransport.js
|
|
2
|
+
var BrowserWebSocketTransport = class _BrowserWebSocketTransport {
|
|
3
|
+
static create(url) {
|
|
4
|
+
return new Promise((resolve, reject) => {
|
|
5
|
+
const ws = new WebSocket(url);
|
|
6
|
+
ws.addEventListener("open", () => {
|
|
7
|
+
return resolve(new _BrowserWebSocketTransport(ws));
|
|
8
|
+
});
|
|
9
|
+
ws.addEventListener("error", reject);
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
#ws;
|
|
13
|
+
onmessage;
|
|
14
|
+
onclose;
|
|
15
|
+
constructor(ws) {
|
|
16
|
+
this.#ws = ws;
|
|
17
|
+
this.#ws.addEventListener("message", (event) => {
|
|
18
|
+
if (this.onmessage) {
|
|
19
|
+
this.onmessage.call(null, event.data);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
this.#ws.addEventListener("close", () => {
|
|
23
|
+
if (this.onclose) {
|
|
24
|
+
this.onclose.call(null);
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
this.#ws.addEventListener("error", () => {
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
send(message) {
|
|
31
|
+
this.#ws.send(message);
|
|
32
|
+
}
|
|
33
|
+
close() {
|
|
34
|
+
this.#ws.close();
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export {
|
|
39
|
+
BrowserWebSocketTransport
|
|
40
|
+
};
|
|
@@ -5,11 +5,11 @@ import {
|
|
|
5
5
|
setAgentConfig,
|
|
6
6
|
startAgent,
|
|
7
7
|
stopAgent
|
|
8
|
-
} from "../../../chunk-
|
|
8
|
+
} from "../../../chunk-Q6M2K53X.js";
|
|
9
9
|
import "../../../chunk-FQYWRHLX.js";
|
|
10
10
|
import "../../../chunk-GXWWPFBO.js";
|
|
11
11
|
import "../../../chunk-I4L4T7QX.js";
|
|
12
|
-
import "../../../chunk-
|
|
12
|
+
import "../../../chunk-2ESYSVXG.js";
|
|
13
13
|
export {
|
|
14
14
|
clearAgentMemories,
|
|
15
15
|
getAgent,
|
|
@@ -2,14 +2,14 @@ import {
|
|
|
2
2
|
agent,
|
|
3
3
|
getAgents,
|
|
4
4
|
resolveAgentId
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-Q6M2K53X.js";
|
|
6
6
|
import "../../chunk-FQYWRHLX.js";
|
|
7
7
|
import {
|
|
8
8
|
getAgentRuntimeUrl,
|
|
9
9
|
getAgentsBaseUrl
|
|
10
10
|
} from "../../chunk-GXWWPFBO.js";
|
|
11
11
|
import "../../chunk-I4L4T7QX.js";
|
|
12
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-2ESYSVXG.js";
|
|
13
13
|
export {
|
|
14
14
|
agent,
|
|
15
15
|
getAgentRuntimeUrl,
|
|
@@ -8,12 +8,13 @@ import {
|
|
|
8
8
|
setupAIModelConfig,
|
|
9
9
|
setupEmbeddingModelConfig,
|
|
10
10
|
setupProjectEnvironment
|
|
11
|
-
} from "../../../chunk-
|
|
12
|
-
import "../../../chunk-
|
|
11
|
+
} from "../../../chunk-VFFOOPYS.js";
|
|
12
|
+
import "../../../chunk-5IWKEMEF.js";
|
|
13
|
+
import "../../../chunk-Q6M2K53X.js";
|
|
13
14
|
import "../../../chunk-FQYWRHLX.js";
|
|
14
15
|
import "../../../chunk-GXWWPFBO.js";
|
|
15
16
|
import "../../../chunk-I4L4T7QX.js";
|
|
16
|
-
import "../../../chunk-
|
|
17
|
+
import "../../../chunk-2ESYSVXG.js";
|
|
17
18
|
export {
|
|
18
19
|
createAgent,
|
|
19
20
|
createPlugin,
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
create
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-BCO32GR6.js";
|
|
4
|
+
import "../../chunk-VFFOOPYS.js";
|
|
5
|
+
import "../../chunk-5IWKEMEF.js";
|
|
6
|
+
import "../../chunk-Q6M2K53X.js";
|
|
6
7
|
import "../../chunk-FQYWRHLX.js";
|
|
7
8
|
import "../../chunk-GXWWPFBO.js";
|
|
8
9
|
import "../../chunk-I4L4T7QX.js";
|
|
9
|
-
import "../../chunk-
|
|
10
|
+
import "../../chunk-2ESYSVXG.js";
|
|
10
11
|
export {
|
|
11
12
|
create
|
|
12
13
|
};
|