reasonix 0.34.0 → 0.34.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-SW3CCXEV.js";
5
5
  import {
6
6
  chatCommand
7
- } from "./chunk-5SAMVHA3.js";
7
+ } from "./chunk-EINEIIIW.js";
8
8
  import "./chunk-BQNUJJN7.js";
9
9
  import "./chunk-RFX7TYVV.js";
10
10
  import "./chunk-MRLXEMZ7.js";
@@ -150,4 +150,4 @@ async function codeCommand(opts = {}) {
150
150
  export {
151
151
  codeCommand
152
152
  };
153
- //# sourceMappingURL=code-V6F4BKMG.js.map
153
+ //# sourceMappingURL=code-TGUOQBRJ.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-TL4HMNEQ.js");
133
+ const { chatCommand } = await import("./chat-TD6GR3QK.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("--system-append <prompt>", t("ui.systemAppendHint")).option("--system-append-file <path>", t("ui.systemAppendFileHint")).action(async (dir, opts) => {
147
- const { codeCommand } = await import("./code-V6F4BKMG.js");
147
+ const { codeCommand } = await import("./code-TGUOQBRJ.js");
148
148
  await codeCommand({
149
149
  dir,
150
150
  model: opts.model,
@@ -179,7 +179,7 @@ program.command("chat").description(t("cli.chat")).option("-m, --model <id>", t(
179
179
  (msg) => process.stderr.write(`${msg}
180
180
  `)
181
181
  );
182
- const { chatCommand } = await import("./chat-TL4HMNEQ.js");
182
+ const { chatCommand } = await import("./chat-TD6GR3QK.js");
183
183
  await chatCommand({
184
184
  model: defaults.model,
185
185
  system: applyMemoryStack(opts.system, process.cwd()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "0.34.0",
3
+ "version": "0.34.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": {