@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.
- package/.turbo/turbo-typecheck.log +1 -2
- package/dist/package.json +4 -4
- package/package.json +5 -5
- package/src/runtime/eliza.ts +3 -3
- package/tsconfig.json +1 -1
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
[0m[2m[35m$[0m [2m[1mtest -f ../prompts/dist/typescript/index.ts || (cd ../prompts && bun run build:typescript) && tsc --noEmit -p tsconfig.json[0m
|
|
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.
|
|
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.
|
|
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.
|
|
1012
|
-
"@elizaos/skills": "^2.0.0-alpha.
|
|
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.
|
|
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.
|
|
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.
|
|
263
|
-
"@elizaos/skills": "2.0.0-alpha.
|
|
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": "
|
|
288
|
+
"gitHead": "6ce48ede3dde71a141d122afa579d873634068d7"
|
|
289
289
|
}
|
package/src/runtime/eliza.ts
CHANGED
|
@@ -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 "
|
|
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 ?? "
|
|
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 ?? "
|
|
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
|
})();
|