@agent-assembly/sdk 0.0.1-beta.1 → 0.0.1-beta.2
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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/test-matrix.yml)
|
|
4
4
|
[](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/publish-docs.yml)
|
|
5
|
-
[](https://www.npmjs.com/package/@agent-assembly/sdk/v/beta)
|
|
6
|
+
[](https://github.com/ai-agent-assembly/node-sdk/releases)
|
|
6
7
|
[](https://www.npmjs.com/package/@agent-assembly/sdk)
|
|
7
8
|
[](https://bundlephobia.com/package/@agent-assembly/sdk)
|
|
8
9
|
[](https://www.npmjs.com/package/@agent-assembly/sdk)
|
|
@@ -16,16 +17,17 @@ TypeScript/Node.js SDK for Agent Assembly, licensed under Apache 2.0.
|
|
|
16
17
|
|
|
17
18
|
## Project status
|
|
18
19
|
|
|
19
|
-
> **Pre-1.0 /
|
|
20
|
-
> the `
|
|
21
|
-
>
|
|
22
|
-
>
|
|
20
|
+
> **Pre-1.0 / beta.** The current release line is `0.0.1-beta.x`, published to npm under
|
|
21
|
+
> the `beta` dist-tag and cut as a [GitHub Release](https://github.com/ai-agent-assembly/node-sdk/releases).
|
|
22
|
+
> The public surface (`initAssembly`, `withAssembly`) is stabilizing but **may change between
|
|
23
|
+
> pre-releases**, and per-platform native packaging is still being hardened. Pin an exact
|
|
24
|
+
> version for reproducible installs and review the
|
|
23
25
|
> [release notes](https://github.com/ai-agent-assembly/node-sdk/releases) before upgrading.
|
|
24
26
|
> Production deployments should track the first `0.1.0` release.
|
|
25
27
|
|
|
26
28
|
```bash
|
|
27
|
-
pnpm add @agent-assembly/sdk@
|
|
28
|
-
pnpm add @agent-assembly/sdk@<X.Y.Z-
|
|
29
|
+
pnpm add @agent-assembly/sdk@beta # latest beta (tracks @beta dist-tag)
|
|
30
|
+
pnpm add @agent-assembly/sdk@<X.Y.Z-beta.N> # pin exact — replace the placeholder with the
|
|
29
31
|
# desired version from npmjs.com/package/@agent-assembly/sdk
|
|
30
32
|
```
|
|
31
33
|
|