farai 0.2.7 → 0.2.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 +11 -0
- package/dist/cli/index.js +1540 -477
- package/dist/cli/index.js.map +16 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,17 @@ Config and auth files live under:
|
|
|
55
55
|
~/.local/pajarori/farai/
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
+
Farai checks the separate [farai-data](https://github.com/pajarori/farai-data) release channel before opening the TUI. When a validated release manifest publishes new knowledge or skills, Farai asks before downloading it. The current content can be inspected or managed without starting a session:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
farai update status
|
|
62
|
+
farai update check
|
|
63
|
+
farai update apply
|
|
64
|
+
farai update rollback
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Set `FARAI_CONTENT_MANIFEST_URL` for a private channel or local `file://` manifest, and `FARAI_CONTENT_DIR` to isolate the local content store. Set `FARAI_DISABLE_CONTENT_UPDATE=1` to disable the channel.
|
|
68
|
+
|
|
58
69
|
## Status
|
|
59
70
|
|
|
60
71
|
Farai is under active development.
|