@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.
Files changed (34) hide show
  1. package/dist/{chunk-7F7J7V7K.js → chunk-5RHJRZKW.js} +6 -6
  2. package/dist/chunk-GRPGGUED.js +2262 -0
  3. package/dist/{chunk-IMVD3V75.js → chunk-J5E77VTL.js} +2 -2
  4. package/dist/{chunk-GDP7OWFE.js → chunk-PMV25BM7.js} +2 -2
  5. package/dist/chunk-XB5JBFO6.js +41 -0
  6. package/dist/{chunk-RXPGZT6Z.js → chunk-YKFBLIQD.js} +154 -137
  7. package/dist/commands/agent/actions/index.js +3 -3
  8. package/dist/commands/agent/index.js +3 -3
  9. package/dist/commands/create/actions/index.js +5 -5
  10. package/dist/commands/create/index.js +6 -6
  11. package/dist/commands/shared/index.js +1 -1
  12. package/dist/index.js +35 -32
  13. package/dist/{plugin-creator-35CAJF4O.js → plugin-creator-KFTUVFYX.js} +10 -7
  14. package/dist/{registry-3LKJUU3X.js → registry-WOGFPQNY.js} +3 -3
  15. package/dist/{setup-JDB67JV2.js → setup-KAJWYH6P.js} +4 -4
  16. package/dist/templates/plugin-starter/dist/index.js +12 -2
  17. package/dist/templates/plugin-starter/dist/index.js.map +1 -1
  18. package/dist/templates/plugin-starter/package.json +1 -1
  19. package/dist/templates/plugin-starter/src/plugin.ts +16 -4
  20. package/dist/templates/project-starter/package.json +4 -4
  21. package/dist/templates/project-starter/src/plugin.ts +29 -3
  22. package/dist/templates/project-tee-starter/package.json +3 -3
  23. package/dist/{utils-SV7PQSFH.js → utils-Q5OUIPQH.js} +3 -3
  24. package/package.json +5 -6
  25. package/templates/plugin-starter/dist/.vite/manifest.json +1 -1
  26. package/templates/plugin-starter/dist/index.js +12 -2
  27. package/templates/plugin-starter/dist/index.js.map +1 -1
  28. package/templates/plugin-starter/package.json +1 -1
  29. package/templates/plugin-starter/src/plugin.ts +16 -4
  30. package/templates/project-starter/package.json +4 -4
  31. package/templates/project-starter/src/plugin.ts +29 -3
  32. package/templates/project-tee-starter/package.json +3 -3
  33. package/dist/chunk-7PPBVSWE.js +0 -166
  34. 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-GDP7OWFE.js";
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-RXPGZT6Z.js";
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-JDB67JV2.js");
609
- const { promptAndStorePostgresUrl } = await import("./utils-SV7PQSFH.js");
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-JDB67JV2.js");
670
- const { promptAndStorePostgresUrl } = await import("./utils-SV7PQSFH.js");
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);