reasonix 1.19.7 → 1.21.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.
- package/README.md +11 -3
- 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
|
·
|
|
14
|
+
<a href="./docs/EXTENSIONS.md">Extensions</a>
|
|
15
|
+
·
|
|
14
16
|
<a href="./docs/SPEC.md">Spec</a>
|
|
15
17
|
·
|
|
16
18
|
<a href="https://esengine.github.io/DeepSeek-Reasonix/">Website</a>
|
|
@@ -54,13 +56,15 @@
|
|
|
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.**
|
|
58
|
-
|
|
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.
|
|
62
65
|
- **Zero-friction distribution.** `CGO_ENABLED=0` single binary; cross-compile
|
|
63
|
-
to six targets with one command. The
|
|
66
|
+
to six targets with one command. The result is a fully self-contained static
|
|
67
|
+
binary — nothing to install on the target machine beyond the binary itself.
|
|
64
68
|
|
|
65
69
|
## Install
|
|
66
70
|
|
|
@@ -151,6 +155,10 @@ For advanced CLI usage and configuration, see the **[CLI reference](./docs/CLI.m
|
|
|
151
155
|
- **Engineering & migration:** [Spec](./docs/SPEC.md) ·
|
|
152
156
|
[Task contracts & pause policy](./docs/TASK_CONTRACT.md) ·
|
|
153
157
|
[Tool contract](./docs/TOOL_CONTRACT.md) · [Migrating from 0.x](./docs/MIGRATING.md)
|
|
158
|
+
- **Extension development:** [Extensions](./docs/EXTENSIONS.md) ·
|
|
159
|
+
[Plugin packages and Manifest v1](./docs/PLUGIN_PACKAGES.md) ·
|
|
160
|
+
[Extension Protocol](./docs/EXTENSION_PROTOCOL.md) ·
|
|
161
|
+
[Go SDK and starter](./sdk/go/README.md)
|
|
154
162
|
|
|
155
163
|
## Star History
|
|
156
164
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.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.
|
|
33
|
-
"@reasonix/cli-darwin-x64": "1.
|
|
34
|
-
"@reasonix/cli-linux-arm64": "1.
|
|
35
|
-
"@reasonix/cli-linux-x64": "1.
|
|
36
|
-
"@reasonix/cli-win32-arm64": "1.
|
|
37
|
-
"@reasonix/cli-win32-x64": "1.
|
|
32
|
+
"@reasonix/cli-darwin-arm64": "1.21.0",
|
|
33
|
+
"@reasonix/cli-darwin-x64": "1.21.0",
|
|
34
|
+
"@reasonix/cli-linux-arm64": "1.21.0",
|
|
35
|
+
"@reasonix/cli-linux-x64": "1.21.0",
|
|
36
|
+
"@reasonix/cli-win32-arm64": "1.21.0",
|
|
37
|
+
"@reasonix/cli-win32-x64": "1.21.0"
|
|
38
38
|
},
|
|
39
|
-
"reasonixCandidateSha": "
|
|
39
|
+
"reasonixCandidateSha": "3f7dbfff0c01a2ae878c78bbcf7c02f06e1c20de"
|
|
40
40
|
}
|