@chit-run/cli 0.1.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 +51 -0
- package/dist/chit.js +7451 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# @chit-run/cli
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@chit-run/cli)
|
|
4
|
+
|
|
5
|
+
A thin runtime for multi-agent workflows. Stop being the glue between your agents.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Requires [Bun](https://bun.sh).
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
bunx @chit-run/cli --help
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or install the `chit` binary:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
bun install -g @chit-run/cli
|
|
19
|
+
chit --help
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Use
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
chit show path/to/your-manifest.json
|
|
26
|
+
chit run path/to/your-manifest.json --input question="..."
|
|
27
|
+
chit audit list
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Manifests are small JSON files you write. Example manifests live in the source repo under `examples/`; they are not bundled with this package.
|
|
31
|
+
|
|
32
|
+
## Studio
|
|
33
|
+
|
|
34
|
+
`chit studio`, the local visual editor, needs the Studio client assets. Those ship in a source checkout, not in this npm package. From a published install the `studio` command is not functional in this version.
|
|
35
|
+
|
|
36
|
+
To use Studio:
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
git clone https://github.com/caiopizzol/chit
|
|
40
|
+
cd chit
|
|
41
|
+
bun install
|
|
42
|
+
bun run studio:preview
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Docs
|
|
46
|
+
|
|
47
|
+
Website and docs: https://chit.run
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|