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.
- package/README.md +17 -0
- package/README.zh-CN.md +17 -0
- package/dist/cli/{chat-RGMYAOY2.js → chat-7AF5SPAJ.js} +2 -2
- package/dist/cli/{chunk-EN4LAZW5.js → chunk-3OBWN2NH.js} +348 -317
- package/dist/cli/chunk-3OBWN2NH.js.map +1 -0
- package/dist/cli/{code-KJB3WDU6.js → code-SWI4EBME.js} +2 -2
- package/dist/cli/index.js +3 -3
- package/package.json +1 -1
- package/dist/cli/chunk-EN4LAZW5.js.map +0 -1
- /package/dist/cli/{chat-RGMYAOY2.js.map → chat-7AF5SPAJ.js.map} +0 -0
- /package/dist/cli/{code-KJB3WDU6.js.map → code-SWI4EBME.js.map} +0 -0
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-4Q3GRJIU.js";
|
|
5
5
|
import {
|
|
6
6
|
chatCommand
|
|
7
|
-
} from "./chunk-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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()),
|