reasonix 1.22.0 → 1.23.0
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 +26 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -115,13 +115,39 @@ approvals, model selection, and workspace sessions.
|
|
|
115
115
|
|
|
116
116
|
### Path D: Build from source
|
|
117
117
|
|
|
118
|
+
Clone the repository first:
|
|
119
|
+
|
|
118
120
|
```sh
|
|
119
121
|
git clone https://github.com/esengine/DeepSeek-Reasonix.git
|
|
120
122
|
cd DeepSeek-Reasonix
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
#### CLI
|
|
126
|
+
|
|
127
|
+
The CLI build requires **Go 1.25+**. The module pins a `toolchain` directive;
|
|
128
|
+
keep `GOTOOLCHAIN=auto` so Go downloads the pinned toolchain, or install it.
|
|
129
|
+
|
|
130
|
+
```sh
|
|
121
131
|
make build # -> bin/reasonix(.exe)
|
|
122
132
|
make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
|
|
123
133
|
```
|
|
124
134
|
|
|
135
|
+
#### Desktop
|
|
136
|
+
|
|
137
|
+
The desktop build additionally requires:
|
|
138
|
+
|
|
139
|
+
- **Node 24+ and pnpm 10** (`npm install -g pnpm@10`) for the frontend
|
|
140
|
+
- **Wails CLI** matching the shared `.wails-version` pin
|
|
141
|
+
|
|
142
|
+
```sh
|
|
143
|
+
make wails-install
|
|
144
|
+
cd desktop
|
|
145
|
+
wails build
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
See the [desktop build guide](desktop/README.md#prerequisites) for platform
|
|
149
|
+
webview dependencies and Linux build tags.
|
|
150
|
+
|
|
125
151
|
## Quick start
|
|
126
152
|
|
|
127
153
|
### CLI / TUI
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.0",
|
|
4
4
|
"description": "Cache-first DeepSeek coding agent for the terminal.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"reasonix": "bin/reasonix.js"
|
|
@@ -29,12 +29,12 @@
|
|
|
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.23.0",
|
|
33
|
+
"@reasonix/cli-darwin-x64": "1.23.0",
|
|
34
|
+
"@reasonix/cli-linux-arm64": "1.23.0",
|
|
35
|
+
"@reasonix/cli-linux-x64": "1.23.0",
|
|
36
|
+
"@reasonix/cli-win32-arm64": "1.23.0",
|
|
37
|
+
"@reasonix/cli-win32-x64": "1.23.0"
|
|
38
38
|
},
|
|
39
|
-
"reasonixCandidateSha": "
|
|
39
|
+
"reasonixCandidateSha": "15239191e476f90d1b840086d145d276ed7b72a5"
|
|
40
40
|
}
|