@zelari/core 2.44.0 → 2.45.1

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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Reusable runtime for [Zelari Code](https://github.com/N-THEM-Studio/zelari-code) — **Apache-2.0**.
4
4
 
5
- Current version: **2.44.0** (kept in lockstep with the `zelari-code` CLI).
5
+ Current version: **2.45.1** (kept in lockstep with the `zelari-code` CLI).
6
6
 
7
7
  ## What it is
8
8
 
@@ -14,7 +14,7 @@ Provider-neutral **agent loop** (`AgentHarness`), **6-member council** orchestra
14
14
  npm install @zelari/core
15
15
  ```
16
16
 
17
- Requires **Node.js ≥ 24**. Runtime dependency: `zod` only.
17
+ Requires **Node.js ≥ 20.17**. Runtime dependency: `zod` only.
18
18
 
19
19
  ## Public API
20
20
 
package/dist/version.d.ts CHANGED
@@ -3,5 +3,5 @@
3
3
  * require.resolve('@zelari/core/package.json') (2.6.1 plan §7).
4
4
  * Kept in sync with package.json by scripts/verify-versions.mjs.
5
5
  */
6
- export declare const CORE_VERSION = "2.44.0";
6
+ export declare const CORE_VERSION = "2.45.1";
7
7
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -3,5 +3,5 @@
3
3
  * require.resolve('@zelari/core/package.json') (2.6.1 plan §7).
4
4
  * Kept in sync with package.json by scripts/verify-versions.mjs.
5
5
  */
6
- export const CORE_VERSION = '2.44.0';
6
+ export const CORE_VERSION = '2.45.1';
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zelari/core",
3
- "version": "2.44.0",
3
+ "version": "2.45.1",
4
4
  "description": "Zelari Code core library — provider-neutral agent loop (AgentHarness), multi-agent council orchestration, and built-in skills. Used by the zelari-code CLI; consumable by other agent frontends.",
5
5
  "author": "Anathema Studio <https://anathema-studio.com/>",
6
6
  "license": "Apache-2.0",
@@ -152,7 +152,7 @@
152
152
  "package.json"
153
153
  ],
154
154
  "engines": {
155
- "node": ">=24.0.0"
155
+ "node": ">=20.17.0"
156
156
  },
157
157
  "scripts": {
158
158
  "build": "node ../../scripts/clean-dist.mjs packages/core/dist packages/core/tsconfig.tsbuildinfo && tsc -p tsconfig.json",