@rikafx/cli 0.6.0 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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.
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.
49
49
 
50
50
  ```json
51
51
  {
@@ -55,9 +55,16 @@ Global settings live at `~/.config/rika/settings.json`. A workspace can override
55
55
  },
56
56
  "providers": {
57
57
  "openai": {
58
+ "api": "chat-completions",
58
59
  "baseUrl": "http://127.0.0.1:9000/v1",
59
60
  "apiKeyEnv": "RIKA_MODEL_API_KEY"
60
61
  }
62
+ },
63
+ "defaultMode": "local",
64
+ "modes": {
65
+ "local": {
66
+ "main": { "provider": "openai", "model": "my-local-model", "effort": "medium" }
67
+ }
61
68
  }
62
69
  }
63
70
  ```
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.6.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.6.0","@rikafx/cli-linux-arm64":"0.6.0","@rikafx/cli-linux-x64":"0.6.0"}}
1
+ {"name":"@rikafx/cli","description":"Rika — a local durable coding agent for your terminal","version":"0.6.1","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.1","@rikafx/cli-linux-arm64":"0.6.1","@rikafx/cli-linux-x64":"0.6.1"}}