reasonix 1.2.0-rc.1 → 1.3.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 +11 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -116,9 +116,11 @@ api_key_env = "DEEPSEEK_API_KEY"
116
116
 
117
117
  [tools]
118
118
  enabled = [] # omit/empty = all built-ins
119
+ bash_timeout_seconds = 120 # foreground safety cap; set 0 for no tool-local cap
119
120
 
120
121
  [skills]
121
122
  # paths = ["~/my-skills", "../shared/skills"] # extra custom skill roots
123
+ # excluded_paths = ["~/.agents/skills"] # hide convention roots without deleting folders
122
124
  # disabled_skills = ["review"] # hide skills until /skill enable <name>
123
125
 
124
126
  [permissions]
@@ -179,6 +181,11 @@ url = "https://mcp.stripe.com"
179
181
  headers = { Authorization = "Bearer ${STRIPE_KEY}" }
180
182
  ```
181
183
 
184
+ Enabled MCP servers start connecting automatically in the background after a
185
+ session begins, so chat stays usable while tools come online. Use `/mcp` or the
186
+ desktop MCP panel to refresh status, reconnect a server, inspect failures, or
187
+ disable a server for the current session.
188
+
182
189
  **Already have an `.mcp.json`?** Drop it in the project root and Reasonix
183
190
  reads it as-is — the `mcpServers` spec (`command`/`args`/`env`, `type`/`url`/
184
191
  `headers`, `${VAR}` expansion) maps field-for-field onto `[[plugins]]`. Both
@@ -243,6 +250,10 @@ separate cache-stable sessions) is a one-line edit afterwards — set
243
250
  planner_model = "deepseek-pro" # used as the low-frequency planner
244
251
  ```
245
252
 
253
+ The planner sees loaded `REASONIX.md` / `AGENTS.md` memory and a small read-only
254
+ research tool set, so it can inspect relevant files before handing a plan to the
255
+ executor. Writer and workflow tools remain executor-only.
256
+
246
257
  Subagent skills inherit the executor model by default. Set `subagent_model` to
247
258
  run them on another configured model, or use `subagent_models` to override only
248
259
  specific skills such as `review` or `security_review`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.2.0-rc.1",
3
+ "version": "1.3.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.2.0-rc.1",
33
- "@reasonix/cli-darwin-x64": "1.2.0-rc.1",
34
- "@reasonix/cli-linux-arm64": "1.2.0-rc.1",
35
- "@reasonix/cli-linux-x64": "1.2.0-rc.1",
36
- "@reasonix/cli-win32-arm64": "1.2.0-rc.1",
37
- "@reasonix/cli-win32-x64": "1.2.0-rc.1"
32
+ "@reasonix/cli-darwin-arm64": "1.3.0-rc.1",
33
+ "@reasonix/cli-darwin-x64": "1.3.0-rc.1",
34
+ "@reasonix/cli-linux-arm64": "1.3.0-rc.1",
35
+ "@reasonix/cli-linux-x64": "1.3.0-rc.1",
36
+ "@reasonix/cli-win32-arm64": "1.3.0-rc.1",
37
+ "@reasonix/cli-win32-x64": "1.3.0-rc.1"
38
38
  }
39
39
  }