@zelari/core 2.29.0 → 2.31.0
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 +22 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
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.
|
|
5
|
+
Current version: **2.31.0** (kept in lockstep with the `zelari-code` CLI).
|
|
6
6
|
|
|
7
7
|
## What it is
|
|
8
8
|
|
|
@@ -29,6 +29,27 @@ Only the `exports` map in `package.json` is public. Prefer curated subpaths over
|
|
|
29
29
|
| `@zelari/core/skills` | Skill definitions |
|
|
30
30
|
| `@zelari/core/memory` | `MemoryBackend` interface (file backend lives in the CLI) |
|
|
31
31
|
|
|
32
|
+
### API stability tiers (2.30, t53)
|
|
33
|
+
|
|
34
|
+
| Subpath | Tier | Semver effect |
|
|
35
|
+
|---|---|---|
|
|
36
|
+
| `@zelari/core/harness` (`AgentHarness`) | **Stable** | breaking only on major |
|
|
37
|
+
| `@zelari/core/harness/tools` (`ToolRegistry` + default tools) | **Stable** | breaking only on major (incl. the `…/registry` deep subpath) |
|
|
38
|
+
| `@zelari/core/runtime` — seams, profiles, `resourcePolicy`/budget ledger types | **Stable** | breaking only on major |
|
|
39
|
+
| `@zelari/core/runtime` — `observers`, `guards`, `recorder`, `controls` | **Experimental** | may change on minor |
|
|
40
|
+
| `@zelari/core/session`, `/context`, `/verification` | **Stable** | spine contract (ADR-0021/0024) |
|
|
41
|
+
| `@zelari/core/mission`, `/events`, `/state` | **Experimental** | may change on minor |
|
|
42
|
+
|
|
43
|
+
**Semver policy for exports:**
|
|
44
|
+
|
|
45
|
+
- The `exports` map in `package.json` IS the contract: removing a subpath, or
|
|
46
|
+
removing a type from a **Stable** barrel, is a breaking change → major bump.
|
|
47
|
+
- New subpaths and additive exports are minor releases.
|
|
48
|
+
- **Experimental** surfaces may change within a minor; pin the exact version if
|
|
49
|
+
you depend on them.
|
|
50
|
+
- Core versions are lockstep with the CLI (`verify-versions` gate); `CORE_VERSION`
|
|
51
|
+
never moves independently of a CLI release.
|
|
52
|
+
|
|
32
53
|
Stability policy: [docs/decisions/0004-public-api-stability-policy.md](../../docs/decisions/0004-public-api-stability-policy.md).
|
|
33
54
|
|
|
34
55
|
If you still import pre-0.5.0 `src/main/core/…` paths, see [MIGRATION.md](../../MIGRATION.md).
|
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.
|
|
6
|
+
export declare const CORE_VERSION = "2.31.0";
|
|
7
7
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zelari/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
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",
|