reasonix 1.17.17 → 1.17.19

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 +76 -85
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -18,11 +18,6 @@
18
18
  <strong><a href="https://discord.gg/XF78rEME2D">Discord</a></strong>
19
19
  </p>
20
20
 
21
- > [!IMPORTANT]
22
- > **Reasonix 1.0 is a ground-up rewrite in Go** — this branch (`main-v2`) is the new default and where development happens now.
23
- > The earlier `0.x` TypeScript releases are **legacy**, living on the [`v1`](https://github.com/esengine/DeepSeek-Reasonix/tree/v1) branch (maintenance only).
24
- > See the **[migration guide](./docs/MIGRATING.md)**. `npm i -g reasonix` stays the install command — `1.0.0`+ delivers the Go binary, `0.x` is the legacy TS build.
25
-
26
21
  <p align="center">
27
22
  <a href="https://www.npmjs.com/package/reasonix"><img src="https://img.shields.io/npm/v/reasonix.svg?style=flat-square&color=cb3837&labelColor=161b22&logo=npm&logoColor=white" alt="npm version"/></a>
28
23
  <a href="https://github.com/esengine/DeepSeek-Reasonix/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/esengine/DeepSeek-Reasonix/ci.yml?style=flat-square&label=ci&labelColor=161b22&logo=githubactions&logoColor=white" alt="CI"/></a>
@@ -64,6 +59,14 @@
64
59
 
65
60
  ## Install
66
61
 
62
+ Choose the path that matches how you want to use Reasonix. The CLI/TUI,
63
+ desktop app, and VS Code extension all use the same local Reasonix engine.
64
+
65
+ ### Path A: CLI / TUI
66
+
67
+ Install the native binary through npm on any supported platform, or use
68
+ Homebrew on macOS:
69
+
67
70
  ```sh
68
71
  npm i -g reasonix # any OS; pulls the prebuilt native binary
69
72
  brew install esengine/reasonix/reasonix # macOS
@@ -72,116 +75,89 @@ brew install esengine/reasonix/reasonix # macOS
72
75
  Prebuilt archives (`darwin|linux|windows × amd64|arm64`) and `SHA256SUMS` are on
73
76
  every [GitHub release](https://github.com/esengine/DeepSeek-Reasonix/releases).
74
77
 
75
- ### Code signing
78
+ ### Path B: Desktop app
79
+
80
+ Use the [official download page](https://reasonix.io/?download=desktop#start)
81
+ for the latest desktop build.
82
+
83
+ | Platform | Package | Architecture |
84
+ | --- | --- | --- |
85
+ | macOS | Universal `.dmg` or `.zip` | Apple Silicon / Intel |
86
+ | Windows | Installer `.exe` or portable `.zip` | x64 / ARM64 |
87
+ | Linux | `.deb` or `.tar.gz` | x64 |
88
+
89
+ Windows installers are code-signed through [SignPath.io](https://signpath.io/)
90
+ with a free certificate provided by the [SignPath Foundation](https://signpath.org/).
91
+
92
+ ### Path C: VS Code extension
76
93
 
77
- Windows builds are code-signed with a free certificate provided by the
78
- [SignPath Foundation](https://signpath.org/), with signing through
79
- [SignPath.io](https://signpath.io/).
94
+ Complete Path A first. The extension does not bundle the CLI; it starts your
95
+ local `reasonix acp` backend and adds native chat, editor context, tool-call
96
+ approvals, model selection, and workspace sessions.
80
97
 
81
- ### Build from source
98
+ - **VS Code:** [install from Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SivanLiu.reasonix-agent)
99
+ - **VSCodium / Eclipse Theia:** [install from Open VSX Registry](https://open-vsx.org/extension/SivanLiu/reasonix-agent)
100
+ - **Extension ID:** `SivanLiu.reasonix-agent` · [source and usage guide](https://github.com/SivanCola/reasonix-vscode)
101
+
102
+ ### Path D: Build from source
82
103
 
83
104
  ```sh
105
+ git clone https://github.com/esengine/DeepSeek-Reasonix.git
106
+ cd DeepSeek-Reasonix
84
107
  make build # -> bin/reasonix(.exe)
85
108
  make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
86
109
  ```
87
110
 
88
111
  ## Quick start
89
112
 
113
+ ### CLI / TUI
114
+
115
+ These commands are for the CLI/TUI installed through Path A:
116
+
90
117
  ```sh
91
- reasonix setup # manage providers in the user config
92
- reasonix setup --local # optional: manage ./reasonix.toml
93
- export DEEPSEEK_API_KEY=sk-... # or let setup save it to Reasonix home .env
94
- reasonix # then run /init to generate AGENTS.md (project memory)
118
+ reasonix setup # configure a provider and model
119
+ reasonix # start an interactive session
95
120
  reasonix run "implement the TODOs in main.go"
96
- reasonix run --model deepseek-pro "add unit tests for this function"
97
- echo "explain this code" | reasonix run
98
121
  ```
99
122
 
100
- ## Configuration
123
+ In an interactive session, run `/init` when you want Reasonix to create project
124
+ instructions.
101
125
 
102
- A minimal `reasonix.toml` — one provider and a default model — is enough to start:
126
+ ### Desktop app
103
127
 
104
- ```toml
105
- default_model = "deepseek-flash"
106
-
107
- [[providers]]
108
- name = "deepseek-flash"
109
- kind = "openai"
110
- base_url = "https://api.deepseek.com"
111
- model = "deepseek-v4-flash"
112
- api_key_env = "DEEPSEEK_API_KEY"
113
- ```
128
+ Download the installer for your platform from the
129
+ [official download page](https://reasonix.io/?download=desktop#start), install
130
+ and launch Reasonix, then configure a provider and model in the app. The CLI
131
+ commands above are not required for the desktop app.
114
132
 
115
- Resolution order is **flag > `./reasonix.toml` > the user config file >
116
- built-in defaults**; starting with **Reasonix v1.8.1**, the user file lives at
117
- `~/.reasonix/config.toml` on macOS/Linux and
118
- `%AppData%\reasonix\config.toml` on Windows. See
119
- **[Configuration paths](./docs/CONFIG_PATHS.md)** for migration details and the
120
- full `config.toml` / `.env` structure. Provider entries name secrets with
121
- `api_key_env`; the secret values themselves live in Reasonix's global
122
- `<Reasonix home>/.env`, shared by CLI and desktop. Project `.env` files are not
123
- provider-key runtime fallbacks, but still feed workspace-scoped, non-provider
124
- `${VAR}` expansion for MCP/plugin settings without importing Reasonix control
125
- variables. Permissions, the sandbox, plugins (MCP), slash
126
- commands, `@` references, and two-model setup are all in the
127
- **[Guide](./docs/GUIDE.md)**.
133
+ For advanced CLI usage and configuration, see the **[CLI reference](./docs/CLI.md)**,
134
+ **[Guide](./docs/GUIDE.md)**, and
135
+ **[configuration paths](./docs/CONFIG_PATHS.md)**.
128
136
 
129
137
  ## Documentation
130
138
 
131
- - **[CLI reference](./docs/CLI.md)** — interactive and one-shot commands,
132
- structured output, resume, permission modes, and searchable pickers.
133
- - **[Guide](./docs/GUIDE.md)** — configuration, permissions & sandbox, plugins
134
- (MCP), slash commands, `@` references, two-model collaboration.
135
- - **[ACP editor integration](./docs/ACP.md)** launch Reasonix from an ACP
136
- host, manage sessions and configuration, and integrate mid-turn steering.
137
- - **[Subagent profiles](./docs/SUBAGENT_PROFILES.md)** — create, share, preview,
138
- run, edit, and safely delete isolated agent profiles from desktop or CLI.
139
- - **[Capability diagnostics](./docs/CAPABILITY_DIAGNOSTICS.md)** —
140
- `reasonix doctor capabilities`, desktop Settings → Diagnostics, and the
141
- `/reasonix-guide` skill for skills/hooks/MCP/plugin troubleshooting.
142
- - **[Recovery and Safe Mode](./docs/RECOVERY.md)** — Guard diagnostics,
143
- configuration snapshots, native recovery, update rollback, and optional
144
- AI-assisted repair plans.
145
- - **[Bot guide](./docs/BOT_GUIDE.md)** — connect Feishu, Lark, and WeChat bots
146
- from the desktop app, then use approvals, YOLO, and commands from IM.
147
- - **[Spec](./docs/SPEC.md)** — engineering contract: architecture, registries,
148
- data types, and roadmap.
149
- - **[Task contracts & pause policy](./docs/TASK_CONTRACT.md)** — structure
150
- complex requests with context, output boundaries, constraints, and when to ask.
151
- - **[Tool contract](./docs/TOOL_CONTRACT.md)** — provider-visible built-in tool
152
- names, read-only flags, and schema snapshot guard.
153
- - **[Migrating from 0.x](./docs/MIGRATING.md)** — moving from the legacy
154
- TypeScript releases to the 1.0 Go rewrite.
155
- - **[Checkpoints & rewind](./docs/CHECKPOINTS.md)** — the snapshot-based edit
156
- safety net (Esc-Esc / `/rewind`).
157
-
158
- <br/>
139
+ - **Getting started:** [Guide](./docs/GUIDE.md) · [CLI reference](./docs/CLI.md) ·
140
+ [Configuration paths](./docs/CONFIG_PATHS.md) · [ACP editor integration](./docs/ACP.md)
141
+ - **Features & troubleshooting:** [Subagent profiles](./docs/SUBAGENT_PROFILES.md) ·
142
+ [Capability diagnostics](./docs/CAPABILITY_DIAGNOSTICS.md) ·
143
+ [Recovery and Safe Mode](./docs/RECOVERY.md) · [Bot guide](./docs/BOT_GUIDE.md) ·
144
+ [Checkpoints & rewind](./docs/CHECKPOINTS.md)
145
+ - **Engineering & migration:** [Spec](./docs/SPEC.md) ·
146
+ [Task contracts & pause policy](./docs/TASK_CONTRACT.md) ·
147
+ [Tool contract](./docs/TOOL_CONTRACT.md) · [Migrating from 0.x](./docs/MIGRATING.md)
159
148
 
160
149
  ## Star History
161
150
 
162
151
  <a href="https://www.star-history.com/?repos=esengine%2FDeepSeek-Reasonix&type=date&legend=top-left">
163
152
  <picture>
164
- <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=esengine/DeepSeek-Reasonix&type=date&theme=dark&legend=top-left" />
165
- <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=esengine/DeepSeek-Reasonix&type=date&legend=top-left" />
166
- <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=esengine/DeepSeek-Reasonix&type=date&legend=top-left" />
153
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/esengine/DeepSeek-Reasonix/star-history/assets/star-history/star-history-dark.svg" />
154
+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/esengine/DeepSeek-Reasonix/star-history/assets/star-history/star-history-light.svg" />
155
+ <img alt="Star History Chart" src="https://raw.githubusercontent.com/esengine/DeepSeek-Reasonix/star-history/assets/star-history/star-history-light.svg" />
167
156
  </picture>
168
157
  </a>
169
158
 
170
159
  <br/>
171
160
 
172
- ## Support
173
-
174
- If Reasonix has been useful and you'd like to say thanks, you can. It stays a coffee, not a contract — donations don't buy feature priority or change how issues get triaged.
175
-
176
- - **International** — PayPal: [paypal.me/yuhuahui](https://paypal.me/yuhuahui)
177
- - **国内** — 微信支付(扫码)
178
-
179
- <p align="center">
180
- <img src=".github/sponsor/wechat-pay.jpg" alt="WeChat Pay QR code" width="240"/>
181
- </p>
182
-
183
- <br/>
184
-
185
161
  ## Acknowledgments
186
162
 
187
163
  A small list of folks whose work has shaped Reasonix the most — the current top
@@ -217,3 +193,18 @@ for designing the project logo, and to
217
193
  <br/>
218
194
  <sub>Built by the community at <a href="https://github.com/esengine/DeepSeek-Reasonix/graphs/contributors">esengine/DeepSeek-Reasonix</a></sub>
219
195
  </p>
196
+
197
+ ---
198
+
199
+ <p align="center"><sub><strong>Support this project</strong></sub></p>
200
+
201
+ If Reasonix has been useful and you'd like to say thanks, you can. It stays a
202
+ coffee, not a contract — donations don't buy feature priority or change how
203
+ issues get triaged.
204
+
205
+ - **International** — PayPal: [paypal.me/yuhuahui](https://paypal.me/yuhuahui)
206
+ - **国内** — 微信支付(扫码)
207
+
208
+ <p align="center">
209
+ <img src=".github/sponsor/wechat-pay.jpg" alt="WeChat Pay QR code" width="180"/>
210
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.17.17",
3
+ "version": "1.17.19",
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.17.17",
33
- "@reasonix/cli-darwin-x64": "1.17.17",
34
- "@reasonix/cli-linux-arm64": "1.17.17",
35
- "@reasonix/cli-linux-x64": "1.17.17",
36
- "@reasonix/cli-win32-arm64": "1.17.17",
37
- "@reasonix/cli-win32-x64": "1.17.17"
32
+ "@reasonix/cli-darwin-arm64": "1.17.19",
33
+ "@reasonix/cli-darwin-x64": "1.17.19",
34
+ "@reasonix/cli-linux-arm64": "1.17.19",
35
+ "@reasonix/cli-linux-x64": "1.17.19",
36
+ "@reasonix/cli-win32-arm64": "1.17.19",
37
+ "@reasonix/cli-win32-x64": "1.17.19"
38
38
  }
39
39
  }