reasonix 0.44.0 → 0.44.2-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.
@@ -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-Z4S7EYXG.js";
5
+ } from "./chunk-WF6BGFJH.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-PSVJ3KEN.js.map
166
+ //# sourceMappingURL=code-XLW74VSJ.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-PSVJ3KEN.js");
3273
+ const { codeCommand } = await import("./code-XLW74VSJ.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-PSVJ3KEN.js");
3294
+ const { codeCommand } = await import("./code-XLW74VSJ.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-TH7VNNCJ.js");
3354
+ const { chatCommand } = await import("./chat-X2WVADEO.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.0",
3
+ "version": "0.44.2-rc.1",
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.0",
114
- "@reasonix/render-darwin-x64": "0.44.0",
115
- "@reasonix/render-linux-arm64": "0.44.0",
116
- "@reasonix/render-linux-x64": "0.44.0",
117
- "@reasonix/render-win32-x64": "0.44.0"
113
+ "@reasonix/render-darwin-arm64": "0.44.2-rc.1",
114
+ "@reasonix/render-darwin-x64": "0.44.2-rc.1",
115
+ "@reasonix/render-linux-arm64": "0.44.2-rc.1",
116
+ "@reasonix/render-linux-x64": "0.44.2-rc.1",
117
+ "@reasonix/render-win32-x64": "0.44.2-rc.1"
118
118
  }
119
119
  }