reasonix 1.4.0-rc.1 → 1.5.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -220,10 +220,11 @@ convenient.
220
220
 
221
221
  ### Slash commands
222
222
 
223
- In `reasonix chat`, built-in commands (`/compact`, `/new`/`/clear`, `/rewind`, `/tree`,
223
+ In `reasonix chat`, built-in commands (`/compact`, `/new`, `/clear`, `/rewind`, `/tree`,
224
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.
225
+ `/new` starts a new session while saving the previous transcript for
226
+ history/resume; `/clear` asks for confirmation, then discards the current context
227
+ without saving it.
227
228
  `/tree` shows saved conversation branches, `/branch [name]` forks the current
228
229
  conversation tip, `/branch <turn> [name]` forks from an earlier checkpointed turn,
229
230
  and `/switch <id|name>` loads another branch. **Custom commands** are Markdown files under
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.4.0-rc.1",
3
+ "version": "1.5.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-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"
32
+ "@reasonix/cli-darwin-arm64": "1.5.0-rc.1",
33
+ "@reasonix/cli-darwin-x64": "1.5.0-rc.1",
34
+ "@reasonix/cli-linux-arm64": "1.5.0-rc.1",
35
+ "@reasonix/cli-linux-x64": "1.5.0-rc.1",
36
+ "@reasonix/cli-win32-arm64": "1.5.0-rc.1",
37
+ "@reasonix/cli-win32-x64": "1.5.0-rc.1"
38
38
  }
39
39
  }