@elizaos/cli 1.0.20 → 1.1.1

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.
@@ -12,7 +12,7 @@ import {
12
12
  selectEmbeddingModel,
13
13
  validateCreateOptions,
14
14
  validateProjectName
15
- } from "./chunk-RJ7XRVPG.js";
15
+ } from "./chunk-OHXCCMDW.js";
16
16
  import {
17
17
  displayBanner,
18
18
  handleError
@@ -199,12 +199,12 @@ function getElizaCharacter() {
199
199
  // Core plugins first
200
200
  "@elizaos/plugin-sql",
201
201
  // Text-only plugins (no embedding support)
202
- ...process.env.ANTHROPIC_API_KEY ? ["@elizaos/plugin-anthropic"] : [],
203
- ...process.env.OPENROUTER_API_KEY ? ["@elizaos/plugin-openrouter"] : [],
202
+ ...!!process.env.ANTHROPIC_API_KEY ? ["@elizaos/plugin-anthropic"] : [],
203
+ ...!!process.env.OPENROUTER_API_KEY ? ["@elizaos/plugin-openrouter"] : [],
204
204
  // Embedding-capable plugins last (lowest priority for embedding fallback)
205
- ...process.env.OPENAI_API_KEY ? ["@elizaos/plugin-openai"] : [],
206
- ...process.env.OLLAMA_API_ENDPOINT ? ["@elizaos/plugin-ollama"] : [],
207
- ...process.env.GOOGLE_GENERATIVE_AI_API_KEY ? ["@elizaos/plugin-google-genai"] : [],
205
+ ...!!process.env.OPENAI_API_KEY ? ["@elizaos/plugin-openai"] : [],
206
+ ...!!process.env.OLLAMA_API_ENDPOINT ? ["@elizaos/plugin-ollama"] : [],
207
+ ...!!process.env.GOOGLE_GENERATIVE_AI_API_KEY ? ["@elizaos/plugin-google-genai"] : [],
208
208
  ...!process.env.GOOGLE_GENERATIVE_AI_API_KEY && !process.env.OLLAMA_API_ENDPOINT && !process.env.OPENAI_API_KEY ? ["@elizaos/plugin-local-ai"] : [],
209
209
  // Platform plugins
210
210
  ...process.env.DISCORD_API_TOKEN ? ["@elizaos/plugin-discord"] : [],
@@ -506,6 +506,13 @@ async function createPlugin(pluginName, targetDir, isNonInteractive = false) {
506
506
  }
507
507
  const processedName = nameResult.processedName;
508
508
  const pluginDirName = processedName.startsWith("plugin-") ? processedName : `plugin-${processedName}`;
509
+ if (pluginDirName !== pluginName) {
510
+ console.warn(
511
+ `
512
+ Warning: changing "${pluginName}" to "${pluginDirName}" to conform to plugin naming conventions
513
+ `
514
+ );
515
+ }
509
516
  const pluginTargetDir = join(targetDir, pluginDirName);
510
517
  const dirResult = await validateTargetDirectory(pluginTargetDir);
511
518
  if (!dirResult.isValid) {
@@ -531,8 +538,11 @@ ${colors.green("\u2713")} Plugin "${pluginDirName}" created successfully!`);
531
538
  console.info(`
532
539
  Next steps:`);
533
540
  console.info(` cd ${pluginDirName}`);
534
- console.info(` bun run build`);
535
- console.info(` bun run test
541
+ console.info(` bun run build # Build the plugin`);
542
+ console.info(`
543
+ Common commands:`);
544
+ console.info(` elizaos dev # Start development mode with hot reloading`);
545
+ console.info(` elizaos start # Start in production mode
536
546
  `);
537
547
  });
538
548
  }
@@ -570,8 +580,11 @@ ${colors.green("\u2713")} Agent "${agentName}" created successfully!`);
570
580
  console.info(`Agent character created successfully at: ${agentFilePath}`);
571
581
  console.info(`
572
582
  To use this agent:`);
573
- console.info(` elizaos agent start --path ${agentFilePath}
574
- `);
583
+ console.info(` 1. Start ElizaOS server with this character:`);
584
+ console.info(` elizaos start --character ${agentFilePath}`);
585
+ console.info(`
586
+ OR if a server is already running:`);
587
+ console.info(` elizaos agent start --path ${agentFilePath}`);
575
588
  }
576
589
  async function createTEEProject(projectName, targetDir, database, aiModel, embeddingModel, isNonInteractive = false) {
577
590
  const teeTargetDir = join(targetDir, projectName);
@@ -624,7 +637,10 @@ ${colors.green("\u2713")} TEE project "${projectName}" created successfully!`);
624
637
  console.info(`
625
638
  Next steps:`);
626
639
  console.info(` cd ${projectName}`);
627
- console.info(` bun run dev
640
+ console.info(`
641
+ Common commands:`);
642
+ console.info(` elizaos dev # Start development mode with hot reloading`);
643
+ console.info(` elizaos start # Start in production mode
628
644
  `);
629
645
  });
630
646
  }
@@ -682,8 +698,13 @@ async function createProject(projectName, targetDir, database, aiModel, embeddin
682
698
  ${colors.green("\u2713")} ${displayName} initialized successfully!`);
683
699
  console.info(`
684
700
  Next steps:`);
685
- console.info(` cd ${projectName}`);
686
- console.info(` bun run dev
701
+ if (projectName !== ".") {
702
+ console.info(` cd ${projectName}`);
703
+ }
704
+ console.info(`
705
+ Common commands:`);
706
+ console.info(` elizaos dev # Start development mode with hot reloading`);
707
+ console.info(` elizaos start # Start in production mode
687
708
  `);
688
709
  };
689
710
  if (projectName === ".") {
@@ -7,7 +7,7 @@ import {
7
7
  createPlugin,
8
8
  createProject,
9
9
  createTEEProject
10
- } from "../../../chunk-RJ7XRVPG.js";
10
+ } from "../../../chunk-OHXCCMDW.js";
11
11
  import {
12
12
  createProjectDirectories,
13
13
  setupAIModelConfig,
@@ -4,8 +4,8 @@ const require = createRequire(import.meta.url);
4
4
 
5
5
  import {
6
6
  create
7
- } from "../../chunk-ME4CPLVT.js";
8
- import "../../chunk-RJ7XRVPG.js";
7
+ } from "../../chunk-KFGXZCQP.js";
8
+ import "../../chunk-OHXCCMDW.js";
9
9
  import "../../chunk-77IXJDDC.js";
10
10
  import "../../chunk-GILK2M6Z.js";
11
11
  import "../../chunk-7PPBVSWE.js";
package/dist/index.html CHANGED
@@ -14,7 +14,7 @@
14
14
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
15
15
  <link rel="icon" type="image/x-icon" href="/favicon.ico" />
16
16
  <title>ElizaOS - Client</title>
17
- <script type="module" crossorigin src="/assets/index-B1BYc3c_.js"></script>
17
+ <script type="module" crossorigin src="/assets/index-C0zfFSZo.js"></script>
18
18
  <link rel="modulepreload" crossorigin href="/assets/vendor-Dp9Dttv5.js">
19
19
  <link rel="stylesheet" crossorigin href="/assets/index-BXWgVSUO.css">
20
20
  </head>
package/dist/index.js CHANGED
@@ -5,10 +5,10 @@ const require = createRequire(import.meta.url);
5
5
 
6
6
  import {
7
7
  create
8
- } from "./chunk-ME4CPLVT.js";
8
+ } from "./chunk-KFGXZCQP.js";
9
9
  import {
10
10
  getElizaCharacter
11
- } from "./chunk-RJ7XRVPG.js";
11
+ } from "./chunk-OHXCCMDW.js";
12
12
  import "./chunk-77IXJDDC.js";
13
13
  import {
14
14
  TestRunner,
@@ -40,17 +40,16 @@
40
40
  "tsup.config.ts"
41
41
  ],
42
42
  "dependencies": {
43
- "@elizaos/core": "^1.0.0",
43
+ "@elizaos/core": "1.1.1",
44
44
  "@tanstack/react-query": "^5.80.7",
45
45
  "clsx": "^2.1.1",
46
- "tailwindcss": "^4.1.10",
47
46
  "tailwind-merge": "^3.3.1",
47
+ "tailwindcss": "^4.1.10",
48
48
  "vite": "^6.3.5",
49
49
  "zod": "3.24.2"
50
50
  },
51
- "peerDependencies": {},
52
51
  "devDependencies": {
53
- "@elizaos/cli": "^1.0.0",
52
+ "@elizaos/cli": "1.1.1",
54
53
  "@tailwindcss/vite": "^4.1.10",
55
54
  "@vitejs/plugin-react-swc": "^3.10.2",
56
55
  "dotenv": "16.4.5",
@@ -28,10 +28,10 @@
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@elizaos/cli": "1.0.19",
32
- "@elizaos/core": "1.0.19",
33
- "@elizaos/plugin-bootstrap": "1.0.19",
34
- "@elizaos/plugin-sql": "1.0.19",
31
+ "@elizaos/cli": "1.1.1",
32
+ "@elizaos/core": "1.1.1",
33
+ "@elizaos/plugin-bootstrap": "1.1.1",
34
+ "@elizaos/plugin-sql": "1.1.1",
35
35
  "@tanstack/react-query": "^5.29.0",
36
36
  "clsx": "^2.1.1",
37
37
  "react": "^18.3.1",
@@ -33,18 +33,18 @@
33
33
  "GUIDE.md"
34
34
  ],
35
35
  "dependencies": {
36
- "@elizaos/cli": "1.0.19",
37
- "@elizaos/core": "1.0.19",
36
+ "@elizaos/cli": "1.1.1",
37
+ "@elizaos/core": "1.1.1",
38
38
  "@elizaos/plugin-redpill": "1.0.3",
39
- "@elizaos/plugin-sql": "1.0.19",
39
+ "@elizaos/plugin-sql": "1.1.1",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "viem": "2.30.1",
43
43
  "zod": "3.24.2"
44
44
  },
45
45
  "devDependencies": {
46
- "tsup": "8.5.0",
47
- "prettier": "3.5.3"
46
+ "prettier": "3.5.3",
47
+ "tsup": "8.5.0"
48
48
  },
49
49
  "scripts": {
50
50
  "start": "elizaos start",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/cli",
3
- "version": "1.0.20",
3
+ "version": "1.1.1",
4
4
  "description": "elizaOS CLI - Manage your AI agents and plugins",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -69,14 +69,14 @@
69
69
  "typescript": "5.8.3",
70
70
  "vite": "^6.3.5"
71
71
  },
72
- "gitHead": "627eaabb9a325876f8502a462aa00d0af234ff26",
72
+ "gitHead": "fc0714c773d1bb917ffafab7ad8db6eab116d642",
73
73
  "dependencies": {
74
74
  "@anthropic-ai/claude-code": "^1.0.35",
75
75
  "@anthropic-ai/sdk": "^0.54.0",
76
76
  "@clack/prompts": "^0.11.0",
77
- "@elizaos/core": "1.0.20",
78
- "@elizaos/plugin-sql": "1.0.20",
79
- "@elizaos/server": "1.0.20",
77
+ "@elizaos/core": "1.1.1",
78
+ "@elizaos/plugin-sql": "1.1.1",
79
+ "@elizaos/server": "1.1.1",
80
80
  "bun": "^1.2.17",
81
81
  "chalk": "^5.3.0",
82
82
  "chokidar": "^4.0.3",
@@ -40,17 +40,16 @@
40
40
  "tsup.config.ts"
41
41
  ],
42
42
  "dependencies": {
43
- "@elizaos/core": "^1.0.0",
43
+ "@elizaos/core": "1.1.1",
44
44
  "@tanstack/react-query": "^5.80.7",
45
45
  "clsx": "^2.1.1",
46
- "tailwindcss": "^4.1.10",
47
46
  "tailwind-merge": "^3.3.1",
47
+ "tailwindcss": "^4.1.10",
48
48
  "vite": "^6.3.5",
49
49
  "zod": "3.24.2"
50
50
  },
51
- "peerDependencies": {},
52
51
  "devDependencies": {
53
- "@elizaos/cli": "^1.0.0",
52
+ "@elizaos/cli": "1.1.1",
54
53
  "@tailwindcss/vite": "^4.1.10",
55
54
  "@vitejs/plugin-react-swc": "^3.10.2",
56
55
  "dotenv": "16.4.5",
@@ -28,10 +28,10 @@
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@elizaos/cli": "1.0.19",
32
- "@elizaos/core": "1.0.19",
33
- "@elizaos/plugin-bootstrap": "1.0.19",
34
- "@elizaos/plugin-sql": "1.0.19",
31
+ "@elizaos/cli": "1.1.1",
32
+ "@elizaos/core": "1.1.1",
33
+ "@elizaos/plugin-bootstrap": "1.1.1",
34
+ "@elizaos/plugin-sql": "1.1.1",
35
35
  "@tanstack/react-query": "^5.29.0",
36
36
  "clsx": "^2.1.1",
37
37
  "react": "^18.3.1",
@@ -33,18 +33,18 @@
33
33
  "GUIDE.md"
34
34
  ],
35
35
  "dependencies": {
36
- "@elizaos/cli": "1.0.19",
37
- "@elizaos/core": "1.0.19",
36
+ "@elizaos/cli": "1.1.1",
37
+ "@elizaos/core": "1.1.1",
38
38
  "@elizaos/plugin-redpill": "1.0.3",
39
- "@elizaos/plugin-sql": "1.0.19",
39
+ "@elizaos/plugin-sql": "1.1.1",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "viem": "2.30.1",
43
43
  "zod": "3.24.2"
44
44
  },
45
45
  "devDependencies": {
46
- "tsup": "8.5.0",
47
- "prettier": "3.5.3"
46
+ "prettier": "3.5.3",
47
+ "tsup": "8.5.0"
48
48
  },
49
49
  "scripts": {
50
50
  "start": "elizaos start",
Binary file
Binary file