reasonix 1.8.0-rc.1 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +8 -5
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -90,7 +90,7 @@ make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
90
90
 
91
91
  ```sh
92
92
  reasonix setup # config wizard → ./reasonix.toml
93
- export DEEPSEEK_API_KEY=sk-... # or put it in .env (see .env.example)
93
+ export DEEPSEEK_API_KEY=sk-... # or let setup save it to the credential store
94
94
  reasonix chat # then run /init to generate AGENTS.md (project memory)
95
95
  reasonix run "implement the TODOs in main.go"
96
96
  reasonix run --model mimo-pro "add unit tests for this function"
@@ -113,10 +113,13 @@ api_key_env = "DEEPSEEK_API_KEY"
113
113
  ```
114
114
 
115
115
  Resolution order is **flag > `./reasonix.toml` > the user config file >
116
- built-in defaults**; the user file lives in your OS config dir — `~/.config/reasonix/`
117
- on Linux, `~/Library/Application Support/reasonix/` on macOS, `%AppData%\reasonix\` on
118
- Windows. Secrets come from the environment via `api_key_env` and are
119
- never written to config files. Permissions, the sandbox, plugins (MCP), slash
116
+ built-in defaults**; starting with **Reasonix v1.8.1**, the user file lives at
117
+ `~/.reasonix/config.toml` on macOS/Linux and
118
+ `%AppData%\reasonix\config.toml` on Windows. See
119
+ **[Configuration paths](./docs/CONFIG_PATHS.md)** for migration details. Secrets come from the environment via `api_key_env`, are
120
+ never written to config files, and new keys default to the OS credential store
121
+ with a Reasonix-owned file fallback. Project `.env` files are read as a
122
+ compatibility override, but Reasonix does not write new keys there. Permissions, the sandbox, plugins (MCP), slash
120
123
  commands, `@` references, and two-model setup are all in the
121
124
  **[Guide](./docs/GUIDE.md)**.
122
125
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.8.0-rc.1",
3
+ "version": "1.8.0",
4
4
  "description": "Cache-first DeepSeek coding agent for the terminal.",
5
5
  "bin": {
6
6
  "reasonix": "bin/reasonix.js"
@@ -29,11 +29,11 @@
29
29
  "tui"
30
30
  ],
31
31
  "optionalDependencies": {
32
- "@reasonix/cli-darwin-arm64": "1.8.0-rc.1",
33
- "@reasonix/cli-darwin-x64": "1.8.0-rc.1",
34
- "@reasonix/cli-linux-arm64": "1.8.0-rc.1",
35
- "@reasonix/cli-linux-x64": "1.8.0-rc.1",
36
- "@reasonix/cli-win32-arm64": "1.8.0-rc.1",
37
- "@reasonix/cli-win32-x64": "1.8.0-rc.1"
32
+ "@reasonix/cli-darwin-arm64": "1.8.0",
33
+ "@reasonix/cli-darwin-x64": "1.8.0",
34
+ "@reasonix/cli-linux-arm64": "1.8.0",
35
+ "@reasonix/cli-linux-x64": "1.8.0",
36
+ "@reasonix/cli-win32-arm64": "1.8.0",
37
+ "@reasonix/cli-win32-x64": "1.8.0"
38
38
  }
39
39
  }