reasonix 1.17.11 → 1.17.13

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 +7 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -86,7 +86,8 @@ make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
86
86
  ## Quick start
87
87
 
88
88
  ```sh
89
- reasonix setup # config wizard ./reasonix.toml
89
+ reasonix setup # manage providers in the user config
90
+ reasonix setup --local # optional: manage ./reasonix.toml
90
91
  export DEEPSEEK_API_KEY=sk-... # or let setup save it to Reasonix home .env
91
92
  reasonix # then run /init to generate AGENTS.md (project memory)
92
93
  reasonix run "implement the TODOs in main.go"
@@ -125,6 +126,8 @@ commands, `@` references, and two-model setup are all in the
125
126
 
126
127
  ## Documentation
127
128
 
129
+ - **[CLI reference](./docs/CLI.md)** — interactive and one-shot commands,
130
+ structured output, resume, permission modes, and searchable pickers.
128
131
  - **[Guide](./docs/GUIDE.md)** — configuration, permissions & sandbox, plugins
129
132
  (MCP), slash commands, `@` references, two-model collaboration.
130
133
  - **[Subagent profiles](./docs/SUBAGENT_PROFILES.md)** — create, share, preview,
@@ -132,6 +135,9 @@ commands, `@` references, and two-model setup are all in the
132
135
  - **[Capability diagnostics](./docs/CAPABILITY_DIAGNOSTICS.md)** —
133
136
  `reasonix doctor capabilities`, desktop Settings → Diagnostics, and the
134
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.
135
141
  - **[Bot guide](./docs/BOT_GUIDE.md)** — connect Feishu, Lark, and WeChat bots
136
142
  from the desktop app, then use approvals, YOLO, and commands from IM.
137
143
  - **[Spec](./docs/SPEC.md)** — engineering contract: architecture, registries,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.17.11",
3
+ "version": "1.17.13",
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.11",
33
- "@reasonix/cli-darwin-x64": "1.17.11",
34
- "@reasonix/cli-linux-arm64": "1.17.11",
35
- "@reasonix/cli-linux-x64": "1.17.11",
36
- "@reasonix/cli-win32-arm64": "1.17.11",
37
- "@reasonix/cli-win32-x64": "1.17.11"
32
+ "@reasonix/cli-darwin-arm64": "1.17.13",
33
+ "@reasonix/cli-darwin-x64": "1.17.13",
34
+ "@reasonix/cli-linux-arm64": "1.17.13",
35
+ "@reasonix/cli-linux-x64": "1.17.13",
36
+ "@reasonix/cli-win32-arm64": "1.17.13",
37
+ "@reasonix/cli-win32-x64": "1.17.13"
38
38
  }
39
39
  }