reasonix 1.19.6 → 1.20.0

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 +9 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
   · 
12
12
  <a href="./docs/ACP.md">ACP</a>
13
13
  &nbsp;·&nbsp;
14
+ <a href="./docs/EXTENSIONS.md">Extensions</a>
15
+ &nbsp;·&nbsp;
14
16
  <a href="./docs/SPEC.md">Spec</a>
15
17
  &nbsp;·&nbsp;
16
18
  <a href="https://esengine.github.io/DeepSeek-Reasonix/">Website</a>
@@ -54,8 +56,9 @@
54
56
  - **Multi-model & composable.** DeepSeek ships as a preset; any
55
57
  OpenAI-compatible endpoint is a config entry, not new code. Optionally run
56
58
  two models together (executor + planner) in separate, cache-stable sessions.
57
- - **Plugin-driven.** External tools run as subprocesses over stdio JSON-RPC
58
- (MCP-compatible). Built-in tools self-register at compile time.
59
+ - **Plugin-driven.** MCP servers contribute tools, prompts, and resources;
60
+ Extension Protocol v1 sidecars can also intercept runtime events, contribute
61
+ Providers and structured UI, and ship versioned plugin packages.
59
62
  - **Cache-aware context maintenance.** Startup injects a small stable environment
60
63
  summary, stale tool output is snipped/pruned before summary compaction, and the
61
64
  built-in tool schema contract is documented for regression review.
@@ -151,6 +154,10 @@ For advanced CLI usage and configuration, see the **[CLI reference](./docs/CLI.m
151
154
  - **Engineering & migration:** [Spec](./docs/SPEC.md) ·
152
155
  [Task contracts & pause policy](./docs/TASK_CONTRACT.md) ·
153
156
  [Tool contract](./docs/TOOL_CONTRACT.md) · [Migrating from 0.x](./docs/MIGRATING.md)
157
+ - **Extension development:** [Extensions](./docs/EXTENSIONS.md) ·
158
+ [Plugin packages and Manifest v1](./docs/PLUGIN_PACKAGES.md) ·
159
+ [Extension Protocol](./docs/EXTENSION_PROTOCOL.md) ·
160
+ [Go SDK and starter](./sdk/go/README.md)
154
161
 
155
162
  ## Star History
156
163
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "1.19.6",
3
+ "version": "1.20.0",
4
4
  "description": "Cache-first DeepSeek coding agent for the terminal.",
5
5
  "bin": {
6
6
  "reasonix": "bin/reasonix.js"
@@ -29,12 +29,12 @@
29
29
  "tui"
30
30
  ],
31
31
  "optionalDependencies": {
32
- "@reasonix/cli-darwin-arm64": "1.19.6",
33
- "@reasonix/cli-darwin-x64": "1.19.6",
34
- "@reasonix/cli-linux-arm64": "1.19.6",
35
- "@reasonix/cli-linux-x64": "1.19.6",
36
- "@reasonix/cli-win32-arm64": "1.19.6",
37
- "@reasonix/cli-win32-x64": "1.19.6"
32
+ "@reasonix/cli-darwin-arm64": "1.20.0",
33
+ "@reasonix/cli-darwin-x64": "1.20.0",
34
+ "@reasonix/cli-linux-arm64": "1.20.0",
35
+ "@reasonix/cli-linux-x64": "1.20.0",
36
+ "@reasonix/cli-win32-arm64": "1.20.0",
37
+ "@reasonix/cli-win32-x64": "1.20.0"
38
38
  },
39
- "reasonixCandidateSha": "f24b095fcbf8f0b210d71e0aceaef3e43230ba8b"
39
+ "reasonixCandidateSha": "260c89709ecb597d46e4c76322f96f8d6d1b573e"
40
40
  }