reasonix 1.1.0-rc.1 → 1.2.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 +10 -6
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -103,7 +103,7 @@ default_model = "deepseek-flash" # executor; set [agent].planner_model to add
103
103
  # planner_model = "mimo-pro" # optional low-frequency planner
104
104
  # subagent_model = "deepseek-pro" # optional default for runAs=subagent skills
105
105
  # subagent_models = { review = "deepseek-pro", security_review = "deepseek-pro" }
106
- auto_plan = "ask" # off|ask|on; complex chat tasks start in plan mode
106
+ auto_plan = "off" # off|on; off keeps plan mode manual
107
107
  # auto_plan_classifier = "deepseek-flash" # optional; only borderline tasks call it
108
108
 
109
109
  [[providers]]
@@ -247,11 +247,15 @@ Subagent skills inherit the executor model by default. Set `subagent_model` to
247
247
  run them on another configured model, or use `subagent_models` to override only
248
248
  specific skills such as `review` or `security_review`.
249
249
 
250
- For interactive frontends, `agent.auto_plan = "ask"` makes complex-looking tasks
251
- enter plan mode automatically: Reasonix first drafts a read-only plan, then waits
252
- for approval before editing or running side-effecting commands. `auto_plan_classifier`
253
- can name a cheap provider such as `deepseek-flash`; it is only called for
254
- borderline inputs and falls back to the heuristic if classification fails.
250
+ For interactive frontends, plan mode is manual by default. Set
251
+ `agent.auto_plan = "on"` to make complex-looking tasks enter plan mode
252
+ automatically: Reasonix first drafts a read-only plan, then waits for approval
253
+ before editing or running side-effecting commands. `auto_plan_classifier` can
254
+ name a cheap provider such as `deepseek-flash`; it is only called for borderline
255
+ inputs and falls back to the heuristic if classification fails. Use
256
+ `/auto-plan off|on` in `reasonix chat` to change the user-level setting, or
257
+ `reasonix config auto-plan off|on` from a shell/script. Pass `--local` to the
258
+ shell command only when you intentionally want a project-local override.
255
259
 
256
260
  ## Architecture
257
261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.1.0-rc.1",
3
+ "version": "1.2.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.1.0-rc.1",
33
- "@reasonix/cli-darwin-x64": "1.1.0-rc.1",
34
- "@reasonix/cli-linux-arm64": "1.1.0-rc.1",
35
- "@reasonix/cli-linux-x64": "1.1.0-rc.1",
36
- "@reasonix/cli-win32-arm64": "1.1.0-rc.1",
37
- "@reasonix/cli-win32-x64": "1.1.0-rc.1"
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"
38
38
  }
39
39
  }