@rikafx/cli 0.8.3 → 0.9.0
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 +7 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ The standard repository commands are `build`, `check`, `dev`, `format`, `test`,
|
|
|
33
33
|
|
|
34
34
|
## Configuration
|
|
35
35
|
|
|
36
|
-
Global settings live at `~/.config/rika/settings.json`. A workspace can override them with `.rika/settings.json`.
|
|
36
|
+
Global settings live at `~/.config/rika/settings.json`. A workspace can override them with `.rika/settings.json`. Model-provider credentials belong to the selected Personal or Organization owner, are encrypted by the API, and are never returned by read APIs. Local, Runner, and Orb execution use that hosted owner; executors never receive model credentials.
|
|
37
37
|
|
|
38
38
|
```json
|
|
39
39
|
{
|
|
@@ -41,25 +41,18 @@ Global settings live at `~/.config/rika/settings.json`. A workspace can override
|
|
|
41
41
|
"maxDepth": 4,
|
|
42
42
|
"maxSubagents": 4
|
|
43
43
|
},
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
"baseUrl": "http://127.0.0.1:9000/v1",
|
|
48
|
-
"apiKeyEnv": "RIKA_MODEL_API_KEY"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"defaultMode": "local",
|
|
52
|
-
"modes": {
|
|
53
|
-
"local": {
|
|
54
|
-
"main": { "provider": "openai", "model": "my-local-model", "effort": "medium" }
|
|
55
|
-
}
|
|
44
|
+
"keymap": {
|
|
45
|
+
"submit": "enter",
|
|
46
|
+
"newline": "shift+enter"
|
|
56
47
|
}
|
|
57
48
|
}
|
|
58
49
|
```
|
|
59
50
|
|
|
60
51
|
```bash
|
|
61
52
|
rika auth login
|
|
62
|
-
rika
|
|
53
|
+
rika provider login codex
|
|
54
|
+
# Or configure a hosted API-key provider:
|
|
55
|
+
rika credential set openrouter
|
|
63
56
|
rika config list
|
|
64
57
|
rika doctor
|
|
65
58
|
rika
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.
|
|
1
|
+
{"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.9.0","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.9.0","@rikafx/cli-linux-arm64":"0.9.0","@rikafx/cli-linux-x64":"0.9.0"}}
|