@elizaos/cli 1.3.1 → 1.3.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 (132) hide show
  1. package/README.md +1 -1
  2. package/dist/{chunk-KDNV7EA5.js → chunk-5GUS4CFO.js} +1 -1
  3. package/dist/{chunk-2ALAPQLV.js → chunk-E6XYTE3A.js} +296 -311
  4. package/dist/chunk-GXWWPFBO.js +39 -0
  5. package/dist/{chunk-RM6LUTKD.js → chunk-T2QDIXGU.js} +2 -2
  6. package/dist/commands/agent/actions/index.d.ts +5 -0
  7. package/dist/commands/agent/actions/index.js +2 -2
  8. package/dist/commands/agent/index.d.ts +2 -2
  9. package/dist/commands/agent/index.js +2 -2
  10. package/dist/commands/create/actions/index.js +3 -3
  11. package/dist/commands/create/index.js +4 -4
  12. package/dist/commands/shared/index.d.ts +11 -28
  13. package/dist/commands/shared/index.js +7 -3
  14. package/dist/index.js +541 -450
  15. package/dist/{registry-N626N4VG.js → registry-433S5F3Y.js} +2 -2
  16. package/dist/templates/plugin-quick-starter/package.json +10 -3
  17. package/dist/templates/plugin-quick-starter/src/__tests__/plugin.test.ts +499 -146
  18. package/dist/templates/plugin-quick-starter/src/__tests__/test-utils.ts +316 -115
  19. package/dist/templates/plugin-quick-starter/src/plugin.ts +7 -13
  20. package/dist/templates/plugin-starter/README.md +1 -1
  21. package/dist/templates/plugin-starter/package.json +10 -3
  22. package/dist/templates/plugin-starter/src/__tests__/integration.test.ts +13 -13
  23. package/dist/templates/plugin-starter/src/__tests__/plugin.test.ts +556 -129
  24. package/dist/templates/plugin-starter/src/__tests__/test-utils.ts +347 -115
  25. package/dist/templates/plugin-starter/src/plugin.ts +17 -21
  26. package/dist/templates/project-starter/README.md +1 -1
  27. package/dist/templates/project-starter/package.json +4 -4
  28. package/dist/templates/project-starter/src/__tests__/env.test.ts +3 -1
  29. package/dist/templates/project-starter/src/__tests__/file-structure.test.ts +3 -2
  30. package/dist/templates/project-starter/src/__tests__/integration.test.ts +1 -1
  31. package/dist/templates/project-starter/tsup.config.ts +2 -1
  32. package/dist/templates/project-tee-starter/.dockerignore +64 -14
  33. package/dist/templates/project-tee-starter/Dockerfile +9 -5
  34. package/dist/templates/project-tee-starter/GUIDE.md +103 -42
  35. package/dist/templates/project-tee-starter/README.md +39 -19
  36. package/dist/templates/project-tee-starter/__tests__/build-order.test.ts +62 -0
  37. package/dist/templates/project-tee-starter/__tests__/character.test.ts +19 -17
  38. package/dist/templates/project-tee-starter/__tests__/config.test.ts +10 -3
  39. package/dist/templates/project-tee-starter/__tests__/env.test.ts +2 -1
  40. package/dist/templates/project-tee-starter/__tests__/file-structure.test.ts +14 -3
  41. package/dist/templates/project-tee-starter/__tests__/frontend.test.ts +459 -0
  42. package/dist/templates/project-tee-starter/__tests__/plugin.test.ts +4 -2
  43. package/dist/templates/project-tee-starter/__tests__/routes.test.ts +15 -6
  44. package/dist/templates/project-tee-starter/__tests__/tee-validation.test.ts +295 -0
  45. package/dist/templates/project-tee-starter/__tests__/vite-config-utils.ts +39 -0
  46. package/dist/templates/project-tee-starter/docker-compose.yaml +5 -2
  47. package/dist/templates/{plugin-starter/dist → project-tee-starter}/index.html +3 -3
  48. package/dist/templates/project-tee-starter/package.json +34 -14
  49. package/dist/templates/project-tee-starter/postcss.config.js +3 -0
  50. package/dist/templates/project-tee-starter/scripts/install-test-deps.js +52 -0
  51. package/dist/templates/project-tee-starter/scripts/test-all.sh +82 -0
  52. package/dist/templates/project-tee-starter/src/frontend/index.css +106 -0
  53. package/dist/templates/project-tee-starter/src/frontend/index.html +20 -0
  54. package/dist/templates/project-tee-starter/src/frontend/index.tsx +370 -0
  55. package/dist/templates/project-tee-starter/src/frontend/panels.tsx +17 -0
  56. package/dist/templates/project-tee-starter/src/frontend/utils.ts +6 -0
  57. package/dist/templates/project-tee-starter/src/index.ts +6 -6
  58. package/dist/templates/project-tee-starter/src/plugin.ts +209 -59
  59. package/dist/templates/project-tee-starter/tailwind.config.js +62 -0
  60. package/dist/templates/project-tee-starter/tsconfig.build.json +2 -2
  61. package/dist/templates/project-tee-starter/tsconfig.json +8 -5
  62. package/dist/templates/project-tee-starter/tsup.config.ts +3 -2
  63. package/dist/templates/project-tee-starter/vite.config.ts +39 -0
  64. package/dist/url-utils-CKc_Ebt_.d.ts +35 -0
  65. package/dist/{utils-H66532NB.js → utils-DBLSDYBF.js} +2 -2
  66. package/package.json +7 -6
  67. package/templates/plugin-quick-starter/package.json +10 -3
  68. package/templates/plugin-quick-starter/src/__tests__/plugin.test.ts +499 -146
  69. package/templates/plugin-quick-starter/src/__tests__/test-utils.ts +316 -115
  70. package/templates/plugin-quick-starter/src/plugin.ts +7 -13
  71. package/templates/plugin-starter/README.md +1 -1
  72. package/templates/plugin-starter/package.json +10 -3
  73. package/templates/plugin-starter/src/__tests__/integration.test.ts +13 -13
  74. package/templates/plugin-starter/src/__tests__/plugin.test.ts +556 -129
  75. package/templates/plugin-starter/src/__tests__/test-utils.ts +347 -115
  76. package/templates/plugin-starter/src/plugin.ts +17 -21
  77. package/templates/project-starter/README.md +1 -1
  78. package/templates/project-starter/package.json +4 -4
  79. package/templates/project-starter/src/__tests__/env.test.ts +3 -1
  80. package/templates/project-starter/src/__tests__/file-structure.test.ts +3 -2
  81. package/templates/project-starter/src/__tests__/integration.test.ts +1 -1
  82. package/templates/project-starter/tsup.config.ts +2 -1
  83. package/templates/project-tee-starter/.dockerignore +64 -14
  84. package/templates/project-tee-starter/Dockerfile +9 -5
  85. package/templates/project-tee-starter/GUIDE.md +103 -42
  86. package/templates/project-tee-starter/README.md +39 -19
  87. package/templates/project-tee-starter/__tests__/build-order.test.ts +62 -0
  88. package/templates/project-tee-starter/__tests__/character.test.ts +19 -17
  89. package/templates/project-tee-starter/__tests__/config.test.ts +10 -3
  90. package/templates/project-tee-starter/__tests__/env.test.ts +2 -1
  91. package/templates/project-tee-starter/__tests__/file-structure.test.ts +14 -3
  92. package/templates/project-tee-starter/__tests__/frontend.test.ts +459 -0
  93. package/templates/project-tee-starter/__tests__/plugin.test.ts +4 -2
  94. package/templates/project-tee-starter/__tests__/routes.test.ts +15 -6
  95. package/templates/project-tee-starter/__tests__/tee-validation.test.ts +295 -0
  96. package/templates/project-tee-starter/__tests__/vite-config-utils.ts +39 -0
  97. package/templates/project-tee-starter/docker-compose.yaml +5 -2
  98. package/templates/{plugin-starter/dist → project-tee-starter}/index.html +3 -3
  99. package/templates/project-tee-starter/package.json +34 -14
  100. package/templates/project-tee-starter/postcss.config.js +3 -0
  101. package/templates/project-tee-starter/scripts/install-test-deps.js +52 -0
  102. package/templates/project-tee-starter/scripts/test-all.sh +82 -0
  103. package/templates/project-tee-starter/src/frontend/index.css +106 -0
  104. package/templates/project-tee-starter/src/frontend/index.html +20 -0
  105. package/templates/project-tee-starter/src/frontend/index.tsx +370 -0
  106. package/templates/project-tee-starter/src/frontend/panels.tsx +17 -0
  107. package/templates/project-tee-starter/src/frontend/utils.ts +6 -0
  108. package/templates/project-tee-starter/src/index.ts +6 -6
  109. package/templates/project-tee-starter/src/plugin.ts +209 -59
  110. package/templates/project-tee-starter/tailwind.config.js +62 -0
  111. package/templates/project-tee-starter/tsconfig.build.json +2 -2
  112. package/templates/project-tee-starter/tsconfig.json +8 -5
  113. package/templates/project-tee-starter/tsup.config.ts +3 -2
  114. package/templates/project-tee-starter/vite.config.ts +39 -0
  115. package/dist/chunk-4O6EZU37.js +0 -14
  116. package/dist/migration-guides/advanced-migration-guide.md +0 -459
  117. package/dist/migration-guides/completion-requirements.md +0 -379
  118. package/dist/migration-guides/integrated-migration-loop.md +0 -392
  119. package/dist/migration-guides/migration-guide.md +0 -712
  120. package/dist/migration-guides/prompt-and-generation-guide.md +0 -702
  121. package/dist/migration-guides/state-and-providers-guide.md +0 -544
  122. package/dist/migration-guides/testing-guide.md +0 -1021
  123. package/dist/templates/plugin-starter/dist/assets/index-CgkejLs_.css +0 -1
  124. package/dist/templates/plugin-starter/dist/assets/index-D1cHX53P.js +0 -49
  125. package/dist/templates/plugin-starter/dist/index.js +0 -387
  126. package/dist/templates/plugin-starter/dist/index.js.map +0 -1
  127. package/templates/plugin-starter/dist/.vite/manifest.json +0 -11
  128. package/templates/plugin-starter/dist/assets/index-CgkejLs_.css +0 -1
  129. package/templates/plugin-starter/dist/assets/index-D1cHX53P.js +0 -49
  130. package/templates/plugin-starter/dist/index.d.ts +0 -14
  131. package/templates/plugin-starter/dist/index.js +0 -387
  132. package/templates/plugin-starter/dist/index.js.map +0 -1
package/README.md CHANGED
@@ -280,7 +280,7 @@ If any character files fail to load, ElizaOS will:
280
280
  Run tests for Eliza agent plugins and projects.
281
281
 
282
282
  - **Subcommands:**
283
- - `component`: Run component tests (via Vitest)
283
+ - `component`: Run component tests (via bun:test)
284
284
  - `e2e`: Run end-to-end runtime tests
285
285
  - `all`: Run both component and e2e tests (default)
286
286
  - **Options:**
@@ -15,7 +15,7 @@ import {
15
15
  promptAndStorePostgresUrl,
16
16
  runTasks,
17
17
  setupPgLite
18
- } from "./chunk-2ALAPQLV.js";
18
+ } from "./chunk-E6XYTE3A.js";
19
19
 
20
20
  // src/characters/eliza.ts
21
21
  var baseCharacter = {