@elizaos/cli 1.0.6 → 1.0.7

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 (48) hide show
  1. package/README.md +12 -11
  2. package/dist/assets/{index-TLtd8ntA.js → index-BMJNV7A7.js} +2564 -1976
  3. package/dist/assets/{index-TLtd8ntA.js.map → index-BMJNV7A7.js.map} +1 -1
  4. package/dist/assets/index-DyA-lndn.css +1 -0
  5. package/dist/assets/index-DyA-lndn.css.br +0 -0
  6. package/dist/assets/{index-BlgsVC9v.js → index-zeG6Jws8.js} +2 -2
  7. package/dist/assets/index-zeG6Jws8.js.br +0 -0
  8. package/dist/assets/{index-BlgsVC9v.js.map → index-zeG6Jws8.js.map} +1 -1
  9. package/dist/chunk-2RXF3FKA.js +17 -0
  10. package/dist/chunk-3EAACNH2.js +478 -0
  11. package/dist/{chunk-YMKISDXM.js → chunk-4OL6NNBI.js} +34 -17
  12. package/dist/{chunk-MAGJ4VCL.js → chunk-CEMRVVKO.js} +8 -7
  13. package/dist/{chunk-O64SGQGU.js → chunk-IYVGVCIB.js} +270 -162
  14. package/dist/{chunk-LXYNBPDV.js → chunk-JOHBW4FN.js} +15 -9
  15. package/dist/{chunk-VWWF4TGX.js → chunk-JROMRXES.js} +39 -12
  16. package/dist/{chunk-4QRJ6FQC.js → chunk-SCN6ZP4J.js} +35 -15
  17. package/dist/{chunk-L64NPCT6.js → chunk-V2MPQGYW.js} +77 -68
  18. package/dist/{chunk-PHLX32YJ.js → chunk-WIPEH5RX.js} +39 -30
  19. package/dist/{chunk-RGI5263U.js → chunk-YMXO6XZ5.js} +902 -718
  20. package/dist/commands/agent.js +1 -1
  21. package/dist/commands/create.d.ts +1 -8
  22. package/dist/commands/create.js +2 -2
  23. package/dist/commands/dev.js +3 -2
  24. package/dist/commands/env.js +2 -2
  25. package/dist/commands/monorepo.d.ts +5 -0
  26. package/dist/commands/{setup-monorepo.js → monorepo.js} +4 -4
  27. package/dist/commands/plugins.js +2 -2
  28. package/dist/commands/publish.js +3 -3
  29. package/dist/commands/start.js +4 -3
  30. package/dist/commands/test.js +5 -4
  31. package/dist/commands/update.js +2 -2
  32. package/dist/index.html +2 -2
  33. package/dist/index.js +14 -13
  34. package/dist/{registry-A4UYBEET.js → registry-AV3SDTPW.js} +1 -1
  35. package/package.json +5 -5
  36. package/templates/plugin-starter/README.md +26 -9
  37. package/templates/plugin-starter/package.json +5 -1
  38. package/templates/plugin-starter/tsconfig.build.json +1 -3
  39. package/templates/plugin-starter/tsconfig.json +1 -2
  40. package/templates/plugin-starter/tsup.config.ts +1 -1
  41. package/templates/project-starter/README.md +15 -16
  42. package/templates/project-starter/package.json +5 -5
  43. package/templates/project-tee-starter/package.json +4 -4
  44. package/dist/assets/index-BlgsVC9v.js.br +0 -0
  45. package/dist/assets/index-fZleA996.css +0 -1
  46. package/dist/assets/index-fZleA996.css.br +0 -0
  47. package/dist/chunk-CR5NR6A6.js +0 -458
  48. package/dist/commands/setup-monorepo.d.ts +0 -5
package/README.md CHANGED
@@ -13,14 +13,16 @@ bun install -g @elizaos/cli
13
13
  The ElizaOS CLI requires [Bun](https://bun.sh) as its package manager. If Bun is not installed when you run the CLI, it will attempt to automatically install it for you.
14
14
 
15
15
  **Auto-installation features:**
16
+
16
17
  - ✅ Detects when Bun is missing
17
- - ✅ Downloads and installs Bun automatically on Windows, macOS, and Linux
18
+ - ✅ Downloads and installs Bun automatically on Windows, macOS, and Linux
18
19
  - ✅ Updates PATH for the current session
19
20
  - ✅ Falls back to manual installation instructions if auto-install fails
20
21
  - ✅ Skips auto-installation in CI environments
21
22
  - ✅ Can be disabled with `--no-auto-install` flag
22
23
 
23
24
  **To disable auto-installation:**
25
+
24
26
  ```bash
25
27
  # Global flag (applies to all commands)
26
28
  elizaos --no-auto-install create my-project
@@ -49,6 +51,7 @@ The following options are available for all ElizaOS CLI commands:
49
51
  - `-h, --help`: Display help information
50
52
 
51
53
  **Example usage:**
54
+
52
55
  ```bash
53
56
  # Disable auto-installation and emojis
54
57
  elizaos --no-auto-install --no-emoji create my-project
@@ -70,8 +73,7 @@ Initialize a new project, plugin, or agent.
70
73
  - **Options:**
71
74
  - `-d, --dir <dir>`: Installation directory (default: `.`)
72
75
  - `-y, --yes`: Skip confirmation and use defaults (default: `false`)
73
- - `-t, --type <type>`: Type to create: 'project', 'plugin', or 'agent' (default: 'project')
74
- - `--tee`: create a TEE starter project (default: `false`)
76
+ - `-t, --type <type>`: Type to create: 'project', 'plugin', 'agent', or 'tee' (default: 'project')
75
77
 
76
78
  **Important notes:**
77
79
 
@@ -130,12 +132,12 @@ Manage environment variables and secrets.
130
132
 
131
133
  ### Monorepo Setup
132
134
 
133
- #### `elizaos setup-monorepo`
135
+ #### `elizaos monorepo`
134
136
 
135
- Clone ElizaOS monorepo from a specific branch (defaults to main).
137
+ Clone ElizaOS monorepo from a specific branch (defaults to develop).
136
138
 
137
139
  - **Options:**
138
- - `-b, --branch <branch>`: Branch to install (default: `main`)
140
+ - `-b, --branch <branch>`: Branch to install (default: `develop`)
139
141
  - `-d, --dir <directory>`: Destination directory (default: `./eliza`)
140
142
 
141
143
  **Notes:**
@@ -150,7 +152,7 @@ Clone ElizaOS monorepo from a specific branch (defaults to main).
150
152
  Manage an ElizaOS plugin.
151
153
 
152
154
  - **Subcommands:**
153
- - `list` (alias: `l`): List all available plugins
155
+ - `list` (alias: `l`): List available plugins (shows v1.x plugins by default)
154
156
  - `add <plugin>` (alias: `install`): Add a plugin to the project
155
157
  - Arguments: `<plugin>` (plugin name)
156
158
  - Options: `-n, --no-env-prompt`, `-b, --branch <branchName>`, `-T, --tag <tagname>`
@@ -185,7 +187,6 @@ Manage ElizaOS agents.
185
187
  - `start` (alias: `s`): Start an agent
186
188
  - Options:
187
189
  - `-n, --name <name>`: Name of an existing agent to start
188
- - `-j, --json <json>`: Character JSON configuration string
189
190
  - `--path <path>`: Local path to character JSON file
190
191
  - `--remote-character <url>`: URL to remote character JSON file
191
192
  - `-r, --remote-url <url>`: URL of the remote agent runtime
@@ -218,7 +219,7 @@ Publish a plugin to the registry.
218
219
 
219
220
  - **Options:**
220
221
  - `-t, --test`: Test publish process without making changes
221
- - `-n, --npm`: Publish to npm instead of GitHub
222
+ - `--npm`: Publish to npm instead of GitHub
222
223
  - `-sr, --skip-registry`: Skip publishing to the registry
223
224
  - `-d, --dry-run`: Generate registry files locally without publishing
224
225
 
@@ -447,7 +448,7 @@ elizaos tee phala <command> [options]
447
448
 
448
449
  ```bash
449
450
  # Create a TEE project starter template
450
- elizaos create tee-agent --tee
451
+ elizaos create -t tee tee-agent
451
452
 
452
453
  # cd into directory and authenticate your Phala Cloud API Key
453
454
  cd tee-agent
@@ -790,5 +791,5 @@ Projects contain agent configurations and code for building agent-based applicat
790
791
  For contributing to the ElizaOS CLI, please clone the monorepo using:
791
792
 
792
793
  ```bash
793
- elizaos setup-monorepo
794
+ elizaos monorepo
794
795
  ```