@elizaos/cli 1.2.11-beta.0 → 1.2.11-beta.2
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/{bun-exec-KJOLGZOL.js → bun-exec-6CQHTS4F.js} +2 -6
- package/dist/{chunk-AQ6OMR2A.js → chunk-3RG5ZIWI.js} +0 -4
- package/dist/{chunk-F24MS2YR.js → chunk-4O6EZU37.js} +0 -5
- package/dist/{chunk-E54G6FI7.js → chunk-CFWVOJS4.js} +2 -6
- package/dist/{chunk-3YTIOEFK.js → chunk-D3Q2UZLZ.js} +0 -5
- package/dist/{chunk-Y5IA2UZ2.js → chunk-FDEDLANP.js} +1 -5
- package/dist/{chunk-2ZF5OAMV.js → chunk-GQIMRI65.js} +1 -5
- package/dist/{chunk-KKAK7OQA.js → chunk-JUNJ3WPR.js} +181 -110
- package/dist/commands/agent/actions/index.js +5 -9
- package/dist/commands/agent/index.js +5 -9
- package/dist/commands/create/actions/index.js +6 -10
- package/dist/commands/create/index.js +7 -11
- package/dist/commands/shared/index.js +2 -6
- package/dist/index.js +158 -139
- package/dist/{plugin-creator-Y2NWASXI.js → plugin-creator-H26ZLR6H.js} +3 -7
- package/dist/{registry-K2OCCRXO.js → registry-MG7IWRMC.js} +5 -9
- package/dist/templates/plugin-quick-starter/package.json +1 -1
- package/dist/templates/plugin-starter/dist/assets/index-CgkejLs_.css +1 -0
- package/dist/templates/plugin-starter/dist/assets/index-DUtsQhKX.js +49 -0
- package/dist/templates/plugin-starter/dist/index.html +14 -0
- package/dist/templates/plugin-starter/dist/index.js +387 -0
- package/dist/templates/plugin-starter/dist/index.js.map +1 -0
- package/dist/templates/plugin-starter/package.json +1 -1
- package/dist/templates/project-starter/package.json +4 -4
- package/dist/templates/project-tee-starter/package.json +3 -3
- package/dist/{utils-QSRUVLAT.js → utils-BIWNAKB2.js} +11 -9
- package/package.json +5 -5
- package/templates/plugin-quick-starter/package.json +1 -1
- package/templates/plugin-starter/dist/.vite/manifest.json +11 -0
- package/templates/plugin-starter/dist/assets/index-CgkejLs_.css +1 -0
- package/templates/plugin-starter/dist/assets/index-DUtsQhKX.js +49 -0
- package/templates/plugin-starter/dist/index.d.ts +14 -0
- package/templates/plugin-starter/dist/index.html +14 -0
- package/templates/plugin-starter/dist/index.js +387 -0
- package/templates/plugin-starter/dist/index.js.map +1 -0
- package/templates/plugin-starter/package.json +1 -1
- package/templates/project-starter/package.json +4 -4
- package/templates/project-tee-starter/package.json +3 -3
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { createRequire } from 'module';
|
|
3
|
-
const require = createRequire(import.meta.url);
|
|
4
|
-
|
|
5
1
|
import {
|
|
6
2
|
ProcessExecutionError,
|
|
7
3
|
ProcessTimeoutError,
|
|
@@ -9,8 +5,8 @@ import {
|
|
|
9
5
|
bunExecInherit,
|
|
10
6
|
bunExecSimple,
|
|
11
7
|
commandExists
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-D3Q2UZLZ.js";
|
|
9
|
+
import "./chunk-3RG5ZIWI.js";
|
|
14
10
|
export {
|
|
15
11
|
ProcessExecutionError,
|
|
16
12
|
ProcessTimeoutError,
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { createRequire } from 'module';
|
|
3
|
-
const require = createRequire(import.meta.url);
|
|
4
|
-
|
|
5
1
|
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
6
2
|
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
7
3
|
}) : x)(function(x) {
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { createRequire } from 'module';
|
|
3
|
-
const require = createRequire(import.meta.url);
|
|
4
|
-
|
|
5
1
|
import {
|
|
6
2
|
createAgent,
|
|
7
3
|
createPlugin,
|
|
@@ -13,11 +9,11 @@ import {
|
|
|
13
9
|
selectEmbeddingModel,
|
|
14
10
|
validateCreateOptions,
|
|
15
11
|
validateProjectName
|
|
16
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-GQIMRI65.js";
|
|
17
13
|
import {
|
|
18
14
|
displayBanner,
|
|
19
15
|
handleError
|
|
20
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-JUNJ3WPR.js";
|
|
21
17
|
|
|
22
18
|
// src/commands/create/index.ts
|
|
23
19
|
import { Command } from "commander";
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import { createRequire } from 'module';
|
|
3
|
-
const require = createRequire(import.meta.url);
|
|
4
|
-
|
|
5
1
|
import {
|
|
6
2
|
bunExec,
|
|
7
3
|
bunExecInherit
|
|
8
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-D3Q2UZLZ.js";
|
|
9
5
|
|
|
10
6
|
// src/utils/emoji-handler.ts
|
|
11
7
|
import { logger } from "@elizaos/core";
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { createRequire } from 'module';
|
|
3
|
-
const require = createRequire(import.meta.url);
|
|
4
|
-
|
|
5
1
|
import {
|
|
6
2
|
buildProjectWithSpinner,
|
|
7
3
|
copyTemplate,
|
|
@@ -19,7 +15,7 @@ import {
|
|
|
19
15
|
promptAndStorePostgresUrl,
|
|
20
16
|
runTasks,
|
|
21
17
|
setupPgLite
|
|
22
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-JUNJ3WPR.js";
|
|
23
19
|
|
|
24
20
|
// src/characters/eliza.ts
|
|
25
21
|
var baseCharacter = {
|