@proxysoul/soulforge 2.20.14 → 2.20.15
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/index.js +27 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -72068,7 +72068,7 @@ var package_default;
|
|
|
72068
72068
|
var init_package = __esm(() => {
|
|
72069
72069
|
package_default = {
|
|
72070
72070
|
name: "@proxysoul/soulforge",
|
|
72071
|
-
version: "2.20.
|
|
72071
|
+
version: "2.20.15",
|
|
72072
72072
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
72073
72073
|
repository: {
|
|
72074
72074
|
type: "git",
|
|
@@ -404104,7 +404104,7 @@ function restoreTerminal() {
|
|
|
404104
404104
|
}
|
|
404105
404105
|
} catch {}
|
|
404106
404106
|
try {
|
|
404107
|
-
process.stdout.write("\x1B[?25h\x1B[0m");
|
|
404107
|
+
process.stdout.write("\x1B[?2048l\x1B[?25h\x1B[0m");
|
|
404108
404108
|
} catch {}
|
|
404109
404109
|
}
|
|
404110
404110
|
function runCleanup() {
|
|
@@ -404409,6 +404409,31 @@ async function start2(opts) {
|
|
|
404409
404409
|
} catch {}
|
|
404410
404410
|
r.setMaxListeners(30);
|
|
404411
404411
|
r.keyInput.setMaxListeners(30);
|
|
404412
|
+
if (process.stdout.isTTY) {
|
|
404413
|
+
r.addInputHandler((sequence) => {
|
|
404414
|
+
const m2 = sequence.match(/^\x1b\[48;(\d+);(\d+)(?:;\d+;\d+)?t$/);
|
|
404415
|
+
if (!m2?.[1] || !m2[2])
|
|
404416
|
+
return false;
|
|
404417
|
+
const rows = Number.parseInt(m2[1], 10);
|
|
404418
|
+
const cols = Number.parseInt(m2[2], 10);
|
|
404419
|
+
if (rows > 0 && cols > 0)
|
|
404420
|
+
r.resize(cols, rows);
|
|
404421
|
+
return true;
|
|
404422
|
+
});
|
|
404423
|
+
process.stdout.write("\x1B[?2048h");
|
|
404424
|
+
const resizePoll = setInterval(() => {
|
|
404425
|
+
try {
|
|
404426
|
+
const cols = process.stdout.columns;
|
|
404427
|
+
const rows = process.stdout.rows;
|
|
404428
|
+
if (!cols || !rows)
|
|
404429
|
+
return;
|
|
404430
|
+
if (cols !== r.terminalWidth || rows !== r.terminalHeight) {
|
|
404431
|
+
r.resize(cols, rows);
|
|
404432
|
+
}
|
|
404433
|
+
} catch {}
|
|
404434
|
+
}, 1000);
|
|
404435
|
+
resizePoll.unref?.();
|
|
404436
|
+
}
|
|
404412
404437
|
{
|
|
404413
404438
|
const { extend: extend3 } = await init_react2().then(() => exports_react);
|
|
404414
404439
|
const { TextTableRenderable } = await import("@opentui/core");
|