reasonix 1.4.0-canary.2 → 1.4.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.
- package/README.md +30 -8
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -71,6 +71,12 @@ brew install esengine/reasonix/reasonix # macOS
|
|
|
71
71
|
Prebuilt archives (`darwin|linux|windows × amd64|arm64`) and `SHA256SUMS` are on
|
|
72
72
|
every [GitHub release](https://github.com/esengine/DeepSeek-Reasonix/releases).
|
|
73
73
|
|
|
74
|
+
### Code signing
|
|
75
|
+
|
|
76
|
+
Windows builds are code-signed with a free certificate provided by the
|
|
77
|
+
[SignPath Foundation](https://signpath.org/), with signing through
|
|
78
|
+
[SignPath.io](https://signpath.io/).
|
|
79
|
+
|
|
74
80
|
### Build from source
|
|
75
81
|
|
|
76
82
|
```sh
|
|
@@ -100,6 +106,8 @@ default_model = "deepseek-flash" # executor; set [agent].planner_model to add
|
|
|
100
106
|
# language = "zh" # ui language; empty = auto-detect from $LANG / $REASONIX_LANG
|
|
101
107
|
|
|
102
108
|
[agent]
|
|
109
|
+
max_steps = 0 # executor tool-call rounds; 0 = no limit
|
|
110
|
+
planner_max_steps = 12 # planner read-only tool-call rounds; 0 = no limit
|
|
103
111
|
# planner_model = "mimo-pro" # optional low-frequency planner
|
|
104
112
|
# subagent_model = "deepseek-pro" # optional default for runAs=subagent skills
|
|
105
113
|
# subagent_models = { review = "deepseek-pro", security_review = "deepseek-pro" }
|
|
@@ -125,8 +133,8 @@ bash_timeout_seconds = 120 # foreground safety cap; set 0 for no tool-local ca
|
|
|
125
133
|
|
|
126
134
|
[permissions]
|
|
127
135
|
mode = "ask" # writer fallback when no rule matches: ask|allow|deny
|
|
128
|
-
deny = ["
|
|
129
|
-
allow = ["
|
|
136
|
+
deny = ["Bash(rm -rf*)", "Bash(git push*)"] # hard-blocked in every mode
|
|
137
|
+
allow = ["Bash(go test:*)"] # never prompted
|
|
130
138
|
|
|
131
139
|
[sandbox]
|
|
132
140
|
# workspace_root = "" # file-writers confined here; empty = current dir
|
|
@@ -137,10 +145,15 @@ name = "example"
|
|
|
137
145
|
command = "reasonix-plugin-example"
|
|
138
146
|
```
|
|
139
147
|
|
|
140
|
-
Permissions gate each tool call: `deny` > `ask` > `allow` > fallback
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
148
|
+
Permissions gate each tool call: `deny` > `ask` > `allow` > fallback. Bash and
|
|
149
|
+
file mutation tools require approval by default; read-only tools generally do
|
|
150
|
+
not. Approvals are stored and matched as permission rules, not button labels:
|
|
151
|
+
for example `Bash(npm run build)`, `Bash(npm run test:*)`, and `Edit(docs/**)`.
|
|
152
|
+
`reasonix chat` can grant Bash as an exact command or as a conservative command
|
|
153
|
+
prefix (for example `Bash(go test:*)`), while file-editing tools share session
|
|
154
|
+
edit grants and persist path-scoped rules such as `Edit(src/app.go)`.
|
|
155
|
+
`reasonix run` stays autonomous but still honours `deny`. See
|
|
156
|
+
[`docs/SPEC.md`](docs/SPEC.md) for the full schema and contract.
|
|
144
157
|
|
|
145
158
|
Permissions are *policy* (which calls to allow / prompt). The **sandbox** is
|
|
146
159
|
*enforcement*: the file-writers (`write_file` / `edit_file` / `multi_edit`)
|
|
@@ -207,8 +220,10 @@ convenient.
|
|
|
207
220
|
|
|
208
221
|
### Slash commands
|
|
209
222
|
|
|
210
|
-
In `reasonix chat`, built-in commands (`/compact`, `/new`, `/rewind`, `/tree`,
|
|
223
|
+
In `reasonix chat`, built-in commands (`/compact`, `/new`/`/clear`, `/rewind`, `/tree`,
|
|
211
224
|
`/branch`, `/switch`, `/todo`, `/model`, `/effort`, `/mcp`, `/memory`, `/help`) run locally.
|
|
225
|
+
`/new` starts a fresh model context while saving the previous transcript for
|
|
226
|
+
history/resume; `/clear` is the Claude Code-compatible alias.
|
|
212
227
|
`/tree` shows saved conversation branches, `/branch [name]` forks the current
|
|
213
228
|
conversation tip, `/branch <turn> [name]` forks from an earlier checkpointed turn,
|
|
214
229
|
and `/switch <id|name>` loads another branch. **Custom commands** are Markdown files under
|
|
@@ -248,11 +263,18 @@ separate cache-stable sessions) is a one-line edit afterwards — set
|
|
|
248
263
|
```toml
|
|
249
264
|
[agent]
|
|
250
265
|
planner_model = "deepseek-pro" # used as the low-frequency planner
|
|
266
|
+
planner_max_steps = 12 # read-only tool-call rounds before pausing
|
|
251
267
|
```
|
|
252
268
|
|
|
253
269
|
The planner sees loaded `REASONIX.md` / `AGENTS.md` memory and a small read-only
|
|
254
270
|
research tool set, so it can inspect relevant files before handing a plan to the
|
|
255
|
-
executor. Writer and workflow tools remain executor-only.
|
|
271
|
+
executor. Writer and workflow tools remain executor-only. `max_steps` limits the
|
|
272
|
+
executor; `planner_max_steps` limits only the planner, and either can be set to
|
|
273
|
+
`0` for no round limit.
|
|
274
|
+
|
|
275
|
+
Keep personal step-limit preferences in the user config. Add them to a project's
|
|
276
|
+
`./reasonix.toml` only when that repository needs a shared override, such as a
|
|
277
|
+
larger planner limit for a very large codebase.
|
|
256
278
|
|
|
257
279
|
Subagent skills inherit the executor model by default. Set `subagent_model` to
|
|
258
280
|
run them on another configured model, or use `subagent_models` to override only
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.4.0-
|
|
3
|
+
"version": "1.4.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.4.0-
|
|
33
|
-
"@reasonix/cli-darwin-x64": "1.4.0-
|
|
34
|
-
"@reasonix/cli-linux-arm64": "1.4.0-
|
|
35
|
-
"@reasonix/cli-linux-x64": "1.4.0-
|
|
36
|
-
"@reasonix/cli-win32-arm64": "1.4.0-
|
|
37
|
-
"@reasonix/cli-win32-x64": "1.4.0-
|
|
32
|
+
"@reasonix/cli-darwin-arm64": "1.4.0-rc.1",
|
|
33
|
+
"@reasonix/cli-darwin-x64": "1.4.0-rc.1",
|
|
34
|
+
"@reasonix/cli-linux-arm64": "1.4.0-rc.1",
|
|
35
|
+
"@reasonix/cli-linux-x64": "1.4.0-rc.1",
|
|
36
|
+
"@reasonix/cli-win32-arm64": "1.4.0-rc.1",
|
|
37
|
+
"@reasonix/cli-win32-x64": "1.4.0-rc.1"
|
|
38
38
|
}
|
|
39
39
|
}
|