@elizaos/cli 1.6.4-alpha.11 → 1.6.4-alpha.13
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 +5 -5
- package/dist/index.js +8 -8
- package/dist/index.js.map +6 -6
- package/dist/templates/plugin-quick-starter/package.json +2 -2
- package/dist/templates/plugin-starter/package.json +2 -2
- package/dist/templates/project-starter/package.json +6 -6
- package/dist/templates/project-tee-starter/package.json +4 -4
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/package.json +7 -7
- package/templates/plugin-quick-starter/package.json +2 -2
- package/templates/plugin-starter/package.json +2 -2
- package/templates/project-starter/package.json +6 -6
- package/templates/project-tee-starter/package.json +4 -4
package/README.md
CHANGED
|
@@ -570,11 +570,11 @@ The deploy command automatically detects your system architecture and deploys to
|
|
|
570
570
|
|
|
571
571
|
| Your System | Docker Platform | AWS Instance | Monthly Cost |
|
|
572
572
|
|-------------|----------------|--------------|--------------|
|
|
573
|
-
| macOS Apple Silicon | `linux/arm64` | t4g.
|
|
574
|
-
| macOS Intel | `linux/amd64` | t3.
|
|
575
|
-
| Ubuntu/Linux x64 | `linux/amd64` | t3.
|
|
576
|
-
| Ubuntu/Linux ARM64 | `linux/arm64` | t4g.
|
|
577
|
-
| Windows x64 | `linux/amd64` | t3.
|
|
573
|
+
| macOS Apple Silicon | `linux/arm64` | t4g.small (Graviton) | $15.76 |
|
|
574
|
+
| macOS Intel | `linux/amd64` | t3.small (Intel/AMD) | $18.68 |
|
|
575
|
+
| Ubuntu/Linux x64 | `linux/amd64` | t3.small (Intel/AMD) | $18.68 |
|
|
576
|
+
| Ubuntu/Linux ARM64 | `linux/arm64` | t4g.small (Graviton) | $15.76 |
|
|
577
|
+
| Windows x64 | `linux/amd64` | t3.small (Intel/AMD) | $18.68 |
|
|
578
578
|
|
|
579
579
|
**Examples:**
|
|
580
580
|
|
package/dist/index.js
CHANGED
|
@@ -4749,7 +4749,7 @@ __export(exports_version, {
|
|
|
4749
4749
|
BUILD_TIME: () => BUILD_TIME,
|
|
4750
4750
|
BUILD_ENV: () => BUILD_ENV
|
|
4751
4751
|
});
|
|
4752
|
-
var CLI_VERSION = "1.6.4-alpha.
|
|
4752
|
+
var CLI_VERSION = "1.6.4-alpha.13", CLI_NAME = "@elizaos/cli", CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins", BUILD_TIME = "2025-10-28T12:44:55.476Z", BUILD_ENV = "production", version_default;
|
|
4753
4753
|
var init_version = __esm(() => {
|
|
4754
4754
|
version_default = {
|
|
4755
4755
|
version: CLI_VERSION,
|
|
@@ -288084,15 +288084,15 @@ async function getDetectedPlatform(platformOverride) {
|
|
|
288084
288084
|
function getInstanceDefaults(architecture) {
|
|
288085
288085
|
if (architecture === "arm64") {
|
|
288086
288086
|
return {
|
|
288087
|
-
instanceType: "t4g.
|
|
288087
|
+
instanceType: "t4g.small",
|
|
288088
288088
|
cpu: 1792,
|
|
288089
|
-
memory:
|
|
288089
|
+
memory: 1792
|
|
288090
288090
|
};
|
|
288091
288091
|
} else {
|
|
288092
288092
|
return {
|
|
288093
|
-
instanceType: "t3.
|
|
288093
|
+
instanceType: "t3.small",
|
|
288094
288094
|
cpu: 1792,
|
|
288095
|
-
memory:
|
|
288095
|
+
memory: 1792
|
|
288096
288096
|
};
|
|
288097
288097
|
}
|
|
288098
288098
|
}
|
|
@@ -288113,7 +288113,7 @@ async function deployProject(options) {
|
|
|
288113
288113
|
}
|
|
288114
288114
|
|
|
288115
288115
|
// src/commands/deploy/index.ts
|
|
288116
|
-
var deploy = new Command().name("deploy").description("Deploy ElizaOS project to AWS ECS (Elastic Container Service)").option("-n, --name <name>", "Name for the deployment").option("--project-name <name>", "Project name (defaults to directory name)").option("-p, --port <port>", "Port the container listens on", (value) => parseInt(value, 10), 3000).option("--desired-count <count>", "Number of container instances to run", (value) => parseInt(value, 10), 1).option("--cpu <units>", "CPU units (1792 = 1.75 vCPU, 87.5% of t4g.
|
|
288116
|
+
var deploy = new Command().name("deploy").description("Deploy ElizaOS project to AWS ECS (Elastic Container Service)").option("-n, --name <name>", "Name for the deployment").option("--project-name <name>", "Project name (defaults to directory name)").option("-p, --port <port>", "Port the container listens on", (value) => parseInt(value, 10), 3000).option("--desired-count <count>", "Number of container instances to run", (value) => parseInt(value, 10), 1).option("--cpu <units>", "CPU units (1792 = 1.75 vCPU, 87.5% of t4g.small 2 vCPUs)", (value) => parseInt(value, 10), 1792).option("--memory <mb>", "Memory in MB (1792 MB = 1.75 GiB, 87.5% of t4g.small 2 GiB)", (value) => parseInt(value, 10), 1792).option("-k, --api-key <key>", "ElizaOS Cloud API key").option("-u, --api-url <url>", "ElizaOS Cloud API URL", "https://www.elizacloud.ai").option("-e, --env <KEY=VALUE>", "Environment variable (can be specified multiple times)", (value, previous) => {
|
|
288117
288117
|
return previous.concat([value]);
|
|
288118
288118
|
}, []).option("--skip-build", "Skip Docker build and use existing image").option("--image-uri <uri>", "Use existing ECR image URI (requires --skip-build)").option("--platform <platform>", "Docker platform for build (e.g., linux/amd64, linux/arm64). Defaults to host platform.", undefined).action(async (options) => {
|
|
288119
288119
|
try {
|
|
@@ -296973,7 +296973,7 @@ function displaySuccessMessage(authResult) {
|
|
|
296973
296973
|
|
|
296974
296974
|
// src/commands/login/index.ts
|
|
296975
296975
|
var login2 = new Command().name("login").description("Authenticate with ElizaOS Cloud to get an API key");
|
|
296976
|
-
login2.option("-u, --cloud-url <url>", "URL of ElizaOS Cloud", process.env.ELIZA_CLOUD_URL || "https://elizacloud.ai").option("--no-browser", "Do not automatically open browser").option("--timeout <seconds>", "Authentication timeout in seconds", "300").action(async (options) => {
|
|
296976
|
+
login2.option("-u, --cloud-url <url>", "URL of ElizaOS Cloud", process.env.ELIZA_CLOUD_URL || "https://www.elizacloud.ai").option("--no-browser", "Do not automatically open browser").option("--timeout <seconds>", "Authentication timeout in seconds", "300").action(async (options) => {
|
|
296977
296977
|
try {
|
|
296978
296978
|
await handleLogin(options);
|
|
296979
296979
|
} catch (error46) {
|
|
@@ -313266,5 +313266,5 @@ main().catch((error46) => {
|
|
|
313266
313266
|
process.exit(1);
|
|
313267
313267
|
});
|
|
313268
313268
|
|
|
313269
|
-
//# debugId=
|
|
313269
|
+
//# debugId=D05C13E9B4C9469264756E2164756E21
|
|
313270
313270
|
//# sourceMappingURL=index.js.map
|