@opencloudtool/agentty 0.1.0 → 0.1.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.
- package/README.md +23 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
A terminal UI tool for managing agents, built with Rust and [Ratatui](https://ratatui.rs).
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### Shell
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/opencloudtool/agentty/releases/latest/download/agentty-installer.sh | sh
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### npm
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npm install -g @opencloudtool/agentty
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### npx
|
|
20
|
+
|
|
21
|
+
Run without installing:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
npx @opencloudtool/agentty
|
|
25
|
+
```
|
|
26
|
+
|
|
5
27
|
## Prerequisites
|
|
6
28
|
|
|
7
29
|
- Rust nightly toolchain (configured via `rust-toolchain.toml`)
|
|
@@ -35,6 +57,7 @@ cargo run # Builds and runs the 'agentty' binary
|
|
|
35
57
|
cargo test
|
|
36
58
|
cargo clippy -- -D warnings
|
|
37
59
|
cargo fmt --all -- --check
|
|
60
|
+
cargo shear
|
|
38
61
|
```
|
|
39
62
|
|
|
40
63
|
## License
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"name": "@opencloudtool/agentty",
|
|
25
|
-
"version": "0.1.
|
|
25
|
+
"version": "0.1.2"
|
|
26
26
|
},
|
|
27
27
|
"node_modules/@isaacs/balanced-match": {
|
|
28
28
|
"engines": {
|
|
@@ -514,5 +514,5 @@
|
|
|
514
514
|
}
|
|
515
515
|
},
|
|
516
516
|
"requires": true,
|
|
517
|
-
"version": "0.1.
|
|
517
|
+
"version": "0.1.2"
|
|
518
518
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.2",
|
|
3
3
|
"author": "Vladimir Minev",
|
|
4
4
|
"bin": {
|
|
5
5
|
"agentty": "run-agentty.js"
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"zipExt": ".tar.xz"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"version": "0.1.
|
|
65
|
+
"version": "0.1.2",
|
|
66
66
|
"volta": {
|
|
67
67
|
"node": "18.14.1",
|
|
68
68
|
"npm": "9.5.0"
|