@rikafx/cli 0.6.3 → 0.6.5

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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Rika
2
2
 
3
- Rika is a local coding-agent CLI and terminal application. Every Turn runs as a durable execution that survives restarts, Threads and Turns stay in local SQLite, and the whole session renders in your terminal.
3
+ Rika is a collaborative coding-agent CLI and terminal application. Every Turn runs as a durable execution that survives client and executor restarts. Local execution remains the default, while an explicitly remote Thread runs in an isolated E2B workspace. Hosted identity, access, Threads, and TenetKit execution authority live in PostgreSQL.
4
4
 
5
5
  ## Install
6
6
 
@@ -45,7 +45,7 @@ rika-dev --version
45
45
 
46
46
  ## Configuration
47
47
 
48
- Global settings live at `~/.config/rika/settings.json`. A workspace can override them with `.rika/settings.json`. Credentials stay out of JSON: a provider override names the environment variable that supplies its API key. Mode names and routes are configurable, and direct provider/model routes do not require aliases.
48
+ Global settings live at `~/.config/rika/settings.json`. A workspace can override them with `.rika/settings.json`. Credentials stay out of JSON: local credentials use the operating-system credential store, while hosted user and Organization credentials are encrypted by the API and are never returned by read APIs. A provider override names the environment variable that supplies its API key. Mode names and routes are configurable, and direct provider/model routes do not require aliases.
49
49
 
50
50
  ```json
51
51
  {
@@ -70,7 +70,8 @@ Global settings live at `~/.config/rika/settings.json`. A workspace can override
70
70
  ```
71
71
 
72
72
  ```bash
73
- export RIKA_MODEL_API_KEY="your-provider-key"
73
+ rika auth login
74
+ rika credential set openai --scope local
74
75
  rika config list
75
76
  rika doctor
76
77
  rika
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.6.3","license":"MIT","repository":{"type":"git","url":"git+https://github.com/In-Time-Tec/rika.git"},"homepage":"https://github.com/In-Time-Tec/rika","engines":{"node":">=18"},"bin":{"rika":"bin/rika.js"},"files":["bin/rika.js","README.md"],"optionalDependencies":{"@rikafx/cli-darwin-arm64":"0.6.3","@rikafx/cli-linux-arm64":"0.6.3","@rikafx/cli-linux-x64":"0.6.3"}}
1
+ {"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.6.5","license":"MIT","repository":{"type":"git","url":"git+https://github.com/In-Time-Tec/rika.git"},"homepage":"https://github.com/In-Time-Tec/rika","engines":{"node":">=18"},"bin":{"rika":"bin/rika.js"},"files":["bin/rika.js","README.md"],"optionalDependencies":{"@rikafx/cli-darwin-arm64":"0.6.5","@rikafx/cli-linux-arm64":"0.6.5","@rikafx/cli-linux-x64":"0.6.5"}}