@elizaos/cli 1.5.8-alpha.7 → 1.5.8-alpha.8

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 (43) hide show
  1. package/dist/commands/dev/actions/dev-server.d.ts.map +1 -1
  2. package/dist/commands/dev/types.d.ts +4 -0
  3. package/dist/commands/dev/types.d.ts.map +1 -1
  4. package/dist/commands/dev/utils/file-watcher.d.ts.map +1 -1
  5. package/dist/commands/scenario/index.d.ts.map +1 -1
  6. package/dist/commands/scenario/src/ConversationEvaluators.d.ts +36 -0
  7. package/dist/commands/scenario/src/ConversationEvaluators.d.ts.map +1 -0
  8. package/dist/commands/scenario/src/ConversationManager.d.ts +107 -0
  9. package/dist/commands/scenario/src/ConversationManager.d.ts.map +1 -0
  10. package/dist/commands/scenario/src/EnhancedEvaluationEngine.d.ts.map +1 -1
  11. package/dist/commands/scenario/src/EvaluationEngine.d.ts.map +1 -1
  12. package/dist/commands/scenario/src/LocalEnvironmentProvider.d.ts +2 -0
  13. package/dist/commands/scenario/src/LocalEnvironmentProvider.d.ts.map +1 -1
  14. package/dist/commands/scenario/src/TrajectoryReconstructor.d.ts.map +1 -1
  15. package/dist/commands/scenario/src/UserSimulator.d.ts +44 -0
  16. package/dist/commands/scenario/src/UserSimulator.d.ts.map +1 -0
  17. package/dist/commands/scenario/src/conversation-types.d.ts +138 -0
  18. package/dist/commands/scenario/src/conversation-types.d.ts.map +1 -0
  19. package/dist/commands/scenario/src/runtime-factory.d.ts +9 -3
  20. package/dist/commands/scenario/src/runtime-factory.d.ts.map +1 -1
  21. package/dist/commands/scenario/src/schema.d.ts +1464 -0
  22. package/dist/commands/scenario/src/schema.d.ts.map +1 -1
  23. package/dist/index.js +4253 -2979
  24. package/dist/index.js.map +20 -17
  25. package/dist/templates/plugin-quick-starter/build.ts +3 -3
  26. package/dist/templates/plugin-quick-starter/package.json +2 -2
  27. package/dist/templates/plugin-starter/build.ts +3 -3
  28. package/dist/templates/plugin-starter/package.json +2 -2
  29. package/dist/templates/project-starter/build.ts +3 -3
  30. package/dist/templates/project-starter/package.json +6 -6
  31. package/dist/templates/project-tee-starter/build.ts +3 -3
  32. package/dist/templates/project-tee-starter/package.json +4 -4
  33. package/dist/version.d.ts +2 -2
  34. package/dist/version.js +2 -2
  35. package/package.json +7 -7
  36. package/templates/plugin-quick-starter/build.ts +3 -3
  37. package/templates/plugin-quick-starter/package.json +2 -2
  38. package/templates/plugin-starter/build.ts +3 -3
  39. package/templates/plugin-starter/package.json +2 -2
  40. package/templates/project-starter/build.ts +3 -3
  41. package/templates/project-starter/package.json +6 -6
  42. package/templates/project-tee-starter/build.ts +3 -3
  43. package/templates/project-tee-starter/package.json +4 -4
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building plugin...\n');
19
+ console.log('šŸš€ Building plugin...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -74,7 +74,7 @@ async function build() {
74
74
  }
75
75
 
76
76
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
77
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
77
+ console.log(`āœ… Build complete! (${elapsed}s)`);
78
78
  return true;
79
79
  } catch (error) {
80
80
  console.error('Build error:', error);
@@ -39,11 +39,11 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.8-alpha.7",
42
+ "@elizaos/core": "1.5.8-alpha.8",
43
43
  "zod": "^3.24.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@elizaos/cli": "1.5.8-alpha.7",
46
+ "@elizaos/cli": "1.5.8-alpha.8",
47
47
  "dotenv": "16.4.5",
48
48
  "prettier": "3.5.3",
49
49
  "typescript": "5.8.2"
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building plugin...\n');
19
+ console.log('šŸš€ Building plugin...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -74,7 +74,7 @@ async function build() {
74
74
  }
75
75
 
76
76
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
77
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
77
+ console.log(`āœ… Build complete! (${elapsed}s)`);
78
78
  return true;
79
79
  } catch (error) {
80
80
  console.error('Build error:', error);
@@ -39,7 +39,7 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.8-alpha.7",
42
+ "@elizaos/core": "1.5.8-alpha.8",
43
43
  "@tanstack/react-query": "^5.80.7",
44
44
  "clsx": "^2.1.1",
45
45
  "tailwind-merge": "^3.3.1",
@@ -48,7 +48,7 @@
48
48
  "zod": "3.24.2"
49
49
  },
50
50
  "devDependencies": {
51
- "@elizaos/cli": "1.5.8-alpha.7",
51
+ "@elizaos/cli": "1.5.8-alpha.8",
52
52
  "@tailwindcss/vite": "^4.1.10",
53
53
  "@vitejs/plugin-react-swc": "^3.10.2",
54
54
  "dotenv": "16.4.5",
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building project...\n');
19
+ console.log('šŸš€ Building project...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -85,7 +85,7 @@ async function build() {
85
85
  }
86
86
 
87
87
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
88
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
88
+ console.log(`āœ… Build complete! (${elapsed}s)`);
89
89
  return true;
90
90
  } catch (error) {
91
91
  console.error('Build error:', error);
@@ -27,12 +27,12 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@elizaos/cli": "1.5.8-alpha.7",
31
- "@elizaos/client": "1.5.8-alpha.7",
32
- "@elizaos/core": "1.5.8-alpha.7",
33
- "@elizaos/plugin-bootstrap": "1.5.8-alpha.7",
34
- "@elizaos/plugin-sql": "1.5.8-alpha.7",
35
- "@elizaos/server": "1.5.8-alpha.7",
30
+ "@elizaos/cli": "1.5.8-alpha.8",
31
+ "@elizaos/client": "1.5.8-alpha.8",
32
+ "@elizaos/core": "1.5.8-alpha.8",
33
+ "@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
34
+ "@elizaos/plugin-sql": "1.5.8-alpha.8",
35
+ "@elizaos/server": "1.5.8-alpha.8",
36
36
  "@tanstack/react-query": "^5.29.0",
37
37
  "clsx": "^2.1.1",
38
38
  "react": "^18.3.1",
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building TEE project...\n');
19
+ console.log('šŸš€ Building TEE project...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -85,7 +85,7 @@ async function build() {
85
85
  }
86
86
 
87
87
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
88
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
88
+ console.log(`āœ… Build complete! (${elapsed}s)`);
89
89
  return true;
90
90
  } catch (error) {
91
91
  console.error('Build error:', error);
@@ -32,11 +32,11 @@
32
32
  "GUIDE.md"
33
33
  ],
34
34
  "dependencies": {
35
- "@elizaos/cli": "1.5.8-alpha.7",
36
- "@elizaos/core": "1.5.8-alpha.7",
37
- "@elizaos/plugin-bootstrap": "1.5.8-alpha.7",
35
+ "@elizaos/cli": "1.5.8-alpha.8",
36
+ "@elizaos/core": "1.5.8-alpha.8",
37
+ "@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
38
38
  "@elizaos/plugin-redpill": "1.2.1",
39
- "@elizaos/plugin-sql": "1.5.8-alpha.7",
39
+ "@elizaos/plugin-sql": "1.5.8-alpha.8",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "@tanstack/react-query": "^5.29.0",
package/dist/version.d.ts CHANGED
@@ -3,10 +3,10 @@
3
3
  * Generated at build time by generate-version.ts
4
4
  * This file contains build-time constants to avoid runtime package.json resolution
5
5
  */
6
- export declare const CLI_VERSION = "1.5.8-alpha.7";
6
+ export declare const CLI_VERSION = "1.5.8-alpha.8";
7
7
  export declare const CLI_NAME = "@elizaos/cli";
8
8
  export declare const CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins";
9
- export declare const BUILD_TIME = "2025-09-05T16:37:57.846Z";
9
+ export declare const BUILD_TIME = "2025-09-05T17:29:13.587Z";
10
10
  export declare const BUILD_ENV = "production";
11
11
  declare const _default: {
12
12
  version: string;
package/dist/version.js CHANGED
@@ -4,12 +4,12 @@
4
4
  * This file contains build-time constants to avoid runtime package.json resolution
5
5
  */
6
6
 
7
- export const CLI_VERSION = '1.5.8-alpha.7';
7
+ export const CLI_VERSION = '1.5.8-alpha.8';
8
8
  export const CLI_NAME = '@elizaos/cli';
9
9
  export const CLI_DESCRIPTION = 'elizaOS CLI - Manage your AI agents and plugins';
10
10
 
11
11
  // Build metadata
12
- export const BUILD_TIME = '2025-09-05T16:37:57.846Z';
12
+ export const BUILD_TIME = '2025-09-05T17:29:13.587Z';
13
13
  export const BUILD_ENV = 'production';
14
14
 
15
15
  // Export as default for convenience
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/cli",
3
- "version": "1.5.8-alpha.7",
3
+ "version": "1.5.8-alpha.8",
4
4
  "description": "elizaOS CLI - Manage your AI agents and plugins",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -74,16 +74,16 @@
74
74
  "typescript": "5.8.3",
75
75
  "vite": "^6.3.5"
76
76
  },
77
- "gitHead": "1fa50c21a2b5b690d7fb3e3598f660876cc8c786",
77
+ "gitHead": "d0741e387d0621e47d6fe04ddf04d10021b17e1e",
78
78
  "dependencies": {
79
79
  "@anthropic-ai/claude-code": "^1.0.35",
80
80
  "@anthropic-ai/sdk": "^0.54.0",
81
81
  "@clack/prompts": "^0.11.0",
82
- "@elizaos/api-client": "1.5.8-alpha.7",
83
- "@elizaos/core": "1.5.8-alpha.7",
84
- "@elizaos/plugin-bootstrap": "1.5.8-alpha.7",
85
- "@elizaos/plugin-sql": "1.5.8-alpha.7",
86
- "@elizaos/server": "1.5.8-alpha.7",
82
+ "@elizaos/api-client": "1.5.8-alpha.8",
83
+ "@elizaos/core": "1.5.8-alpha.8",
84
+ "@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
85
+ "@elizaos/plugin-sql": "1.5.8-alpha.8",
86
+ "@elizaos/server": "1.5.8-alpha.8",
87
87
  "bun": "^1.2.21",
88
88
  "chalk": "^5.4.1",
89
89
  "chokidar": "^4.0.3",
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building plugin...\n');
19
+ console.log('šŸš€ Building plugin...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -74,7 +74,7 @@ async function build() {
74
74
  }
75
75
 
76
76
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
77
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
77
+ console.log(`āœ… Build complete! (${elapsed}s)`);
78
78
  return true;
79
79
  } catch (error) {
80
80
  console.error('Build error:', error);
@@ -39,11 +39,11 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.8-alpha.7",
42
+ "@elizaos/core": "1.5.8-alpha.8",
43
43
  "zod": "^3.24.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@elizaos/cli": "1.5.8-alpha.7",
46
+ "@elizaos/cli": "1.5.8-alpha.8",
47
47
  "dotenv": "16.4.5",
48
48
  "prettier": "3.5.3",
49
49
  "typescript": "5.8.2"
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building plugin...\n');
19
+ console.log('šŸš€ Building plugin...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -74,7 +74,7 @@ async function build() {
74
74
  }
75
75
 
76
76
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
77
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
77
+ console.log(`āœ… Build complete! (${elapsed}s)`);
78
78
  return true;
79
79
  } catch (error) {
80
80
  console.error('Build error:', error);
@@ -39,7 +39,7 @@
39
39
  "package.json"
40
40
  ],
41
41
  "dependencies": {
42
- "@elizaos/core": "1.5.8-alpha.7",
42
+ "@elizaos/core": "1.5.8-alpha.8",
43
43
  "@tanstack/react-query": "^5.80.7",
44
44
  "clsx": "^2.1.1",
45
45
  "tailwind-merge": "^3.3.1",
@@ -48,7 +48,7 @@
48
48
  "zod": "3.24.2"
49
49
  },
50
50
  "devDependencies": {
51
- "@elizaos/cli": "1.5.8-alpha.7",
51
+ "@elizaos/cli": "1.5.8-alpha.8",
52
52
  "@tailwindcss/vite": "^4.1.10",
53
53
  "@vitejs/plugin-react-swc": "^3.10.2",
54
54
  "dotenv": "16.4.5",
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building project...\n');
19
+ console.log('šŸš€ Building project...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -85,7 +85,7 @@ async function build() {
85
85
  }
86
86
 
87
87
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
88
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
88
+ console.log(`āœ… Build complete! (${elapsed}s)`);
89
89
  return true;
90
90
  } catch (error) {
91
91
  console.error('Build error:', error);
@@ -27,12 +27,12 @@
27
27
  "dist"
28
28
  ],
29
29
  "dependencies": {
30
- "@elizaos/cli": "1.5.8-alpha.7",
31
- "@elizaos/client": "1.5.8-alpha.7",
32
- "@elizaos/core": "1.5.8-alpha.7",
33
- "@elizaos/plugin-bootstrap": "1.5.8-alpha.7",
34
- "@elizaos/plugin-sql": "1.5.8-alpha.7",
35
- "@elizaos/server": "1.5.8-alpha.7",
30
+ "@elizaos/cli": "1.5.8-alpha.8",
31
+ "@elizaos/client": "1.5.8-alpha.8",
32
+ "@elizaos/core": "1.5.8-alpha.8",
33
+ "@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
34
+ "@elizaos/plugin-sql": "1.5.8-alpha.8",
35
+ "@elizaos/server": "1.5.8-alpha.8",
36
36
  "@tanstack/react-query": "^5.29.0",
37
37
  "clsx": "^2.1.1",
38
38
  "react": "^18.3.1",
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
16
16
 
17
17
  async function build() {
18
18
  const start = performance.now();
19
- console.log('šŸš€ Building TEE project...\n');
19
+ console.log('šŸš€ Building TEE project...');
20
20
 
21
21
  try {
22
22
  // Clean previous build
23
23
  await cleanBuild('dist');
24
24
 
25
25
  // Run JavaScript build and TypeScript declarations in parallel
26
- console.log('Starting parallel build tasks...');
26
+ console.log('Starting build tasks...');
27
27
 
28
28
  const [buildResult, tscResult] = await Promise.all([
29
29
  // Task 1: Build with Bun
@@ -85,7 +85,7 @@ async function build() {
85
85
  }
86
86
 
87
87
  const elapsed = ((performance.now() - start) / 1000).toFixed(2);
88
- console.log(`\nāœ… Build complete! (${elapsed}s)\n`);
88
+ console.log(`āœ… Build complete! (${elapsed}s)`);
89
89
  return true;
90
90
  } catch (error) {
91
91
  console.error('Build error:', error);
@@ -32,11 +32,11 @@
32
32
  "GUIDE.md"
33
33
  ],
34
34
  "dependencies": {
35
- "@elizaos/cli": "1.5.8-alpha.7",
36
- "@elizaos/core": "1.5.8-alpha.7",
37
- "@elizaos/plugin-bootstrap": "1.5.8-alpha.7",
35
+ "@elizaos/cli": "1.5.8-alpha.8",
36
+ "@elizaos/core": "1.5.8-alpha.8",
37
+ "@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
38
38
  "@elizaos/plugin-redpill": "1.2.1",
39
- "@elizaos/plugin-sql": "1.5.8-alpha.7",
39
+ "@elizaos/plugin-sql": "1.5.8-alpha.8",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "@tanstack/react-query": "^5.29.0",