reasonix 1.0.0-rc1 → 1.1.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 +10 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ every [GitHub release](https://github.com/esengine/DeepSeek-Reasonix/releases).
|
|
|
74
74
|
### Build from source
|
|
75
75
|
|
|
76
76
|
```sh
|
|
77
|
-
make build # -> bin/reasonix
|
|
77
|
+
make build # -> bin/reasonix(.exe)
|
|
78
78
|
make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
|
|
79
79
|
```
|
|
80
80
|
|
|
@@ -117,6 +117,10 @@ api_key_env = "DEEPSEEK_API_KEY"
|
|
|
117
117
|
[tools]
|
|
118
118
|
enabled = [] # omit/empty = all built-ins
|
|
119
119
|
|
|
120
|
+
[skills]
|
|
121
|
+
# paths = ["~/my-skills", "../shared/skills"] # extra custom skill roots
|
|
122
|
+
# disabled_skills = ["review"] # hide skills until /skill enable <name>
|
|
123
|
+
|
|
120
124
|
[permissions]
|
|
121
125
|
mode = "ask" # writer fallback when no rule matches: ask|allow|deny
|
|
122
126
|
deny = ["bash(rm -rf*)", "bash(git push*)"] # hard-blocked in every mode
|
|
@@ -189,6 +193,11 @@ sources are merged; on a name collision `reasonix.toml` wins.
|
|
|
189
193
|
}
|
|
190
194
|
```
|
|
191
195
|
|
|
196
|
+
**Upgrading from `0.x`?** Your old `~/.reasonix/config.json` is still read for its
|
|
197
|
+
`mcpServers` (honouring `mcpDisabled`) as a lowest-priority source, so MCP servers
|
|
198
|
+
keep working — move them into `reasonix.toml`'s `[[plugins]]` or a `.mcp.json` when
|
|
199
|
+
convenient.
|
|
200
|
+
|
|
192
201
|
### Slash commands
|
|
193
202
|
|
|
194
203
|
In `reasonix chat`, built-in commands (`/compact`, `/new`, `/rewind`, `/tree`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.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.
|
|
33
|
-
"@reasonix/cli-darwin-x64": "1.
|
|
34
|
-
"@reasonix/cli-linux-arm64": "1.
|
|
35
|
-
"@reasonix/cli-linux-x64": "1.
|
|
36
|
-
"@reasonix/cli-win32-arm64": "1.
|
|
37
|
-
"@reasonix/cli-win32-x64": "1.
|
|
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"
|
|
38
38
|
}
|
|
39
39
|
}
|