reasonix 0.36.0 → 0.36.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.
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-4Q3GRJIU.js";
5
5
  import {
6
6
  chatCommand
7
- } from "./chunk-EN4LAZW5.js";
7
+ } from "./chunk-3OBWN2NH.js";
8
8
  import "./chunk-BQNUJJN7.js";
9
9
  import {
10
10
  preflightStdioSpec
@@ -432,4 +432,4 @@ async function codeCommand(opts = {}) {
432
432
  export {
433
433
  codeCommand
434
434
  };
435
- //# sourceMappingURL=code-KJB3WDU6.js.map
435
+ //# sourceMappingURL=code-SWI4EBME.js.map
package/dist/cli/index.js CHANGED
@@ -130,7 +130,7 @@ program.action(async (opts) => {
130
130
  (msg) => process.stderr.write(`${msg}
131
131
  `)
132
132
  );
133
- const { chatCommand } = await import("./chat-RGMYAOY2.js");
133
+ const { chatCommand } = await import("./chat-7AF5SPAJ.js");
134
134
  await chatCommand({
135
135
  model: defaults.model,
136
136
  system: applyMemoryStack(DEFAULT_SYSTEM, process.cwd()),
@@ -144,7 +144,7 @@ program.command("setup").description(t("cli.setup")).action(async () => {
144
144
  await setupCommand({});
145
145
  });
146
146
  program.command("code [dir]").description(t("cli.code")).option("-m, --model <id>", t("ui.modelOverride")).option("--no-session", t("ui.noSession")).option("-r, --resume", t("ui.resumeHint")).option("-n, --new", t("ui.newHint")).option("--transcript <path>", t("ui.transcriptHint")).option("--budget <usd>", t("ui.budgetHint"), (v) => Number.parseFloat(v)).option("--no-dashboard", t("ui.noDashboard")).option("--no-alt-screen", "keep chat output in shell scrollback (legacy mode, ghost-prone)").option("--no-mouse", "disable SGR mouse tracking (keeps drag-select 100% native)").option("--system-append <prompt>", t("ui.systemAppendHint")).option("--system-append-file <path>", t("ui.systemAppendFileHint")).action(async (dir, opts) => {
147
- const { codeCommand } = await import("./code-KJB3WDU6.js");
147
+ const { codeCommand } = await import("./code-SWI4EBME.js");
148
148
  await codeCommand({
149
149
  dir,
150
150
  model: opts.model,
@@ -180,7 +180,7 @@ program.command("chat").description(t("cli.chat")).option("-m, --model <id>", t(
180
180
  (msg) => process.stderr.write(`${msg}
181
181
  `)
182
182
  );
183
- const { chatCommand } = await import("./chat-RGMYAOY2.js");
183
+ const { chatCommand } = await import("./chat-7AF5SPAJ.js");
184
184
  await chatCommand({
185
185
  model: defaults.model,
186
186
  system: applyMemoryStack(opts.system, process.cwd()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "0.36.0",
3
+ "version": "0.36.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": {