@amistio/cli 0.1.6 → 0.1.8

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 CHANGED
@@ -10,3 +10,33 @@ 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
+ Runner lifecycle controls in the web app, such as update, restart, and remove, apply only to the runner paired by that user unless the active organization role is an admin role. The runner API binds command polling, command status, logs, activity, and tool sessions to the local runner credential that produced them.
15
+
16
+ After pairing, confirm that at least one local AI tool is available:
17
+
18
+ ```sh
19
+ amistio tools
20
+ ```
21
+
22
+ If no supported tool is available, install and authenticate one of the supported local tools, such as opencode, then start the runner:
23
+
24
+ ```sh
25
+ amistio run --watch --tool opencode
26
+ amistio run --watch --background --tool opencode
27
+ amistio runner status
28
+ ```
29
+
30
+ When `--tool copilot` uses the GitHub Copilot SDK, Amistio approves read-only permission requests by default and denies mutating, network, MCP, hook, memory, and shell requests. Set `AMISTIO_COPILOT_APPROVE_ALL=1` only on a local machine where broad Copilot SDK approval is intentional.
31
+
32
+ `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.
33
+
34
+ Runner setup and local-tool execution use bounded failure controls. `amistio run --watch` retries Git worktree preflight failures by releasing the claim for another attempt, then fails the work item after `--max-preflight-attempts` attempts, defaulting to 3. Active local-tool runs renew the work lease, and `--tool-timeout-seconds` caps tool execution, defaulting to 1800 seconds.
35
+
36
+ For headless startup after login on supported user-level service managers:
37
+
38
+ ```sh
39
+ amistio runner service install --tool opencode
40
+ amistio runner service status
41
+ amistio runner service remove
42
+ ```