reasonix 1.16.2-rc.1 → 1.17.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.
- package/README.md +2 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -131,6 +131,8 @@ commands, `@` references, and two-model setup are all in the
|
|
|
131
131
|
from the desktop app, then use approvals, YOLO, and commands from IM.
|
|
132
132
|
- **[Spec](./docs/SPEC.md)** — engineering contract: architecture, registries,
|
|
133
133
|
data types, and roadmap.
|
|
134
|
+
- **[Task contracts & pause policy](./docs/TASK_CONTRACT.md)** — structure
|
|
135
|
+
complex requests with context, output boundaries, constraints, and when to ask.
|
|
134
136
|
- **[Tool contract](./docs/TOOL_CONTRACT.md)** — provider-visible built-in tool
|
|
135
137
|
names, read-only flags, and schema snapshot guard.
|
|
136
138
|
- **[Migrating from 0.x](./docs/MIGRATING.md)** — moving from the legacy
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.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.
|
|
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.17.1-rc.1",
|
|
33
|
+
"@reasonix/cli-darwin-x64": "1.17.1-rc.1",
|
|
34
|
+
"@reasonix/cli-linux-arm64": "1.17.1-rc.1",
|
|
35
|
+
"@reasonix/cli-linux-x64": "1.17.1-rc.1",
|
|
36
|
+
"@reasonix/cli-win32-arm64": "1.17.1-rc.1",
|
|
37
|
+
"@reasonix/cli-win32-x64": "1.17.1-rc.1"
|
|
38
38
|
}
|
|
39
39
|
}
|