reasonix 0.44.1 → 0.44.2-rc.2
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/dist/cli/{chat-TH7VNNCJ.js → chat-YHRGJEPE.js} +2 -2
- package/dist/cli/{chunk-Z4S7EYXG.js → chunk-5KU3SHDP.js} +20 -2
- package/dist/cli/{chunk-Z4S7EYXG.js.map → chunk-5KU3SHDP.js.map} +1 -1
- package/dist/cli/{code-PSVJ3KEN.js → code-ZOLONNDE.js} +2 -2
- package/dist/cli/index.js +3 -3
- package/package.json +6 -6
- /package/dist/cli/{chat-TH7VNNCJ.js.map → chat-YHRGJEPE.js.map} +0 -0
- /package/dist/cli/{code-PSVJ3KEN.js.map → code-ZOLONNDE.js.map} +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { createRequire as __cr } from 'node:module'; if (typeof globalThis.require === 'undefined') { globalThis.require = __cr(import.meta.url); }
|
|
3
3
|
import {
|
|
4
4
|
chatCommand
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-5KU3SHDP.js";
|
|
6
6
|
import "./chunk-TKVXTQ3T.js";
|
|
7
7
|
import "./chunk-JMBMLOBP.js";
|
|
8
8
|
import "./chunk-2V6EAEUW.js";
|
|
@@ -163,4 +163,4 @@ async function codeCommand(opts = {}) {
|
|
|
163
163
|
export {
|
|
164
164
|
codeCommand
|
|
165
165
|
};
|
|
166
|
-
//# sourceMappingURL=code-
|
|
166
|
+
//# sourceMappingURL=code-ZOLONNDE.js.map
|
package/dist/cli/index.js
CHANGED
|
@@ -3270,7 +3270,7 @@ program2.option("--node", "use the legacy Node/Ink TUI (default is the Rust rend
|
|
|
3270
3270
|
await setupCommand({ forceKeyStep: true });
|
|
3271
3271
|
return;
|
|
3272
3272
|
}
|
|
3273
|
-
const { codeCommand } = await import("./code-
|
|
3273
|
+
const { codeCommand } = await import("./code-ZOLONNDE.js");
|
|
3274
3274
|
await codeCommand({ dir: process.cwd(), forceResume: !!opts.continue });
|
|
3275
3275
|
});
|
|
3276
3276
|
program2.command("setup").description(t("cli.setup")).action(async () => {
|
|
@@ -3291,7 +3291,7 @@ program2.command("code [dir]").description(t("cli.code")).option("-m, --model <i
|
|
|
3291
3291
|
if (opts.node) process.env.REASONIX_RENDERER = "node";
|
|
3292
3292
|
const profiling = await maybeStartCpuProfile(opts.profile);
|
|
3293
3293
|
try {
|
|
3294
|
-
const { codeCommand } = await import("./code-
|
|
3294
|
+
const { codeCommand } = await import("./code-ZOLONNDE.js");
|
|
3295
3295
|
await codeCommand({
|
|
3296
3296
|
dir,
|
|
3297
3297
|
model: opts.model,
|
|
@@ -3351,7 +3351,7 @@ program2.command("chat").description(t("cli.chat")).option("-m, --model <id>", t
|
|
|
3351
3351
|
(msg) => process.stderr.write(`${msg}
|
|
3352
3352
|
`)
|
|
3353
3353
|
);
|
|
3354
|
-
const { chatCommand } = await import("./chat-
|
|
3354
|
+
const { chatCommand } = await import("./chat-YHRGJEPE.js");
|
|
3355
3355
|
const chatBase = opts.system ?? defaultSystemPrompt(defaults.model);
|
|
3356
3356
|
const chatCwd = process.cwd();
|
|
3357
3357
|
const chatRebuildSystem = () => applyMemoryStack(chatBase, chatCwd);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.2-rc.2",
|
|
4
4
|
"description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -110,10 +110,10 @@
|
|
|
110
110
|
"vitest": "^2.1.5"
|
|
111
111
|
},
|
|
112
112
|
"optionalDependencies": {
|
|
113
|
-
"@reasonix/render-darwin-arm64": "0.44.
|
|
114
|
-
"@reasonix/render-darwin-x64": "0.44.
|
|
115
|
-
"@reasonix/render-linux-arm64": "0.44.
|
|
116
|
-
"@reasonix/render-linux-x64": "0.44.
|
|
117
|
-
"@reasonix/render-win32-x64": "0.44.
|
|
113
|
+
"@reasonix/render-darwin-arm64": "0.44.2-rc.2",
|
|
114
|
+
"@reasonix/render-darwin-x64": "0.44.2-rc.2",
|
|
115
|
+
"@reasonix/render-linux-arm64": "0.44.2-rc.2",
|
|
116
|
+
"@reasonix/render-linux-x64": "0.44.2-rc.2",
|
|
117
|
+
"@reasonix/render-win32-x64": "0.44.2-rc.2"
|
|
118
118
|
}
|
|
119
119
|
}
|
|
File without changes
|
|
File without changes
|