reasonix 1.17.16 → 1.17.18

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 +78 -83
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -9,6 +9,8 @@
9
9
   · 
10
10
  <a href="./docs/GUIDE.md">Guide</a>
11
11
  &nbsp;·&nbsp;
12
+ <a href="./docs/ACP.md">ACP</a>
13
+ &nbsp;·&nbsp;
12
14
  <a href="./docs/SPEC.md">Spec</a>
13
15
  &nbsp;·&nbsp;
14
16
  <a href="https://esengine.github.io/DeepSeek-Reasonix/">Website</a>
@@ -16,11 +18,6 @@
16
18
  <strong><a href="https://discord.gg/XF78rEME2D">Discord</a></strong>
17
19
  </p>
18
20
 
19
- > [!IMPORTANT]
20
- > **Reasonix 1.0 is a ground-up rewrite in Go** — this branch (`main-v2`) is the new default and where development happens now.
21
- > The earlier `0.x` TypeScript releases are **legacy**, living on the [`v1`](https://github.com/esengine/DeepSeek-Reasonix/tree/v1) branch (maintenance only).
22
- > 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.
23
-
24
21
  <p align="center">
25
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>
26
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>
@@ -62,6 +59,14 @@
62
59
 
63
60
  ## Install
64
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
+
65
70
  ```sh
66
71
  npm i -g reasonix # any OS; pulls the prebuilt native binary
67
72
  brew install esengine/reasonix/reasonix # macOS
@@ -70,114 +75,89 @@ brew install esengine/reasonix/reasonix # macOS
70
75
  Prebuilt archives (`darwin|linux|windows × amd64|arm64`) and `SHA256SUMS` are on
71
76
  every [GitHub release](https://github.com/esengine/DeepSeek-Reasonix/releases).
72
77
 
73
- ### 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
74
93
 
75
- Windows builds are code-signed with a free certificate provided by the
76
- [SignPath Foundation](https://signpath.org/), with signing through
77
- [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.
78
97
 
79
- ### 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
80
103
 
81
104
  ```sh
105
+ git clone https://github.com/esengine/DeepSeek-Reasonix.git
106
+ cd DeepSeek-Reasonix
82
107
  make build # -> bin/reasonix(.exe)
83
108
  make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
84
109
  ```
85
110
 
86
111
  ## Quick start
87
112
 
113
+ ### CLI / TUI
114
+
115
+ These commands are for the CLI/TUI installed through Path A:
116
+
88
117
  ```sh
89
- reasonix setup # manage providers in the user config
90
- reasonix setup --local # optional: manage ./reasonix.toml
91
- export DEEPSEEK_API_KEY=sk-... # or let setup save it to Reasonix home .env
92
- reasonix # then run /init to generate AGENTS.md (project memory)
118
+ reasonix setup # configure a provider and model
119
+ reasonix # start an interactive session
93
120
  reasonix run "implement the TODOs in main.go"
94
- reasonix run --model deepseek-pro "add unit tests for this function"
95
- echo "explain this code" | reasonix run
96
121
  ```
97
122
 
98
- ## Configuration
123
+ In an interactive session, run `/init` when you want Reasonix to create project
124
+ instructions.
99
125
 
100
- A minimal `reasonix.toml` — one provider and a default model — is enough to start:
126
+ ### Desktop app
101
127
 
102
- ```toml
103
- default_model = "deepseek-flash"
104
-
105
- [[providers]]
106
- name = "deepseek-flash"
107
- kind = "openai"
108
- base_url = "https://api.deepseek.com"
109
- model = "deepseek-v4-flash"
110
- api_key_env = "DEEPSEEK_API_KEY"
111
- ```
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.
112
132
 
113
- Resolution order is **flag > `./reasonix.toml` > the user config file >
114
- built-in defaults**; starting with **Reasonix v1.8.1**, the user file lives at
115
- `~/.reasonix/config.toml` on macOS/Linux and
116
- `%AppData%\reasonix\config.toml` on Windows. See
117
- **[Configuration paths](./docs/CONFIG_PATHS.md)** for migration details and the
118
- full `config.toml` / `.env` structure. Provider entries name secrets with
119
- `api_key_env`; the secret values themselves live in Reasonix's global
120
- `<Reasonix home>/.env`, shared by CLI and desktop. Project `.env` files are not
121
- provider-key runtime fallbacks, but still feed workspace-scoped, non-provider
122
- `${VAR}` expansion for MCP/plugin settings without importing Reasonix control
123
- variables. Permissions, the sandbox, plugins (MCP), slash
124
- commands, `@` references, and two-model setup are all in the
125
- **[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)**.
126
136
 
127
137
  ## Documentation
128
138
 
129
- - **[CLI reference](./docs/CLI.md)** — interactive and one-shot commands,
130
- structured output, resume, permission modes, and searchable pickers.
131
- - **[Guide](./docs/GUIDE.md)** — configuration, permissions & sandbox, plugins
132
- (MCP), slash commands, `@` references, two-model collaboration.
133
- - **[Subagent profiles](./docs/SUBAGENT_PROFILES.md)** create, share, preview,
134
- run, edit, and safely delete isolated agent profiles from desktop or CLI.
135
- - **[Capability diagnostics](./docs/CAPABILITY_DIAGNOSTICS.md)**
136
- `reasonix doctor capabilities`, desktop Settings → Diagnostics, and the
137
- `/reasonix-guide` skill for skills/hooks/MCP/plugin troubleshooting.
138
- - **[Recovery and Safe Mode](./docs/RECOVERY.md)** — Guard diagnostics,
139
- configuration snapshots, native recovery, update rollback, and optional
140
- AI-assisted repair plans.
141
- - **[Bot guide](./docs/BOT_GUIDE.md)** — connect Feishu, Lark, and WeChat bots
142
- from the desktop app, then use approvals, YOLO, and commands from IM.
143
- - **[Spec](./docs/SPEC.md)** — engineering contract: architecture, registries,
144
- data types, and roadmap.
145
- - **[Task contracts & pause policy](./docs/TASK_CONTRACT.md)** — structure
146
- complex requests with context, output boundaries, constraints, and when to ask.
147
- - **[Tool contract](./docs/TOOL_CONTRACT.md)** — provider-visible built-in tool
148
- names, read-only flags, and schema snapshot guard.
149
- - **[Migrating from 0.x](./docs/MIGRATING.md)** — moving from the legacy
150
- TypeScript releases to the 1.0 Go rewrite.
151
- - **[Checkpoints & rewind](./docs/CHECKPOINTS.md)** — the snapshot-based edit
152
- safety net (Esc-Esc / `/rewind`).
153
-
154
- <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)
155
148
 
156
149
  ## Star History
157
150
 
158
151
  <a href="https://www.star-history.com/?repos=esengine%2FDeepSeek-Reasonix&type=date&legend=top-left">
159
152
  <picture>
160
- <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=esengine/DeepSeek-Reasonix&type=date&theme=dark&legend=top-left" />
161
- <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=esengine/DeepSeek-Reasonix&type=date&legend=top-left" />
162
- <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" />
163
156
  </picture>
164
157
  </a>
165
158
 
166
159
  <br/>
167
160
 
168
- ## Support
169
-
170
- 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.
171
-
172
- - **International** — PayPal: [paypal.me/yuhuahui](https://paypal.me/yuhuahui)
173
- - **国内** — 微信支付(扫码)
174
-
175
- <p align="center">
176
- <img src=".github/sponsor/wechat-pay.jpg" alt="WeChat Pay QR code" width="240"/>
177
- </p>
178
-
179
- <br/>
180
-
181
161
  ## Acknowledgments
182
162
 
183
163
  A small list of folks whose work has shaped Reasonix the most — the current top
@@ -213,3 +193,18 @@ for designing the project logo, and to
213
193
  <br/>
214
194
  <sub>Built by the community at <a href="https://github.com/esengine/DeepSeek-Reasonix/graphs/contributors">esengine/DeepSeek-Reasonix</a></sub>
215
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.16",
3
+ "version": "1.17.18",
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.16",
33
- "@reasonix/cli-darwin-x64": "1.17.16",
34
- "@reasonix/cli-linux-arm64": "1.17.16",
35
- "@reasonix/cli-linux-x64": "1.17.16",
36
- "@reasonix/cli-win32-arm64": "1.17.16",
37
- "@reasonix/cli-win32-x64": "1.17.16"
32
+ "@reasonix/cli-darwin-arm64": "1.17.18",
33
+ "@reasonix/cli-darwin-x64": "1.17.18",
34
+ "@reasonix/cli-linux-arm64": "1.17.18",
35
+ "@reasonix/cli-linux-x64": "1.17.18",
36
+ "@reasonix/cli-win32-arm64": "1.17.18",
37
+ "@reasonix/cli-win32-x64": "1.17.18"
38
38
  }
39
39
  }