reasonix 0.33.0 → 0.33.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/dist/cli/{chat-EIFLHBZ6.js → chat-Q5ZCVIOO.js} +3 -3
- package/dist/cli/{chunk-Q5GRLZJF.js → chunk-63KAV5DX.js} +8 -1
- package/dist/cli/{chunk-Q5GRLZJF.js.map → chunk-63KAV5DX.js.map} +1 -1
- package/dist/cli/{chunk-LVQX5KGF.js → chunk-MDHVWCJ4.js} +36 -5
- package/dist/cli/chunk-MDHVWCJ4.js.map +1 -0
- package/dist/cli/{code-F4KJOE3K.js → code-DLR77NPZ.js} +3 -3
- package/dist/cli/index.js +4 -4
- package/dist/cli/{replay-TMJASRC4.js → replay-Q43DSMG6.js} +2 -2
- package/package.json +1 -1
- package/dist/cli/chunk-LVQX5KGF.js.map +0 -1
- /package/dist/cli/{chat-EIFLHBZ6.js.map → chat-Q5ZCVIOO.js.map} +0 -0
- /package/dist/cli/{code-F4KJOE3K.js.map → code-DLR77NPZ.js.map} +0 -0
- /package/dist/cli/{replay-TMJASRC4.js.map → replay-Q43DSMG6.js.map} +0 -0
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
} from "./chunk-J5VLP23S.js";
|
|
5
5
|
import {
|
|
6
6
|
chatCommand
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-MDHVWCJ4.js";
|
|
8
8
|
import "./chunk-BQNUJJN7.js";
|
|
9
9
|
import "./chunk-RFX7TYVV.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-63KAV5DX.js";
|
|
11
11
|
import {
|
|
12
12
|
markPhase
|
|
13
13
|
} from "./chunk-CPOV2O73.js";
|
|
@@ -148,4 +148,4 @@ async function codeCommand(opts = {}) {
|
|
|
148
148
|
export {
|
|
149
149
|
codeCommand
|
|
150
150
|
};
|
|
151
|
-
//# sourceMappingURL=code-
|
|
151
|
+
//# sourceMappingURL=code-DLR77NPZ.js.map
|
package/dist/cli/index.js
CHANGED
|
@@ -128,7 +128,7 @@ program.action(async (opts) => {
|
|
|
128
128
|
(msg) => process.stderr.write(`${msg}
|
|
129
129
|
`)
|
|
130
130
|
);
|
|
131
|
-
const { chatCommand } = await import("./chat-
|
|
131
|
+
const { chatCommand } = await import("./chat-Q5ZCVIOO.js");
|
|
132
132
|
await chatCommand({
|
|
133
133
|
model: defaults.model,
|
|
134
134
|
system: applyMemoryStack(DEFAULT_SYSTEM, process.cwd()),
|
|
@@ -142,7 +142,7 @@ program.command("setup").description(t("cli.setup")).action(async () => {
|
|
|
142
142
|
await setupCommand({});
|
|
143
143
|
});
|
|
144
144
|
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) => {
|
|
145
|
-
const { codeCommand } = await import("./code-
|
|
145
|
+
const { codeCommand } = await import("./code-DLR77NPZ.js");
|
|
146
146
|
await codeCommand({
|
|
147
147
|
dir,
|
|
148
148
|
model: opts.model,
|
|
@@ -177,7 +177,7 @@ program.command("chat").description(t("cli.chat")).option("-m, --model <id>", t(
|
|
|
177
177
|
(msg) => process.stderr.write(`${msg}
|
|
178
178
|
`)
|
|
179
179
|
);
|
|
180
|
-
const { chatCommand } = await import("./chat-
|
|
180
|
+
const { chatCommand } = await import("./chat-Q5ZCVIOO.js");
|
|
181
181
|
await chatCommand({
|
|
182
182
|
model: defaults.model,
|
|
183
183
|
system: applyMemoryStack(opts.system, process.cwd()),
|
|
@@ -247,7 +247,7 @@ program.command("events <name>").description(t("cli.events")).option("--type <ty
|
|
|
247
247
|
});
|
|
248
248
|
});
|
|
249
249
|
program.command("replay <transcript>").description(t("cli.replay")).option("--print", t("ui.printHint")).option("--head <n>", t("ui.headHint"), (v) => Number.parseInt(v, 10)).option("--tail <n>", t("ui.tailHint"), (v) => Number.parseInt(v, 10)).action(async (transcript, opts) => {
|
|
250
|
-
const { replayCommand } = await import("./replay-
|
|
250
|
+
const { replayCommand } = await import("./replay-Q43DSMG6.js");
|
|
251
251
|
await replayCommand({
|
|
252
252
|
path: transcript,
|
|
253
253
|
print: !!opts.print,
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
ChromeRule,
|
|
8
8
|
formatBalance,
|
|
9
9
|
formatCost
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-63KAV5DX.js";
|
|
11
11
|
import {
|
|
12
12
|
computeCumulativeStats,
|
|
13
13
|
groupRecordsByTurn,
|
|
@@ -270,4 +270,4 @@ function oneLine(s, max = 200) {
|
|
|
270
270
|
export {
|
|
271
271
|
replayCommand
|
|
272
272
|
};
|
|
273
|
-
//# sourceMappingURL=replay-
|
|
273
|
+
//# sourceMappingURL=replay-Q43DSMG6.js.map
|