@amistio/cli 0.1.8 → 0.1.9
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 +8 -2
- package/dist/index.js +859 -86
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,10 +9,12 @@ npm install -g @amistio/cli
|
|
|
9
9
|
amistio --help
|
|
10
10
|
```
|
|
11
11
|
|
|
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`.
|
|
12
|
+
The package install only installs the `amistio` command. Repository cloning, project pairing, credential storage, sync watching, and runner execution happen only when the user explicitly runs commands such as `amistio bootstrap`, `amistio pair`, `amistio sync watch`, or `amistio run --watch`.
|
|
13
13
|
|
|
14
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
15
|
|
|
16
|
+
Repository brain auto-sync is disabled until the repository link option is enabled in the app. After pairing, run `amistio sync watch` from the paired checkout to push recognized external brain Markdown/MDX files, including local ADRs, plans, prompts, workflows, memory, context, architecture, and feature docs, to the app for review. `amistio run --watch` also runs the same cycle between work polls when the option is enabled. The CLI skips templates, unsupported paths, oversized files, unchanged managed docs, and conflicts instead of silently overwriting web state.
|
|
17
|
+
|
|
16
18
|
After pairing, confirm that at least one local AI tool is available:
|
|
17
19
|
|
|
18
20
|
```sh
|
|
@@ -22,11 +24,15 @@ amistio tools
|
|
|
22
24
|
If no supported tool is available, install and authenticate one of the supported local tools, such as opencode, then start the runner:
|
|
23
25
|
|
|
24
26
|
```sh
|
|
27
|
+
amistio sync watch
|
|
25
28
|
amistio run --watch --tool opencode
|
|
29
|
+
amistio run --watch --tool opencode --provider anthropic --model-id claude-opus-4.6 --reasoning-effort xhigh
|
|
26
30
|
amistio run --watch --background --tool opencode
|
|
27
31
|
amistio runner status
|
|
28
32
|
```
|
|
29
33
|
|
|
34
|
+
Provider-backed model preferences use sanitized catalog fields: `--provider`, `--model-id`, optional `--model-variant`, and `--reasoning-effort` (`auto`, `low`, `medium`, `high`, or `xhigh`). Provider credentials, API keys, and local secret paths stay in the local tool configuration; they are not stored in Amistio preferences or runner heartbeats.
|
|
35
|
+
|
|
30
36
|
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
37
|
|
|
32
38
|
`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.
|
|
@@ -36,7 +42,7 @@ Runner setup and local-tool execution use bounded failure controls. `amistio run
|
|
|
36
42
|
For headless startup after login on supported user-level service managers:
|
|
37
43
|
|
|
38
44
|
```sh
|
|
39
|
-
amistio runner service install --tool opencode
|
|
45
|
+
amistio runner service install --tool opencode --provider anthropic --model-id claude-opus-4.6 --reasoning-effort high
|
|
40
46
|
amistio runner service status
|
|
41
47
|
amistio runner service remove
|
|
42
48
|
```
|