@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.
- package/README.md +6 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
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
5
|
[](https://www.npmjs.com/package/@agent-assembly/sdk/v/alpha)
|
|
6
|
+
[](https://www.npmjs.com/package/@agent-assembly/sdk)
|
|
7
|
+
[](https://bundlephobia.com/package/@agent-assembly/sdk)
|
|
8
|
+
[](https://www.npmjs.com/package/@agent-assembly/sdk)
|
|
6
9
|
[](https://codecov.io/gh/ai-agent-assembly/node-sdk)
|
|
7
10
|
[](https://sonarcloud.io/summary/new_code?id=AI-agent-assembly_node-sdk)
|
|
8
11
|
[](./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
|
|
25
|
-
pnpm add @agent-assembly/sdk
|
|
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.
|
|
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.
|
|
63
|
-
"@agent-assembly/runtime-darwin-x64": "0.0.1-alpha.
|
|
64
|
-
"@agent-assembly/runtime-linux-arm64": "0.0.1-alpha.
|
|
65
|
-
"@agent-assembly/runtime-linux-x64": "0.0.1-alpha.
|
|
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/",
|