@a2a-ai/ata 0.1.0 → 0.1.1
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 -12
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
<p align="center"><code>npm i -g @a2a-ai/ata</code><br />or <code>
|
|
1
|
+
<p align="center"><code>npm i -g @a2a-ai/ata</code><br />or <code>curl -fsSL https://agents2agents.ai/ata/install.sh | sh</code></p>
|
|
2
2
|
<p align="center"><strong>Ata CLI</strong> is an AI assistant from Agents2Agents AI that runs locally on your computer.<br />It is built on top of OpenAI Codex CLI. Not affiliated with OpenAI.
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://github.com/Agents2AgentsAI/ata/blob/main/.github/cli-splash.png" alt="Ata CLI splash" width="80%" />
|
|
5
|
+
|
|
3
6
|
|
|
4
7
|
---
|
|
5
8
|
|
|
@@ -9,21 +12,13 @@
|
|
|
9
12
|
|
|
10
13
|
Install globally with your preferred package manager:
|
|
11
14
|
|
|
15
|
+
Install using npm
|
|
12
16
|
```shell
|
|
13
|
-
# Install using npm
|
|
14
17
|
npm install -g @a2a-ai/ata
|
|
15
18
|
```
|
|
16
19
|
|
|
20
|
+
Install using curl (macOS/Linux)
|
|
17
21
|
```shell
|
|
18
|
-
# Install using Homebrew (macOS)
|
|
19
|
-
brew install --cask Agents2AgentsAI/tap/ata
|
|
20
|
-
|
|
21
|
-
# Or install the formula (macOS / Linux)
|
|
22
|
-
brew install Agents2AgentsAI/tap/ata
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
```shell
|
|
26
|
-
# Install using curl (macOS/Linux)
|
|
27
22
|
curl -fsSL https://agents2agents.ai/ata/install.sh | sh
|
|
28
23
|
```
|
|
29
24
|
|
|
@@ -39,7 +34,6 @@ Each GitHub Release contains many executables, but in practice, you likely want
|
|
|
39
34
|
- x86_64 (older Mac hardware): `ata-x86_64-apple-darwin.tar.gz`
|
|
40
35
|
- Linux
|
|
41
36
|
- x86_64: `ata-x86_64-unknown-linux-musl.tar.gz`
|
|
42
|
-
- arm64: `ata-aarch64-unknown-linux-musl.tar.gz`
|
|
43
37
|
|
|
44
38
|
Each archive contains a single entry with the platform baked into the name (e.g., `ata-x86_64-unknown-linux-musl`), so you likely want to rename it to `ata` after extracting it.
|
|
45
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a2a-ai/ata",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ata": "bin/ata.js"
|
|
@@ -14,14 +14,15 @@
|
|
|
14
14
|
],
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/Agents2AgentsAI/
|
|
17
|
+
"url": "git+https://github.com/Agents2AgentsAI/ata.git",
|
|
18
18
|
"directory": "codex-cli"
|
|
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.1.
|
|
23
|
-
"@a2a-ai/ata-
|
|
24
|
-
"@a2a-ai/ata-darwin-
|
|
25
|
-
"@a2a-ai/ata-
|
|
22
|
+
"@a2a-ai/ata-linux-x64": "npm:@a2a-ai/ata@0.1.1-linux-x64",
|
|
23
|
+
"@a2a-ai/ata-linux-arm64": "npm:@a2a-ai/ata@0.1.1-linux-arm64",
|
|
24
|
+
"@a2a-ai/ata-darwin-x64": "npm:@a2a-ai/ata@0.1.1-darwin-x64",
|
|
25
|
+
"@a2a-ai/ata-darwin-arm64": "npm:@a2a-ai/ata@0.1.1-darwin-arm64",
|
|
26
|
+
"@a2a-ai/ata-win32-x64": "npm:@a2a-ai/ata@0.1.1-win32-x64"
|
|
26
27
|
}
|
|
27
28
|
}
|