@elizaos/cli 1.0.5 → 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.
- package/README.md +12 -11
- package/dist/assets/{index-TLtd8ntA.js → index-BMJNV7A7.js} +2564 -1976
- package/dist/assets/{index-TLtd8ntA.js.map → index-BMJNV7A7.js.map} +1 -1
- package/dist/assets/index-DyA-lndn.css +1 -0
- package/dist/assets/index-DyA-lndn.css.br +0 -0
- package/dist/assets/{index-BlgsVC9v.js → index-zeG6Jws8.js} +2 -2
- package/dist/assets/index-zeG6Jws8.js.br +0 -0
- package/dist/assets/{index-BlgsVC9v.js.map → index-zeG6Jws8.js.map} +1 -1
- package/dist/chunk-2RXF3FKA.js +17 -0
- package/dist/chunk-3EAACNH2.js +478 -0
- package/dist/{chunk-YMKISDXM.js → chunk-4OL6NNBI.js} +34 -17
- package/dist/{chunk-MAGJ4VCL.js → chunk-CEMRVVKO.js} +8 -7
- package/dist/{chunk-O64SGQGU.js → chunk-IYVGVCIB.js} +270 -162
- package/dist/{chunk-PWCUUHGV.js → chunk-JOHBW4FN.js} +17 -11
- package/dist/{chunk-VWWF4TGX.js → chunk-JROMRXES.js} +39 -12
- package/dist/{chunk-4QRJ6FQC.js → chunk-SCN6ZP4J.js} +35 -15
- package/dist/{chunk-L64NPCT6.js → chunk-V2MPQGYW.js} +77 -68
- package/dist/{chunk-PHLX32YJ.js → chunk-WIPEH5RX.js} +39 -30
- package/dist/{chunk-RGI5263U.js → chunk-YMXO6XZ5.js} +902 -718
- package/dist/{chunk-AAC6ZLXY.js → chunk-YTV6GDEJ.js} +182 -270
- package/dist/commands/agent.js +1 -1
- package/dist/commands/create.d.ts +1 -8
- package/dist/commands/create.js +2 -2
- package/dist/commands/dev.js +3 -2
- package/dist/commands/env.js +2 -2
- package/dist/commands/monorepo.d.ts +5 -0
- package/dist/commands/{setup-monorepo.js → monorepo.js} +4 -4
- package/dist/commands/plugins.js +2 -2
- package/dist/commands/publish.js +3 -3
- package/dist/commands/start.js +4 -3
- package/dist/commands/test.js +5 -4
- package/dist/commands/update.js +2 -2
- package/dist/index.html +2 -2
- package/dist/index.js +14 -13
- package/dist/{migrator-6MQ5HFHL.js → migrator-BQMHMHSG.js} +1 -1
- package/dist/{plugin-creator-NYDPPK4W.js → plugin-creator-EUJNDFIB.js} +1 -1
- package/dist/{registry-A4UYBEET.js → registry-AV3SDTPW.js} +1 -1
- package/package.json +7 -8
- package/templates/plugin-starter/README.md +26 -9
- package/templates/plugin-starter/package.json +5 -1
- package/templates/plugin-starter/tsconfig.build.json +1 -3
- package/templates/plugin-starter/tsconfig.json +1 -2
- package/templates/plugin-starter/tsup.config.ts +1 -1
- package/templates/project-starter/README.md +15 -16
- package/templates/project-starter/package.json +5 -5
- package/templates/project-tee-starter/package.json +4 -6
- package/dist/assets/index-BlgsVC9v.js.br +0 -0
- package/dist/assets/index-fZleA996.css +0 -1
- package/dist/assets/index-fZleA996.css.br +0 -0
- package/dist/chunk-CR5NR6A6.js +0 -458
- 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 '
|
|
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
|
|
135
|
+
#### `elizaos monorepo`
|
|
134
136
|
|
|
135
|
-
Clone ElizaOS monorepo from a specific branch (defaults to
|
|
137
|
+
Clone ElizaOS monorepo from a specific branch (defaults to develop).
|
|
136
138
|
|
|
137
139
|
- **Options:**
|
|
138
|
-
- `-b, --branch <branch>`: Branch to install (default: `
|
|
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
|
|
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
|
-
-
|
|
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
|
|
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
|
|
794
|
+
elizaos monorepo
|
|
794
795
|
```
|