@juno-ai/bind 1.0.0 → 2.0.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 +1 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,12 +7,7 @@ tool effects into the next turn's context. `bind` is the harness that runs
|
|
|
7
7
|
that chain — the runtime-agnostic core of a production agent loop, extracted
|
|
8
8
|
from [Monad](https://onmonad.ai).
|
|
9
9
|
|
|
10
|
-
##
|
|
11
|
-
|
|
12
|
-
Early. The package currently ships the **deterministic LLM provider-routing
|
|
13
|
-
core**; the turn kernel, tool/skill contracts, and the `runAgent` /
|
|
14
|
-
`advanceTurn` drivers are being extracted next. Expect breaking changes in
|
|
15
|
-
any release.
|
|
10
|
+
## Versioning
|
|
16
11
|
|
|
17
12
|
**Versioning is not semver.** Each published release increments the major and
|
|
18
13
|
resets the rest — `1.0.0`, `2.0.0`, `3.0.0` — so the major is a release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juno-ai/bind",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Agent harness: deterministic LLM provider routing core and turn contracts (turn kernel arrives in later phases). MIT-licensed; published to npm from the canonical repo via scripts/publish-bind.ts (docs/bind.md).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|