reasonix 1.8.0 → 1.9.1-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 +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -91,7 +91,7 @@ make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
91
91
  ```sh
92
92
  reasonix setup # config wizard → ./reasonix.toml
93
93
  export DEEPSEEK_API_KEY=sk-... # or let setup save it to the credential store
94
- reasonix chat # then run /init to generate AGENTS.md (project memory)
94
+ reasonix # then run /init to generate AGENTS.md (project memory)
95
95
  reasonix run "implement the TODOs in main.go"
96
96
  reasonix run --model mimo-pro "add unit tests for this function"
97
97
  echo "explain this code" | reasonix run
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.8.0",
3
+ "version": "1.9.1-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.8.0",
33
- "@reasonix/cli-darwin-x64": "1.8.0",
34
- "@reasonix/cli-linux-arm64": "1.8.0",
35
- "@reasonix/cli-linux-x64": "1.8.0",
36
- "@reasonix/cli-win32-arm64": "1.8.0",
37
- "@reasonix/cli-win32-x64": "1.8.0"
32
+ "@reasonix/cli-darwin-arm64": "1.9.1-rc.1",
33
+ "@reasonix/cli-darwin-x64": "1.9.1-rc.1",
34
+ "@reasonix/cli-linux-arm64": "1.9.1-rc.1",
35
+ "@reasonix/cli-linux-x64": "1.9.1-rc.1",
36
+ "@reasonix/cli-win32-arm64": "1.9.1-rc.1",
37
+ "@reasonix/cli-win32-x64": "1.9.1-rc.1"
38
38
  }
39
39
  }