reasonix 1.6.0-rc.1 → 1.7.0-rc.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 +6 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -112,8 +112,10 @@ model = "deepseek-v4-flash"
112
112
  api_key_env = "DEEPSEEK_API_KEY"
113
113
  ```
114
114
 
115
- Resolution order is **flag > `./reasonix.toml` > `~/.config/reasonix/config.toml` >
116
- built-in defaults**; secrets come from the environment via `api_key_env` and are
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
117
119
  never written to config files. Permissions, the sandbox, plugins (MCP), slash
118
120
  commands, `@` references, and two-model setup are all in the
119
121
  **[Guide](./docs/GUIDE.md)**.
@@ -122,6 +124,8 @@ commands, `@` references, and two-model setup are all in the
122
124
 
123
125
  - **[Guide](./docs/GUIDE.md)** — configuration, permissions & sandbox, plugins
124
126
  (MCP), slash commands, `@` references, two-model collaboration.
127
+ - **[Bot guide](./docs/BOT_GUIDE.md)** — connect Feishu, Lark, and WeChat bots
128
+ from the desktop app, then use approvals, YOLO, and commands from IM.
125
129
  - **[Spec](./docs/SPEC.md)** — engineering contract: architecture, registries,
126
130
  data types, and roadmap.
127
131
  - **[Migrating from 0.x](./docs/MIGRATING.md)** — moving from the legacy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.6.0-rc.1",
3
+ "version": "1.7.0-rc.1",
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.6.0-rc.1",
33
- "@reasonix/cli-darwin-x64": "1.6.0-rc.1",
34
- "@reasonix/cli-linux-arm64": "1.6.0-rc.1",
35
- "@reasonix/cli-linux-x64": "1.6.0-rc.1",
36
- "@reasonix/cli-win32-arm64": "1.6.0-rc.1",
37
- "@reasonix/cli-win32-x64": "1.6.0-rc.1"
32
+ "@reasonix/cli-darwin-arm64": "1.7.0-rc.1",
33
+ "@reasonix/cli-darwin-x64": "1.7.0-rc.1",
34
+ "@reasonix/cli-linux-arm64": "1.7.0-rc.1",
35
+ "@reasonix/cli-linux-x64": "1.7.0-rc.1",
36
+ "@reasonix/cli-win32-arm64": "1.7.0-rc.1",
37
+ "@reasonix/cli-win32-x64": "1.7.0-rc.1"
38
38
  }
39
39
  }