@agent-assembly/sdk 0.0.1-alpha.8.1 → 0.0.1-alpha.9

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 +6 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -3,6 +3,9 @@
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
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)
6
+ [![TypeScript types](https://img.shields.io/npm/types/@agent-assembly/sdk?logo=typescript)](https://www.npmjs.com/package/@agent-assembly/sdk)
7
+ [![Bundle size](https://img.shields.io/bundlephobia/min/@agent-assembly/sdk?logo=webpack&label=min)](https://bundlephobia.com/package/@agent-assembly/sdk)
8
+ [![Downloads](https://img.shields.io/npm/dm/@agent-assembly/sdk?logo=npm&label=downloads%2Fmo)](https://www.npmjs.com/package/@agent-assembly/sdk)
6
9
  [![Coverage](https://img.shields.io/codecov/c/github/ai-agent-assembly/node-sdk?logo=codecov)](https://codecov.io/gh/ai-agent-assembly/node-sdk)
7
10
  [![Quality Gate](https://img.shields.io/sonar/quality_gate/AI-agent-assembly_node-sdk?server=https%3A%2F%2Fsonarcloud.io&logo=sonarcloud)](https://sonarcloud.io/summary/new_code?id=AI-agent-assembly_node-sdk)
8
11
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue?logo=apache)](./LICENSE)
@@ -21,8 +24,9 @@ TypeScript/Node.js SDK for Agent Assembly, licensed under Apache 2.0.
21
24
  > Production deployments should track the first `0.1.0` release.
22
25
 
23
26
  ```bash
24
- pnpm add @agent-assembly/sdk@alpha # latest alpha
25
- pnpm add @agent-assembly/sdk@0.0.1-alpha.3 # pin exact
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
+ # desired version from npmjs.com/package/@agent-assembly/sdk
26
30
  ```
27
31
 
28
32
  ## Prerequisites
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-assembly/sdk",
3
- "version": "0.0.1-alpha.8.1",
3
+ "version": "0.0.1-alpha.9",
4
4
  "description": "TypeScript SDK for Agent Assembly",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -59,10 +59,10 @@
59
59
  "nodejs"
60
60
  ],
61
61
  "optionalDependencies": {
62
- "@agent-assembly/runtime-darwin-arm64": "0.0.1-alpha.8",
63
- "@agent-assembly/runtime-darwin-x64": "0.0.1-alpha.8",
64
- "@agent-assembly/runtime-linux-arm64": "0.0.1-alpha.8",
65
- "@agent-assembly/runtime-linux-x64": "0.0.1-alpha.8"
62
+ "@agent-assembly/runtime-darwin-arm64": "0.0.1-alpha.9",
63
+ "@agent-assembly/runtime-darwin-x64": "0.0.1-alpha.9",
64
+ "@agent-assembly/runtime-linux-arm64": "0.0.1-alpha.9",
65
+ "@agent-assembly/runtime-linux-x64": "0.0.1-alpha.9"
66
66
  },
67
67
  "files": [
68
68
  "dist/",