@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.
Files changed (2) hide show
  1. package/README.md +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![CI](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/test-matrix.yml/badge.svg?branch=master&logo=githubactions)](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/test-matrix.yml)
4
4
  [![Docs](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/publish-docs.yml/badge.svg?branch=master&logo=githubactions)](https://github.com/ai-agent-assembly/node-sdk/actions/workflows/publish-docs.yml)
5
- [![npm version](https://img.shields.io/npm/v/@agent-assembly/sdk/alpha?logo=npm)](https://www.npmjs.com/package/@agent-assembly/sdk/v/alpha)
5
+ [![npm version](https://img.shields.io/npm/v/%40agent-assembly%2Fsdk/beta?logo=npm)](https://www.npmjs.com/package/@agent-assembly/sdk/v/beta)
6
+ [![GitHub release](https://img.shields.io/github/v/release/ai-agent-assembly/node-sdk?include_prereleases&sort=semver&label=release&logo=github)](https://github.com/ai-agent-assembly/node-sdk/releases)
6
7
  [![TypeScript types](https://img.shields.io/npm/types/@agent-assembly/sdk?logo=typescript)](https://www.npmjs.com/package/@agent-assembly/sdk)
7
8
  [![Bundle size](https://img.shields.io/bundlephobia/min/@agent-assembly/sdk?logo=webpack&label=min)](https://bundlephobia.com/package/@agent-assembly/sdk)
8
9
  [![Downloads](https://img.shields.io/npm/dm/@agent-assembly/sdk?logo=npm&label=downloads%2Fmo)](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 / alpha.** The current release line is `0.0.1-alpha.x`, published to npm under
20
- > the `alpha` dist-tag. The public surface (`initAssembly`, `withAssembly`) is stabilizing
21
- > but **may change between alpha releases**, and per-platform native packaging is still
22
- > being hardened. Pin an exact version for reproducible installs and review the
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@alpha # latest alpha (tracks @alpha dist-tag)
28
- pnpm add @agent-assembly/sdk@<X.Y.Z-alpha.N> # pin exact — replace the placeholder with the
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-assembly/sdk",
3
- "version": "0.0.1-beta.1",
3
+ "version": "0.0.1-beta.2",
4
4
  "description": "TypeScript SDK for Agent Assembly",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",