@elizaos/cli 1.0.0-alpha.1 → 1.0.0-alpha.11
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 +16 -12
- package/dist/client/assets/index-CNF1yiBR.js +266 -0
- package/dist/client/assets/index-CNF1yiBR.js.br +0 -0
- package/dist/client/assets/index-CRVugqmW.css +1 -0
- package/dist/client/assets/index-CRVugqmW.css.br +0 -0
- package/dist/client/elizaos-icon.png +0 -0
- package/dist/client/elizaos.webp +0 -0
- package/dist/client/index.html +13 -0
- package/dist/index.js +15604 -15231
- package/dist/index.js.map +1 -1
- package/package.json +14 -12
- package/templates/plugin-starter/biome.json +1 -15
- package/templates/plugin-starter/src/index.ts +2 -2
- package/templates/project-starter/biome.json +1 -15
- package/templates/project-starter/src/index.ts +8 -6
- package/templates/project-starter/src/plugin.ts +2 -2
- package/dist/index.d.ts +0 -1
package/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CLI
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The CLI provides a set of commands to manage your ElizaOS projects and plugins, from local development to cloud deployment.
|
|
4
|
+
|
|
5
|
+
# TODO: CLI Documentation goes here
|
|
6
|
+
|
|
7
|
+
## Environment Variables
|
|
8
|
+
|
|
9
|
+
Create a .env file with your required variables:
|
|
10
|
+
|
|
11
|
+
```env
|
|
12
|
+
ANTHROPIC_API_KEY=your_key
|
|
13
|
+
TELEGRAM_BOT_TOKEN=your_token
|
|
14
|
+
# Add other required variables
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
# TEE Deployment Docs
|
|
4
18
|
|
|
5
19
|
## Getting Started
|
|
6
20
|
|
|
@@ -145,16 +159,6 @@ The CLI will create the following directory structure:
|
|
|
145
159
|
└── compose-files/ # Generated docker-compose files
|
|
146
160
|
```
|
|
147
161
|
|
|
148
|
-
## Environment Variables
|
|
149
|
-
|
|
150
|
-
Create a .env file with your required variables:
|
|
151
|
-
|
|
152
|
-
```env
|
|
153
|
-
ANTHROPIC_API_KEY=your_key
|
|
154
|
-
TELEGRAM_BOT_TOKEN=your_token
|
|
155
|
-
# Add other required variables
|
|
156
|
-
```
|
|
157
|
-
|
|
158
162
|
## Tips
|
|
159
163
|
|
|
160
164
|
- Use the simulator for local testing before cloud deployment
|