@a2a-ai/ata 0.1.1 → 0.2.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 +2 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<img src="https://github.com/Agents2AgentsAI/ata/blob/main/.github/cli-splash.png" alt="Ata CLI splash" width="80%" />
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
---
|
|
8
7
|
|
|
9
8
|
## Quickstart
|
|
@@ -13,11 +12,13 @@
|
|
|
13
12
|
Install globally with your preferred package manager:
|
|
14
13
|
|
|
15
14
|
Install using npm
|
|
15
|
+
|
|
16
16
|
```shell
|
|
17
17
|
npm install -g @a2a-ai/ata
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Install using curl (macOS/Linux)
|
|
21
|
+
|
|
21
22
|
```shell
|
|
22
23
|
curl -fsSL https://agents2agents.ai/ata/install.sh | sh
|
|
23
24
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a2a-ai/ata",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ata": "bin/ata.js"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
},
|
|
20
20
|
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@a2a-ai/ata-linux-x64": "npm:@a2a-ai/ata@0.
|
|
23
|
-
"@a2a-ai/ata-linux-arm64": "npm:@a2a-ai/ata@0.
|
|
24
|
-
"@a2a-ai/ata-darwin-x64": "npm:@a2a-ai/ata@0.
|
|
25
|
-
"@a2a-ai/ata-darwin-arm64": "npm:@a2a-ai/ata@0.
|
|
26
|
-
"@a2a-ai/ata-win32-x64": "npm:@a2a-ai/ata@0.
|
|
22
|
+
"@a2a-ai/ata-linux-x64": "npm:@a2a-ai/ata@0.2.0-linux-x64",
|
|
23
|
+
"@a2a-ai/ata-linux-arm64": "npm:@a2a-ai/ata@0.2.0-linux-arm64",
|
|
24
|
+
"@a2a-ai/ata-darwin-x64": "npm:@a2a-ai/ata@0.2.0-darwin-x64",
|
|
25
|
+
"@a2a-ai/ata-darwin-arm64": "npm:@a2a-ai/ata@0.2.0-darwin-arm64",
|
|
26
|
+
"@a2a-ai/ata-win32-x64": "npm:@a2a-ai/ata@0.2.0-win32-x64"
|
|
27
27
|
}
|
|
28
28
|
}
|