@amistio/cli 0.1.6 → 0.1.7
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 +24 -0
- package/dist/index.js +544 -77
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,3 +10,27 @@ amistio --help
|
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
The package install only installs the `amistio` command. Repository cloning, project pairing, credential storage, and runner execution happen only when the user explicitly runs commands such as `amistio bootstrap`, `amistio pair`, or `amistio run --watch`.
|
|
13
|
+
|
|
14
|
+
After pairing, confirm that at least one local AI tool is available:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
amistio tools
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
If no supported tool is available, install and authenticate one of the supported local tools, such as opencode, then start the runner:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
amistio run --watch --tool opencode
|
|
24
|
+
amistio run --watch --background --tool opencode
|
|
25
|
+
amistio runner status
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
`amistio runner status` reports local background runner state, latest heartbeat, and bounded resource usage when available. Resource usage is latest-sample runner process memory/CPU plus safe aggregate system memory/load signals; it does not include source files, environment variables, command lines, process lists, credentials, or arbitrary local paths.
|
|
29
|
+
|
|
30
|
+
For headless startup after login on supported user-level service managers:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
amistio runner service install --tool opencode
|
|
34
|
+
amistio runner service status
|
|
35
|
+
amistio runner service remove
|
|
36
|
+
```
|