@factiii/runner 0.9.1 → 0.9.3
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 +3 -0
- package/dist/cli.js +2581 -2217
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,12 +29,15 @@ factiii-runner setup # verify the host toolchain, pair this runner
|
|
|
29
29
|
factiii-runner connect # re-pair with a different account
|
|
30
30
|
factiii-runner start # run the daemon (keep this process alive)
|
|
31
31
|
factiii-runner status # show current config + credential storage state
|
|
32
|
+
factiii-runner doctor # show where each host tool resolves, and the PATH
|
|
32
33
|
factiii-runner password # set or change the optional connection password
|
|
33
34
|
factiii-runner password --clear # remove it (stays keychain-encrypted)
|
|
34
35
|
```
|
|
35
36
|
|
|
36
37
|
`setup` is the one-shot command that gets you from zero to running. It checks the host toolchain and walks you through the browser pairing flow. After it finishes, `factiii-runner start` runs the daemon.
|
|
37
38
|
|
|
39
|
+
`doctor` is the first thing to run when a board reports "Couldn't initialize the environment". It prints the resolved location of every tool the runner needs and the PATH it searched, which separates a tool that is genuinely absent from one that is installed somewhere the runner cannot see.
|
|
40
|
+
|
|
38
41
|
## Security notes
|
|
39
42
|
|
|
40
43
|
Everything the runner stores in `~/.factiii-runner/` — the GitHub PAT, the OneDrive refresh token, the Claude/Codex OAuth files, and the pairing JWT — is **encrypted at rest** with AES-256-GCM at permissions `0600`. Existing plaintext files migrate automatically on the first read; no re-pairing.
|