@elizaos/autonomous 2.0.0-alpha.62 → 2.0.0-alpha.63

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.
@@ -1,2 +1 @@
1
-
2
- $ test -f ../prompts/dist/typescript/index.ts || (cd ../prompts && bun run build:typescript) && tsc --noEmit -p tsconfig.json
1
+ $ test -f ../prompts/dist/typescript/index.ts || (cd ../prompts && bun run build:typescript) && tsc --noEmit -p tsconfig.json
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/autonomous",
3
- "version": "2.0.0-alpha.62",
3
+ "version": "2.0.0-alpha.63",
4
4
  "description": "Standalone autonomous agent runtime and backend server package for elizaOS.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -987,7 +987,7 @@
987
987
  },
988
988
  "dependencies": {
989
989
  "@clack/prompts": "^1.0.0",
990
- "@elizaos/core": "2.0.0-alpha.62",
990
+ "@elizaos/core": "2.0.0-alpha.63",
991
991
  "@elizaos/plugin-agent-skills": "^2.0.0-alpha.11",
992
992
  "@elizaos/plugin-coding-agent": "0.1.0-next.1",
993
993
  "@elizaos/plugin-cron": "^2.0.0-alpha.7",
@@ -1008,8 +1008,8 @@
1008
1008
  "@elizaos/plugin-todo": "alpha",
1009
1009
  "@elizaos/plugin-trajectory-logger": "alpha",
1010
1010
  "@elizaos/plugin-trust": "alpha",
1011
- "@elizaos/prompts": "^2.0.0-alpha.62",
1012
- "@elizaos/skills": "^2.0.0-alpha.62",
1011
+ "@elizaos/prompts": "^2.0.0-alpha.63",
1012
+ "@elizaos/skills": "^2.0.0-alpha.63",
1013
1013
  "@hapi/boom": "^10.0.1",
1014
1014
  "@mariozechner/pi-ai": "0.52.12",
1015
1015
  "@noble/curves": "^2.0.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/autonomous",
3
- "version": "2.0.0-alpha.62",
3
+ "version": "2.0.0-alpha.63",
4
4
  "description": "Standalone autonomous agent runtime and backend server package for elizaOS.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -238,7 +238,7 @@
238
238
  },
239
239
  "dependencies": {
240
240
  "@clack/prompts": "^1.0.0",
241
- "@elizaos/core": "2.0.0-alpha.62",
241
+ "@elizaos/core": "2.0.0-alpha.63",
242
242
  "@elizaos/plugin-agent-skills": "^2.0.0-alpha.11",
243
243
  "@elizaos/plugin-coding-agent": "0.1.0-next.1",
244
244
  "@elizaos/plugin-cron": "^2.0.0-alpha.7",
@@ -259,8 +259,8 @@
259
259
  "@elizaos/plugin-todo": "alpha",
260
260
  "@elizaos/plugin-trajectory-logger": "alpha",
261
261
  "@elizaos/plugin-trust": "alpha",
262
- "@elizaos/prompts": "2.0.0-alpha.62",
263
- "@elizaos/skills": "2.0.0-alpha.62",
262
+ "@elizaos/prompts": "2.0.0-alpha.63",
263
+ "@elizaos/skills": "2.0.0-alpha.63",
264
264
  "@hapi/boom": "^10.0.1",
265
265
  "@mariozechner/pi-ai": "0.52.12",
266
266
  "@noble/curves": "^2.0.1",
@@ -285,5 +285,5 @@
285
285
  "@types/ws": "^8.18.1",
286
286
  "typescript": "^5.9.3"
287
287
  },
288
- "gitHead": "9feab888db2115027ef597b89067664f674a1e12"
288
+ "gitHead": "6ce48ede3dde71a141d122afa579d873634068d7"
289
289
  }
@@ -3714,11 +3714,11 @@ export async function startEliza(
3714
3714
 
3715
3715
  // 1c. Apply logging level from config to process.env so the global
3716
3716
  // @elizaos/core logger (used by plugins) respects it.
3717
- // config.logging.level is guaranteed to be set (defaults to "error").
3717
+ // config.logging.level is guaranteed to be set (defaults to "info").
3718
3718
  // Users can still opt into noisy logs via config.logging.level or
3719
3719
  // an explicit LOG_LEVEL environment variable.
3720
3720
  if (!process.env.LOG_LEVEL) {
3721
- process.env.LOG_LEVEL = config.logging?.level ?? "error";
3721
+ process.env.LOG_LEVEL = config.logging?.level ?? "info";
3722
3722
  }
3723
3723
 
3724
3724
  // 2. Push channel secrets into process.env for plugin discovery
@@ -3947,7 +3947,7 @@ export async function startEliza(
3947
3947
  // process.env.LOG_LEVEL is already resolved (set explicitly or from
3948
3948
  // config.logging.level above), so prefer it to honour the dev-mode
3949
3949
  // LOG_LEVEL=error override set by scripts/dev-ui.mjs.
3950
- const lvl = process.env.LOG_LEVEL ?? config.logging?.level ?? "error";
3950
+ const lvl = process.env.LOG_LEVEL ?? config.logging?.level ?? "info";
3951
3951
  if (lvl === "silent") return "fatal" as const;
3952
3952
  return lvl as "trace" | "debug" | "info" | "warn" | "error" | "fatal";
3953
3953
  })();
package/tsconfig.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "moduleResolution": "bundler",
6
6
  "strict": false,
7
7
  "skipLibCheck": true,
8
- "types": ["node"],
8
+ "types": ["node", "bun"],
9
9
  "declaration": false,
10
10
  "allowImportingTsExtensions": true,
11
11
  "noEmit": true,