@elizaos/cli 1.2.0 → 1.2.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/{chunk-7F7J7V7K.js → chunk-5RHJRZKW.js} +6 -6
- package/dist/chunk-GRPGGUED.js +2262 -0
- package/dist/{chunk-IMVD3V75.js → chunk-J5E77VTL.js} +2 -2
- package/dist/{chunk-GDP7OWFE.js → chunk-PMV25BM7.js} +2 -2
- package/dist/chunk-XB5JBFO6.js +41 -0
- package/dist/{chunk-RXPGZT6Z.js → chunk-YKFBLIQD.js} +154 -137
- package/dist/commands/agent/actions/index.js +3 -3
- package/dist/commands/agent/index.js +3 -3
- package/dist/commands/create/actions/index.js +5 -5
- package/dist/commands/create/index.js +6 -6
- package/dist/commands/shared/index.js +1 -1
- package/dist/index.js +35 -32
- package/dist/{plugin-creator-35CAJF4O.js → plugin-creator-KFTUVFYX.js} +10 -7
- package/dist/{registry-3LKJUU3X.js → registry-WOGFPQNY.js} +3 -3
- package/dist/{setup-JDB67JV2.js → setup-KAJWYH6P.js} +4 -4
- package/dist/templates/plugin-starter/dist/index.js +12 -2
- package/dist/templates/plugin-starter/dist/index.js.map +1 -1
- package/dist/templates/plugin-starter/package.json +1 -1
- package/dist/templates/plugin-starter/src/plugin.ts +16 -4
- package/dist/templates/project-starter/package.json +4 -4
- package/dist/templates/project-starter/src/plugin.ts +29 -3
- package/dist/templates/project-tee-starter/package.json +3 -3
- package/dist/{utils-SV7PQSFH.js → utils-Q5OUIPQH.js} +3 -3
- package/package.json +5 -6
- package/templates/plugin-starter/dist/.vite/manifest.json +1 -1
- package/templates/plugin-starter/dist/index.js +12 -2
- package/templates/plugin-starter/dist/index.js.map +1 -1
- package/templates/plugin-starter/package.json +1 -1
- package/templates/plugin-starter/src/plugin.ts +16 -4
- package/templates/project-starter/package.json +4 -4
- package/templates/project-starter/src/plugin.ts +29 -3
- package/templates/project-tee-starter/package.json +3 -3
- package/dist/chunk-7PPBVSWE.js +0 -166
- package/dist/chunk-AQ6OMR2A.js +0 -14
|
@@ -4,7 +4,7 @@ const require = createRequire(import.meta.url);
|
|
|
4
4
|
|
|
5
5
|
import {
|
|
6
6
|
setupProjectEnvironment
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-PMV25BM7.js";
|
|
8
8
|
import {
|
|
9
9
|
buildProjectWithSpinner,
|
|
10
10
|
copyTemplate,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
getDisplayDirectory,
|
|
13
13
|
installDependenciesWithSpinner,
|
|
14
14
|
runTasks
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-YKFBLIQD.js";
|
|
16
16
|
|
|
17
17
|
// src/characters/eliza.ts
|
|
18
18
|
var baseCharacter = {
|
|
@@ -605,8 +605,8 @@ async function createTEEProject(projectName, targetDir, database, aiModel, embed
|
|
|
605
605
|
await withCleanupOnInterrupt(teeTargetDir, projectName, async () => {
|
|
606
606
|
await fs2.mkdir(teeTargetDir, { recursive: true });
|
|
607
607
|
if (!isNonInteractive) {
|
|
608
|
-
const { setupAIModelConfig, setupEmbeddingModelConfig } = await import("./setup-
|
|
609
|
-
const { promptAndStorePostgresUrl } = await import("./utils-
|
|
608
|
+
const { setupAIModelConfig, setupEmbeddingModelConfig } = await import("./setup-KAJWYH6P.js");
|
|
609
|
+
const { promptAndStorePostgresUrl } = await import("./utils-Q5OUIPQH.js");
|
|
610
610
|
const envFilePath = `${teeTargetDir}/.env`;
|
|
611
611
|
if (database === "postgres") {
|
|
612
612
|
await promptAndStorePostgresUrl(envFilePath);
|
|
@@ -666,8 +666,8 @@ async function createProject(projectName, targetDir, database, aiModel, embeddin
|
|
|
666
666
|
await fs2.mkdir(projectTargetDir, { recursive: true });
|
|
667
667
|
}
|
|
668
668
|
if (!isNonInteractive) {
|
|
669
|
-
const { setupAIModelConfig, setupEmbeddingModelConfig } = await import("./setup-
|
|
670
|
-
const { promptAndStorePostgresUrl } = await import("./utils-
|
|
669
|
+
const { setupAIModelConfig, setupEmbeddingModelConfig } = await import("./setup-KAJWYH6P.js");
|
|
670
|
+
const { promptAndStorePostgresUrl } = await import("./utils-Q5OUIPQH.js");
|
|
671
671
|
const envFilePath = `${projectTargetDir}/.env`;
|
|
672
672
|
if (database === "postgres") {
|
|
673
673
|
await promptAndStorePostgresUrl(envFilePath);
|