@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.
Files changed (38) hide show
  1. package/dist/{bun-exec-KJOLGZOL.js → bun-exec-6CQHTS4F.js} +2 -6
  2. package/dist/{chunk-AQ6OMR2A.js → chunk-3RG5ZIWI.js} +0 -4
  3. package/dist/{chunk-F24MS2YR.js → chunk-4O6EZU37.js} +0 -5
  4. package/dist/{chunk-E54G6FI7.js → chunk-CFWVOJS4.js} +2 -6
  5. package/dist/{chunk-3YTIOEFK.js → chunk-D3Q2UZLZ.js} +0 -5
  6. package/dist/{chunk-Y5IA2UZ2.js → chunk-FDEDLANP.js} +1 -5
  7. package/dist/{chunk-2ZF5OAMV.js → chunk-GQIMRI65.js} +1 -5
  8. package/dist/{chunk-KKAK7OQA.js → chunk-JUNJ3WPR.js} +181 -110
  9. package/dist/commands/agent/actions/index.js +5 -9
  10. package/dist/commands/agent/index.js +5 -9
  11. package/dist/commands/create/actions/index.js +6 -10
  12. package/dist/commands/create/index.js +7 -11
  13. package/dist/commands/shared/index.js +2 -6
  14. package/dist/index.js +158 -139
  15. package/dist/{plugin-creator-Y2NWASXI.js → plugin-creator-H26ZLR6H.js} +3 -7
  16. package/dist/{registry-K2OCCRXO.js → registry-MG7IWRMC.js} +5 -9
  17. package/dist/templates/plugin-quick-starter/package.json +1 -1
  18. package/dist/templates/plugin-starter/dist/assets/index-CgkejLs_.css +1 -0
  19. package/dist/templates/plugin-starter/dist/assets/index-DUtsQhKX.js +49 -0
  20. package/dist/templates/plugin-starter/dist/index.html +14 -0
  21. package/dist/templates/plugin-starter/dist/index.js +387 -0
  22. package/dist/templates/plugin-starter/dist/index.js.map +1 -0
  23. package/dist/templates/plugin-starter/package.json +1 -1
  24. package/dist/templates/project-starter/package.json +4 -4
  25. package/dist/templates/project-tee-starter/package.json +3 -3
  26. package/dist/{utils-QSRUVLAT.js → utils-BIWNAKB2.js} +11 -9
  27. package/package.json +5 -5
  28. package/templates/plugin-quick-starter/package.json +1 -1
  29. package/templates/plugin-starter/dist/.vite/manifest.json +11 -0
  30. package/templates/plugin-starter/dist/assets/index-CgkejLs_.css +1 -0
  31. package/templates/plugin-starter/dist/assets/index-DUtsQhKX.js +49 -0
  32. package/templates/plugin-starter/dist/index.d.ts +14 -0
  33. package/templates/plugin-starter/dist/index.html +14 -0
  34. package/templates/plugin-starter/dist/index.js +387 -0
  35. package/templates/plugin-starter/dist/index.js.map +1 -0
  36. package/templates/plugin-starter/package.json +1 -1
  37. package/templates/project-starter/package.json +4 -4
  38. 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-3YTIOEFK.js";
13
- import "./chunk-AQ6OMR2A.js";
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,8 +1,3 @@
1
-
2
- import { createRequire } from 'module';
3
- const require = createRequire(import.meta.url);
4
-
5
-
6
1
  // src/commands/shared/url-utils.ts
7
2
  function getAgentRuntimeUrl(opts) {
8
3
  return opts.remoteUrl?.replace(/\/$/, "") || // Use the flag if provided
@@ -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-2ZF5OAMV.js";
12
+ } from "./chunk-GQIMRI65.js";
17
13
  import {
18
14
  displayBanner,
19
15
  handleError
20
- } from "./chunk-KKAK7OQA.js";
16
+ } from "./chunk-JUNJ3WPR.js";
21
17
 
22
18
  // src/commands/create/index.ts
23
19
  import { Command } from "commander";
@@ -1,8 +1,3 @@
1
-
2
- import { createRequire } from 'module';
3
- const require = createRequire(import.meta.url);
4
-
5
-
6
1
  // src/utils/bun-exec.ts
7
2
  import { logger } from "@elizaos/core";
8
3
  var COMMAND_EXISTS_TIMEOUT_MS = 5e3;
@@ -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-3YTIOEFK.js";
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-KKAK7OQA.js";
18
+ } from "./chunk-JUNJ3WPR.js";
23
19
 
24
20
  // src/characters/eliza.ts
25
21
  var baseCharacter = {