@metaphi-ai/hum 0.1.20 → 0.1.21
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.mjs +139 -106
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -22744,10 +22744,10 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22744
22744
|
var setErrorHandler = null;
|
|
22745
22745
|
var setSuspenseHandler = null;
|
|
22746
22746
|
{
|
|
22747
|
-
var copyWithDeleteImpl = function(obj,
|
|
22748
|
-
var key =
|
|
22747
|
+
var copyWithDeleteImpl = function(obj, path4, index2) {
|
|
22748
|
+
var key = path4[index2];
|
|
22749
22749
|
var updated = isArray(obj) ? obj.slice() : assign({}, obj);
|
|
22750
|
-
if (index2 + 1 ===
|
|
22750
|
+
if (index2 + 1 === path4.length) {
|
|
22751
22751
|
if (isArray(updated)) {
|
|
22752
22752
|
updated.splice(key, 1);
|
|
22753
22753
|
} else {
|
|
@@ -22755,11 +22755,11 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22755
22755
|
}
|
|
22756
22756
|
return updated;
|
|
22757
22757
|
}
|
|
22758
|
-
updated[key] = copyWithDeleteImpl(obj[key],
|
|
22758
|
+
updated[key] = copyWithDeleteImpl(obj[key], path4, index2 + 1);
|
|
22759
22759
|
return updated;
|
|
22760
22760
|
};
|
|
22761
|
-
var copyWithDelete = function(obj,
|
|
22762
|
-
return copyWithDeleteImpl(obj,
|
|
22761
|
+
var copyWithDelete = function(obj, path4) {
|
|
22762
|
+
return copyWithDeleteImpl(obj, path4, 0);
|
|
22763
22763
|
};
|
|
22764
22764
|
var copyWithRenameImpl = function(obj, oldPath, newPath, index2) {
|
|
22765
22765
|
var oldKey = oldPath[index2];
|
|
@@ -22797,17 +22797,17 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22797
22797
|
}
|
|
22798
22798
|
return copyWithRenameImpl(obj, oldPath, newPath, 0);
|
|
22799
22799
|
};
|
|
22800
|
-
var copyWithSetImpl = function(obj,
|
|
22801
|
-
if (index2 >=
|
|
22800
|
+
var copyWithSetImpl = function(obj, path4, index2, value) {
|
|
22801
|
+
if (index2 >= path4.length) {
|
|
22802
22802
|
return value;
|
|
22803
22803
|
}
|
|
22804
|
-
var key =
|
|
22804
|
+
var key = path4[index2];
|
|
22805
22805
|
var updated = isArray(obj) ? obj.slice() : assign({}, obj);
|
|
22806
|
-
updated[key] = copyWithSetImpl(obj[key],
|
|
22806
|
+
updated[key] = copyWithSetImpl(obj[key], path4, index2 + 1, value);
|
|
22807
22807
|
return updated;
|
|
22808
22808
|
};
|
|
22809
|
-
var copyWithSet = function(obj,
|
|
22810
|
-
return copyWithSetImpl(obj,
|
|
22809
|
+
var copyWithSet = function(obj, path4, value) {
|
|
22810
|
+
return copyWithSetImpl(obj, path4, 0, value);
|
|
22811
22811
|
};
|
|
22812
22812
|
var findHook = function(fiber, id) {
|
|
22813
22813
|
var currentHook2 = fiber.memoizedState;
|
|
@@ -22817,10 +22817,10 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22817
22817
|
}
|
|
22818
22818
|
return currentHook2;
|
|
22819
22819
|
};
|
|
22820
|
-
overrideHookState = function(fiber, id,
|
|
22820
|
+
overrideHookState = function(fiber, id, path4, value) {
|
|
22821
22821
|
var hook = findHook(fiber, id);
|
|
22822
22822
|
if (hook !== null) {
|
|
22823
|
-
var newState = copyWithSet(hook.memoizedState,
|
|
22823
|
+
var newState = copyWithSet(hook.memoizedState, path4, value);
|
|
22824
22824
|
hook.memoizedState = newState;
|
|
22825
22825
|
hook.baseState = newState;
|
|
22826
22826
|
fiber.memoizedProps = assign({}, fiber.memoizedProps);
|
|
@@ -22830,10 +22830,10 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22830
22830
|
}
|
|
22831
22831
|
}
|
|
22832
22832
|
};
|
|
22833
|
-
overrideHookStateDeletePath = function(fiber, id,
|
|
22833
|
+
overrideHookStateDeletePath = function(fiber, id, path4) {
|
|
22834
22834
|
var hook = findHook(fiber, id);
|
|
22835
22835
|
if (hook !== null) {
|
|
22836
|
-
var newState = copyWithDelete(hook.memoizedState,
|
|
22836
|
+
var newState = copyWithDelete(hook.memoizedState, path4);
|
|
22837
22837
|
hook.memoizedState = newState;
|
|
22838
22838
|
hook.baseState = newState;
|
|
22839
22839
|
fiber.memoizedProps = assign({}, fiber.memoizedProps);
|
|
@@ -22856,8 +22856,8 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22856
22856
|
}
|
|
22857
22857
|
}
|
|
22858
22858
|
};
|
|
22859
|
-
overrideProps = function(fiber,
|
|
22860
|
-
fiber.pendingProps = copyWithSet(fiber.memoizedProps,
|
|
22859
|
+
overrideProps = function(fiber, path4, value) {
|
|
22860
|
+
fiber.pendingProps = copyWithSet(fiber.memoizedProps, path4, value);
|
|
22861
22861
|
if (fiber.alternate) {
|
|
22862
22862
|
fiber.alternate.pendingProps = fiber.pendingProps;
|
|
22863
22863
|
}
|
|
@@ -22866,8 +22866,8 @@ var require_react_reconciler_development = __commonJS({
|
|
|
22866
22866
|
scheduleUpdateOnFiber(root, fiber, SyncLane, NoTimestamp);
|
|
22867
22867
|
}
|
|
22868
22868
|
};
|
|
22869
|
-
overridePropsDeletePath = function(fiber,
|
|
22870
|
-
fiber.pendingProps = copyWithDelete(fiber.memoizedProps,
|
|
22869
|
+
overridePropsDeletePath = function(fiber, path4) {
|
|
22870
|
+
fiber.pendingProps = copyWithDelete(fiber.memoizedProps, path4);
|
|
22871
22871
|
if (fiber.alternate) {
|
|
22872
22872
|
fiber.alternate.pendingProps = fiber.pendingProps;
|
|
22873
22873
|
}
|
|
@@ -73569,15 +73569,15 @@ var require_route = __commonJS({
|
|
|
73569
73569
|
};
|
|
73570
73570
|
}
|
|
73571
73571
|
function wrapConversion(toModel, graph) {
|
|
73572
|
-
const
|
|
73572
|
+
const path4 = [graph[toModel].parent, toModel];
|
|
73573
73573
|
let fn = conversions[graph[toModel].parent][toModel];
|
|
73574
73574
|
let cur = graph[toModel].parent;
|
|
73575
73575
|
while (graph[cur].parent) {
|
|
73576
|
-
|
|
73576
|
+
path4.unshift(graph[cur].parent);
|
|
73577
73577
|
fn = link3(conversions[graph[cur].parent][cur], fn);
|
|
73578
73578
|
cur = graph[cur].parent;
|
|
73579
73579
|
}
|
|
73580
|
-
fn.conversion =
|
|
73580
|
+
fn.conversion = path4;
|
|
73581
73581
|
return fn;
|
|
73582
73582
|
}
|
|
73583
73583
|
module.exports = function(fromModel) {
|
|
@@ -80406,8 +80406,8 @@ function Text({ color, backgroundColor, dimColor = false, bold = false, italic =
|
|
|
80406
80406
|
}
|
|
80407
80407
|
|
|
80408
80408
|
// node_modules/ink/build/components/ErrorOverview.js
|
|
80409
|
-
var cleanupPath = (
|
|
80410
|
-
return
|
|
80409
|
+
var cleanupPath = (path4) => {
|
|
80410
|
+
return path4?.replace(`file://${cwd()}/`, "");
|
|
80411
80411
|
};
|
|
80412
80412
|
var stackUtils = new import_stack_utils.default({
|
|
80413
80413
|
cwd: cwd(),
|
|
@@ -83844,6 +83844,23 @@ var fmtDur = (s) => s < 60 ? `${Math.max(1, Math.round(s))}s` : `${Math.floor(s
|
|
|
83844
83844
|
var plural = (n, w) => `${n} ${w}${n === 1 ? "" : "s"}`;
|
|
83845
83845
|
var firstResp = (e) => e.first_response_s ? ` \xB7 first response ${e.first_response_s.toFixed(1)}s` : "";
|
|
83846
83846
|
var shortSession = (name) => (name || "").replace(/\.jsonl$/, "");
|
|
83847
|
+
var PICKER_ROWS = 8;
|
|
83848
|
+
var sessionRows = (p, here) => {
|
|
83849
|
+
const q = p.query.trim().toLowerCase();
|
|
83850
|
+
const all = p.all.map((it) => ({ ...it, dir: it.cwd ? path2.basename(it.cwd) : "" }));
|
|
83851
|
+
const inHere = all.filter((it) => it.cwd && here && it.cwd === here);
|
|
83852
|
+
const scope = p.scope === "here" && inHere.length ? "here" : "all";
|
|
83853
|
+
let rows = all;
|
|
83854
|
+
if (scope === "here") rows = inHere;
|
|
83855
|
+
else {
|
|
83856
|
+
const order = [];
|
|
83857
|
+
for (const it of all) if (!order.includes(it.cwd || "")) order.push(it.cwd || "");
|
|
83858
|
+
if (here && order.includes(here)) order.splice(0, 0, ...order.splice(order.indexOf(here), 1));
|
|
83859
|
+
rows = [...all].sort((a, b) => order.indexOf(a.cwd || "") - order.indexOf(b.cwd || ""));
|
|
83860
|
+
}
|
|
83861
|
+
if (q) rows = rows.filter((it) => [it.instruction, it.dir, it.name, it.model].some((v) => (v || "").toLowerCase().includes(q)));
|
|
83862
|
+
return { rows, scope };
|
|
83863
|
+
};
|
|
83847
83864
|
var homeRel = (p) => {
|
|
83848
83865
|
const h = os4.homedir();
|
|
83849
83866
|
return p && h && p.startsWith(h) ? "~" + p.slice(h.length) : p;
|
|
@@ -83891,10 +83908,10 @@ var COMMANDS = [
|
|
|
83891
83908
|
{ name: "/tools", desc: "the tools the model has, and the sandbox they run in" },
|
|
83892
83909
|
{ name: "/hooks", desc: "the lifecycle hooks in scope (~/.hum/hooks.json, <repo>/.hum/hooks.json; Claude Code and Codex hook files too)" },
|
|
83893
83910
|
{ name: "/help", desc: "keys and commands" },
|
|
83894
|
-
{ name: "/quit", desc: "leave; the session keeps running (hum brings you back)" },
|
|
83911
|
+
{ name: "/quit", desc: "leave; the session keeps running (hum resume brings you back)" },
|
|
83895
83912
|
{ name: "/stop", desc: "end this session's engine (the record is saved)" }
|
|
83896
83913
|
];
|
|
83897
|
-
var HELP = "!cmd runs a command as you \xB7 esc interrupts the model (what it had is kept) \xB7 type while it works to steer \xB7 edit files in your editor any time (recorded as your turn) \xB7 ctrl+o shows the full output of the last tool result \xB7 ctrl+v pastes a screenshot from the clipboard \xB7 @path.png or /image <path> attaches an image file \xB7 commands run in a sandbox (writes in the working directory, no network); leaving it asks you first (enter approves, a typed reason rejects) \xB7 /approve makes every change and command wait for you \xB7 /mcp lists the tool servers \xB7 /resume picks a past session (a running one attaches) \xB7 /compact restarts the context from a summary \xB7 ctrl+c twice leaves and the session keeps running (`hum` brings you back) \xB7 /stop ends it";
|
|
83914
|
+
var HELP = "!cmd runs a command as you \xB7 esc interrupts the model (what it had is kept) \xB7 type while it works to steer \xB7 edit files in your editor any time (recorded as your turn) \xB7 ctrl+o shows the full output of the last tool result \xB7 ctrl+v pastes a screenshot from the clipboard \xB7 @path.png or /image <path> attaches an image file \xB7 commands run in a sandbox (writes in the working directory, no network); leaving it asks you first (enter approves, a typed reason rejects) \xB7 /approve makes every change and command wait for you \xB7 /mcp lists the tool servers \xB7 /resume picks a past session (a running one attaches) \xB7 /compact restarts the context from a summary \xB7 ctrl+c twice leaves and the session keeps running (`hum resume` brings you back) \xB7 /stop ends it";
|
|
83898
83915
|
var DIFF_TAIL_LINES = 20;
|
|
83899
83916
|
var OUTPUT_MAX_LINES = 200;
|
|
83900
83917
|
var ERR_TAIL_LINES = 5;
|
|
@@ -84027,7 +84044,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84027
84044
|
} else setPhaseBoth("idle");
|
|
84028
84045
|
if (resume === "pick") engine2.send({ cmd: "sessions" });
|
|
84029
84046
|
} else if (task) {
|
|
84030
|
-
if (images.length && !ev.images) append({ kind: "warn", text: "this
|
|
84047
|
+
if (images.length && !ev.images) append({ kind: "warn", text: "this version of hum does not take images; update hum" });
|
|
84031
84048
|
engine2.send({ cmd: "start", task, images: ev.images ? images : [] });
|
|
84032
84049
|
} else if (resume === "pick") {
|
|
84033
84050
|
setPhaseBoth("idle");
|
|
@@ -84036,7 +84053,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84036
84053
|
else {
|
|
84037
84054
|
setPhaseBoth("idle");
|
|
84038
84055
|
if (ev.images) images.forEach((p) => engine2.send({ cmd: "attach", path: p }));
|
|
84039
|
-
else if (images.length) append({ kind: "warn", text: "this
|
|
84056
|
+
else if (images.length) append({ kind: "warn", text: "this version of hum does not take images; update hum" });
|
|
84040
84057
|
}
|
|
84041
84058
|
break;
|
|
84042
84059
|
}
|
|
@@ -84122,7 +84139,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84122
84139
|
append({ kind: "info", text: "no sessions yet" });
|
|
84123
84140
|
break;
|
|
84124
84141
|
}
|
|
84125
|
-
setPicker({ kind: "session",
|
|
84142
|
+
setPicker({ kind: "session", all: ev.items, index: 0, top: 0, query: "", scope: "here" });
|
|
84126
84143
|
break;
|
|
84127
84144
|
case "models": {
|
|
84128
84145
|
if (!ev.items || ev.items.length === 0) {
|
|
@@ -84285,7 +84302,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84285
84302
|
setStatus("");
|
|
84286
84303
|
break;
|
|
84287
84304
|
case "bye":
|
|
84288
|
-
if (ev.gone && phaseRef.current !== "dead") append({ kind: "error", text: "
|
|
84305
|
+
if (ev.gone && phaseRef.current !== "dead") append({ kind: "error", text: "the session's process went away \xB7 `hum resume` brings it back" });
|
|
84289
84306
|
setPhaseBoth("dead");
|
|
84290
84307
|
exit();
|
|
84291
84308
|
break;
|
|
@@ -84299,7 +84316,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84299
84316
|
(0, import_react24.useEffect)(() => {
|
|
84300
84317
|
if (!hello) return void 0;
|
|
84301
84318
|
let live = true;
|
|
84302
|
-
updateNotice(true ? "0.1.
|
|
84319
|
+
updateNotice(true ? "0.1.21" : hello.version || "0.0.0").then((line) => {
|
|
84303
84320
|
if (live && line) append({ kind: "info", text: line });
|
|
84304
84321
|
}).catch(() => {
|
|
84305
84322
|
});
|
|
@@ -84310,12 +84327,10 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84310
84327
|
const quit = () => {
|
|
84311
84328
|
if (phaseRef.current === "dead") return;
|
|
84312
84329
|
const busy = phaseRef.current === "busy";
|
|
84313
|
-
append({ kind: "info", text: !session ? "bye" : busy ? "still working \xB7 `hum` brings you back" : `saved \xB7 \`hum\` brings you back` });
|
|
84330
|
+
append({ kind: "info", text: !session ? "bye" : busy ? "still working \xB7 `hum resume` brings you back" : `saved \xB7 \`hum resume\` brings you back` });
|
|
84314
84331
|
engine2.send({ cmd: "quit" });
|
|
84315
|
-
|
|
84316
|
-
|
|
84317
|
-
exit();
|
|
84318
|
-
}, 400);
|
|
84332
|
+
setPhaseBoth("dead");
|
|
84333
|
+
setTimeout(() => exit(), 400);
|
|
84319
84334
|
};
|
|
84320
84335
|
const stop = () => {
|
|
84321
84336
|
if (phaseRef.current === "dead") return;
|
|
@@ -84366,28 +84381,44 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84366
84381
|
return;
|
|
84367
84382
|
}
|
|
84368
84383
|
}
|
|
84369
|
-
if (picker) {
|
|
84384
|
+
if (picker && picker.kind === "model") {
|
|
84385
|
+
const it = picker.items[picker.index];
|
|
84386
|
+
const pick = (isDefault) => {
|
|
84387
|
+
setPicker(null);
|
|
84388
|
+
if (it.current && !isDefault) return;
|
|
84389
|
+
modelRef.current = it.name;
|
|
84390
|
+
engine2.send({ cmd: "model", name: it.name, default: isDefault });
|
|
84391
|
+
};
|
|
84370
84392
|
if (key.upArrow) setPicker((p) => ({ ...p, index: (p.index + p.items.length - 1) % p.items.length }));
|
|
84371
84393
|
else if (key.downArrow || key.tab) setPicker((p) => ({ ...p, index: (p.index + 1) % p.items.length }));
|
|
84372
84394
|
else if (key.escape) setPicker(null);
|
|
84373
|
-
else if (
|
|
84374
|
-
|
|
84375
|
-
|
|
84376
|
-
|
|
84377
|
-
|
|
84378
|
-
|
|
84379
|
-
|
|
84380
|
-
|
|
84381
|
-
|
|
84382
|
-
|
|
84383
|
-
|
|
84384
|
-
|
|
84385
|
-
|
|
84395
|
+
else if (key.return) pick(true);
|
|
84396
|
+
else if (input === "s") pick(false);
|
|
84397
|
+
else if (/^[1-9]$/.test(input) && Number(input) <= picker.items.length) setPicker((p) => ({ ...p, index: Number(input) - 1 }));
|
|
84398
|
+
return;
|
|
84399
|
+
}
|
|
84400
|
+
if (picker && picker.kind === "session") {
|
|
84401
|
+
const { rows } = sessionRows(picker, hello?.cwd);
|
|
84402
|
+
const move = (d) => setPicker((p) => {
|
|
84403
|
+
const n = rows.length;
|
|
84404
|
+
if (!n) return p;
|
|
84405
|
+
const index = (p.index + d + n) % n;
|
|
84406
|
+
const top = index < p.top ? index : index >= p.top + PICKER_ROWS ? index - PICKER_ROWS + 1 : p.top;
|
|
84407
|
+
return { ...p, index, top };
|
|
84408
|
+
});
|
|
84409
|
+
if (key.upArrow) move(-1);
|
|
84410
|
+
else if (key.downArrow || key.tab) move(1);
|
|
84411
|
+
else if (key.escape) setPicker(null);
|
|
84412
|
+
else if (key.return) {
|
|
84413
|
+
const it = rows[picker.index];
|
|
84414
|
+
if (!it) return;
|
|
84386
84415
|
setPicker(null);
|
|
84387
84416
|
if (it.live && it.live.here) {
|
|
84388
84417
|
} else if (it.live && it.live.port) attachTo(it.live.port);
|
|
84389
84418
|
else engine2.send({ cmd: "resume", name: it.name });
|
|
84390
|
-
}
|
|
84419
|
+
} else if (key.ctrl && input === "a") setPicker((p) => ({ ...p, scope: p.scope === "here" ? "all" : "here", index: 0, top: 0 }));
|
|
84420
|
+
else if (key.backspace || key.delete) setPicker((p) => ({ ...p, query: p.query.slice(0, -1), index: 0, top: 0 }));
|
|
84421
|
+
else if (input && !key.ctrl && !key.meta && input >= " ") setPicker((p) => ({ ...p, query: p.query + input, index: 0, top: 0 }));
|
|
84391
84422
|
return;
|
|
84392
84423
|
}
|
|
84393
84424
|
if (menu.length > 0) {
|
|
@@ -84462,7 +84493,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84462
84493
|
break;
|
|
84463
84494
|
}
|
|
84464
84495
|
case "/image":
|
|
84465
|
-
if (!hello?.images) append({ kind: "warn", text: "this
|
|
84496
|
+
if (!hello?.images) append({ kind: "warn", text: "this version of hum does not take images; update hum" });
|
|
84466
84497
|
else if (!arg) append({ kind: "info", text: "/image <path> attaches the file to your next message \xB7 ctrl+v pastes a screenshot \xB7 @path.png in a message works too" });
|
|
84467
84498
|
else engine2.send({ cmd: "attach", path: arg });
|
|
84468
84499
|
break;
|
|
@@ -84538,7 +84569,7 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84538
84569
|
setPhaseBoth("busy");
|
|
84539
84570
|
}
|
|
84540
84571
|
};
|
|
84541
|
-
const statusLine = phase === "connecting" ? "starting
|
|
84572
|
+
const statusLine = phase === "connecting" ? "starting \u2026" : `${modelRef.current || ""} \xB7 ${fmtCost(spend)}` + (ctxPct >= 10 ? ` \xB7 ctx ${ctxPct}%` : "") + (gate === "approve" ? " \xB7 approvals on" : "") + (ctrlc ? " \xB7 ctrl+c again to quit" : " \xB7 / for commands");
|
|
84542
84573
|
const spinnerLabel = phase === "connecting" ? " starting \u2026" : ` ${status || "working"}${elapsed >= 2 ? ` \xB7 ${fmtDur(elapsed)}` : ""}` + (thinkChars.current > 4e3 ? ` \xB7 ${(thinkChars.current / 1e3).toFixed(0)}k thinking` : "");
|
|
84543
84574
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { flexDirection: "column", children: [
|
|
84544
84575
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Static, { items, children: (item) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { flexDirection: "column", marginBottom: ["hum", "you", "banner", "turn"].includes(item.kind) ? 1 : 0, children: [
|
|
@@ -84748,33 +84779,64 @@ function App2({ engine: engine2, task, resume, images = [] }) {
|
|
|
84748
84779
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { children: " " }),
|
|
84749
84780
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: "Enter to set as default \xB7 s to use this session only \xB7 Esc to cancel" })
|
|
84750
84781
|
] }),
|
|
84751
|
-
picker && picker.kind === "session" &&
|
|
84752
|
-
|
|
84753
|
-
|
|
84754
|
-
|
|
84755
|
-
]
|
|
84756
|
-
|
|
84757
|
-
|
|
84758
|
-
const
|
|
84759
|
-
|
|
84760
|
-
|
|
84761
|
-
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { children: [
|
|
84762
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { color: "cyan", inverse: i === picker.index, children: (i === picker.index ? "\u276F " : " ") + (it.when || "").padEnd(9) }),
|
|
84763
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { dimColor: i !== picker.index, color: it.live && !it.live.here ? "magenta" : void 0, children: [
|
|
84782
|
+
picker && picker.kind === "session" && (() => {
|
|
84783
|
+
const { rows, scope } = sessionRows(picker, hello?.cwd);
|
|
84784
|
+
const top = Math.min(picker.top, Math.max(0, rows.length - PICKER_ROWS));
|
|
84785
|
+
const shown = rows.slice(top, top + PICKER_ROWS);
|
|
84786
|
+
const out = [];
|
|
84787
|
+
let lastDir = null;
|
|
84788
|
+
shown.forEach((it, j) => {
|
|
84789
|
+
const i = top + j;
|
|
84790
|
+
if (it.dir !== lastDir) {
|
|
84791
|
+
out.push(/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { dimColor: true, children: [
|
|
84764
84792
|
" ",
|
|
84765
|
-
|
|
84766
|
-
|
|
84767
|
-
|
|
84768
|
-
|
|
84769
|
-
|
|
84770
|
-
|
|
84793
|
+
it.dir || "(no directory)"
|
|
84794
|
+
] }, `dir${i}`));
|
|
84795
|
+
lastDir = it.dir;
|
|
84796
|
+
}
|
|
84797
|
+
const sel = i === picker.index;
|
|
84798
|
+
const state = it.live ? it.live.here ? "this window" : it.live.state || "running" : null;
|
|
84799
|
+
const what = (it.instruction || "(untitled)").replace(/\s+/g, " ");
|
|
84800
|
+
const room = Math.max(16, width - 6 - (state ? state.length + 4 : 0));
|
|
84801
|
+
const meta = [it.when, it.steps != null ? plural(it.steps, "step") : "on the server", it.cost_usd ? fmtCost(it.cost_usd) : null, it.model].filter(Boolean).join(" \xB7 ");
|
|
84802
|
+
out.push(
|
|
84803
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { flexDirection: "column", marginBottom: 1, children: [
|
|
84804
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { children: [
|
|
84805
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { color: ACCENT, children: sel ? "\u276F " : " " }),
|
|
84806
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { bold: sel, color: sel ? ACCENT : void 0, children: what.length > room ? what.slice(0, room - 1) + "\u2026" : what }),
|
|
84807
|
+
state ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { color: "magenta", children: [
|
|
84808
|
+
" \xB7 ",
|
|
84809
|
+
state
|
|
84810
|
+
] }) : null
|
|
84811
|
+
] }),
|
|
84812
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { dimColor: true, children: [
|
|
84813
|
+
" ",
|
|
84814
|
+
meta
|
|
84815
|
+
] })
|
|
84816
|
+
] }, it.name)
|
|
84817
|
+
);
|
|
84818
|
+
});
|
|
84819
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { flexDirection: "column", paddingX: 1, marginTop: 1, children: [
|
|
84820
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { color: ACCENT, bold: true, children: [
|
|
84821
|
+
"Resume session ",
|
|
84822
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: `(${rows.length ? picker.index + 1 : 0} of ${rows.length})` })
|
|
84823
|
+
] }),
|
|
84824
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Box_default, { borderStyle: "round", borderColor: "gray", paddingX: 1, marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Text, { children: [
|
|
84825
|
+
"\u2315 ",
|
|
84826
|
+
picker.query ? picker.query : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: "Search\u2026" })
|
|
84827
|
+
] }) }),
|
|
84828
|
+
rows.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: " nothing matches" }) : out,
|
|
84829
|
+
top + PICKER_ROWS < rows.length ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: `\u2193 ${rows.length - top - PICKER_ROWS} more` }) : null,
|
|
84830
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { dimColor: true, children: `Enter to continue \xB7 Ctrl+A to show ${scope === "here" ? "all directories" : "only this directory"} \xB7 Type to search \xB7 Esc to cancel` })
|
|
84831
|
+
] });
|
|
84832
|
+
})(),
|
|
84771
84833
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Box_default, { borderStyle: "single", borderColor: "gray", borderLeft: false, borderRight: false, paddingX: 1, marginTop: 1, children: [
|
|
84772
84834
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Text, { color: "cyan", children: "\u276F " }),
|
|
84773
84835
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
84774
84836
|
input_default,
|
|
84775
84837
|
{
|
|
84776
84838
|
ref: inputRef,
|
|
84777
|
-
onPasteImage: () => hello?.images ? engine2.send({ cmd: "paste_image" }) : append({ kind: "warn", text: "this
|
|
84839
|
+
onPasteImage: () => hello?.images ? engine2.send({ cmd: "paste_image" }) : append({ kind: "warn", text: "this version of hum does not take images; update hum" }),
|
|
84778
84840
|
value,
|
|
84779
84841
|
onChange: setValue,
|
|
84780
84842
|
onSubmit,
|
|
@@ -85070,13 +85132,11 @@ var Engine = class {
|
|
|
85070
85132
|
|
|
85071
85133
|
// src/cli.jsx
|
|
85072
85134
|
var import_jsx_runtime3 = __toESM(require_jsx_runtime(), 1);
|
|
85073
|
-
import fs5 from "node:fs";
|
|
85074
|
-
import path4 from "node:path";
|
|
85075
85135
|
import { spawnSync as spawnSync3 } from "node:child_process";
|
|
85076
85136
|
var ENGINE_COMMANDS = /* @__PURE__ */ new Set(["run", "login", "logout", "whoami", "model", "key", "sessions", "show", "sync", "skill", "ps", "stop", "hooks", "engine"]);
|
|
85077
85137
|
var argv0 = process.argv.slice(2);
|
|
85078
85138
|
if (argv0[0] === "--version" || argv0[0] === "-V") {
|
|
85079
|
-
process.stdout.write(`hum ${true ? "0.1.
|
|
85139
|
+
process.stdout.write(`hum ${true ? "0.1.21" : "0.0.0"}
|
|
85080
85140
|
`);
|
|
85081
85141
|
process.exit(0);
|
|
85082
85142
|
}
|
|
@@ -85118,39 +85178,12 @@ if (!process.stdin.isTTY) {
|
|
|
85118
85178
|
process.stderr.write('hum needs an interactive terminal; use `hum run "task"` when piping.\n');
|
|
85119
85179
|
process.exit(1);
|
|
85120
85180
|
}
|
|
85121
|
-
var liveRuns = () => {
|
|
85122
|
-
let out = [];
|
|
85123
|
-
try {
|
|
85124
|
-
for (const f of fs5.readdirSync(runDir())) {
|
|
85125
|
-
if (!f.endsWith(".json")) continue;
|
|
85126
|
-
try {
|
|
85127
|
-
const r = JSON.parse(fs5.readFileSync(path4.join(runDir(), f), "utf8"));
|
|
85128
|
-
if (r.port && r.session) out.push(r);
|
|
85129
|
-
} catch {
|
|
85130
|
-
}
|
|
85131
|
-
}
|
|
85132
|
-
} catch {
|
|
85133
|
-
}
|
|
85134
|
-
out.sort((a, b) => (b.updated || 0) - (a.updated || 0));
|
|
85135
|
-
for (const r of out) {
|
|
85136
|
-
try {
|
|
85137
|
-
process.kill(r.pid, 0);
|
|
85138
|
-
} catch {
|
|
85139
|
-
r.dead = true;
|
|
85140
|
-
}
|
|
85141
|
-
}
|
|
85142
|
-
return out.filter((r) => !r.dead);
|
|
85143
|
-
};
|
|
85144
85181
|
var port = Number(process.env.HUM_ENGINE_PORT || 0);
|
|
85145
85182
|
var startedHere = false;
|
|
85146
85183
|
try {
|
|
85147
85184
|
if (!port) {
|
|
85148
|
-
|
|
85149
|
-
|
|
85150
|
-
if (!rec) {
|
|
85151
|
-
rec = await spawnEngine(args.cwd, { task: args.task, images: args.images, resume: args.resume && args.resume !== "pick" ? args.resume : null });
|
|
85152
|
-
startedHere = true;
|
|
85153
|
-
}
|
|
85185
|
+
const rec = await spawnEngine(args.cwd, { task: args.task, images: args.images, resume: args.resume && args.resume !== "pick" ? args.resume : null });
|
|
85186
|
+
startedHere = true;
|
|
85154
85187
|
port = rec.port;
|
|
85155
85188
|
}
|
|
85156
85189
|
} catch (exc) {
|