@aloud/runner 0.2.5 → 0.3.1
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 +15 -2
- package/dist/cli.js +3645 -657
- package/package.json +2 -2
- package/src/cli.ts +377 -55
- package/src/config/mcp-credentials.ts +83 -0
- package/src/config/policy.ts +4 -0
- package/src/model/proxy-adapter.ts +1 -0
- package/src/protocol/approval.ts +99 -0
- package/src/protocol/client.ts +1 -0
- package/src/run/execute.ts +4 -0
- package/src/version.ts +56 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ outbound only: nothing listens on a port, and the server holds no address for th
|
|
|
9
9
|
```sh
|
|
10
10
|
npm install -g @aloud/runner
|
|
11
11
|
|
|
12
|
-
aloud login #
|
|
12
|
+
aloud login # approve this machine in your browser
|
|
13
13
|
aloud start # waits for studies and runs them here
|
|
14
14
|
```
|
|
15
15
|
|
|
@@ -19,12 +19,25 @@ The first `aloud start` downloads Chromium, about 350 MB, once.
|
|
|
19
19
|
|
|
20
20
|
| Command | What it does |
|
|
21
21
|
| --- | --- |
|
|
22
|
+
| `aloud setup` | Inspect this machine and complete whatever setup remains |
|
|
22
23
|
| `aloud login [--token <token>]` | Connect this machine to your workspace |
|
|
23
|
-
| `aloud start [--once] [--quiet]` |
|
|
24
|
+
| `aloud start [--once] [--quiet] [--no-update]` | Update, then wait for studies and run them here |
|
|
24
25
|
| `aloud status` | What is set up, what is not, and whether it is running |
|
|
25
26
|
| `aloud allow <host>` | Let studies open this host from this machine |
|
|
26
27
|
| `aloud mcp` | Connect an MCP host to the web workspace selected by its MCP access token |
|
|
27
28
|
| `aloud logout` | Forget the token on this machine |
|
|
29
|
+
| `aloud --version` | Print the installed runner version |
|
|
30
|
+
|
|
31
|
+
## Updates
|
|
32
|
+
|
|
33
|
+
Starting with 0.3.1, `aloud start` asks the connected Aloud server which official runner release
|
|
34
|
+
it recommends. If a newer one is available, it installs that exact `@aloud/runner` version and
|
|
35
|
+
relaunches it before claiming work. It never replaces code during an active study.
|
|
36
|
+
|
|
37
|
+
If an optional update cannot be installed, the terminal says why and a still-compatible runner may
|
|
38
|
+
continue. If the server requires the update, nothing starts and the command exits non-zero with the
|
|
39
|
+
manual repair command. `--no-update` is available for managed environments, but it cannot make an
|
|
40
|
+
incompatible runner claim work.
|
|
28
41
|
|
|
29
42
|
## MCP access
|
|
30
43
|
|