File size: 81,349 Bytes
c453128 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 | import { useCallback, useEffect, useLayoutEffect, useMemo, useRef, useState } from "react";
import { createPortal } from "react-dom";
import type { ActivityEvent, ApiMode, DeskHistory, FileNode, FilePreviewData, LiveState, ReasoningEffort, Session, SubagentRecord, WorkerEvent } from "../types";
import { DESK_PANEL_Z_BASE } from "../floatingPanelStack";
import { usePanelDrag } from "../usePanelDrag";
import {
centeredAnchorToDeskOffset,
defaultBelowDeskOffset,
deskOffsetFromViewport,
useDeskAnchoredRowPosition,
rowToViewport,
viewportToRow,
type DeskOffset,
} from "../deskPanelAnchor";
import { scrollContainerToBottom, scrollIntoContainer } from "../scrollContainer";
import { useTeamRowPanel } from "../TeamRowPanelContext";
import { usePanelResize, type PanelSize } from "../usePanelResize";
import { PanelResizeHandle } from "./PanelResizeHandle";
import { SubagentDesk, applySubagentLive, groupSubagentsIntoRounds } from "./SubagentDesk";
import { api } from "../api/client";
import { ActivityFeed } from "./ActivityFeed";
import { FileExplorer } from "./FileExplorer";
import { InspectPanel } from "./InspectPanel";
import { ActivityOverview } from "./ActivityOverview";
import { MarkdownView } from "./FilePreview";
import { deskDisplayTitle } from "../taskDisplay";
import { toolIcon } from "../toolIcons";
const _TEXT_EXTS = new Set([
"txt","md","py","js","ts","jsx","tsx","json","csv","yaml","yml",
"html","css","xml","sh","bash","sql","r","toml","ini","cfg","log",
"rst","java","c","cpp","h","hpp","go","rs","rb","php","swift","kt",
]);
const _IMAGE_EXTS = new Set(["jpg","jpeg","png","gif","webp","svg"]);
// Heartbeat auto-continue is still unreliable on open-ended/looping tasks
// (the completion judge stops perpetual goals, the 25-resume cap ends loops,
// and errored turns halt it). Keep the UI control hidden until that's fixed.
// The backend remains opt-in and OFF by default, so this is dead code, not a risk.
const AUTO_CONTINUE_UI_ENABLED = false;
// Floating desk panel (opens when you click the desk "monitor"). Anchored below the
// desk in viewport space (portaled to document.body). Double-click / ⊞ maximizes to
// nearly full screen instead of squeezing into the team row.
const PANEL_WIDTH = 480;
// The Inspect tab shows a tool form + a wide command/output area, so it gets a
// roomier panel than the default desk width (still clamps to the viewport).
const INSPECT_PANEL_WIDTH = 640;
const PANEL_MIN_WIDTH = 320;
const PANEL_MIN_HEIGHT = 340;
const PANEL_PREF_HEIGHT = 560;
const PANEL_VIEWPORT_PAD = 16;
function computeFloatingPanelLayout(anchorTop: number, rowHeight: number) {
// Prefer up to one team-row tall; may extend past the row bottom (overflow visible).
const height = Math.max(PANEL_MIN_HEIGHT, Math.min(PANEL_PREF_HEIGHT, rowHeight));
return { top: anchorTop, height };
}
/** Maximized desk panel — nearly full viewport (not the team row). */
function computeMaximizedPanelLayout(viewportW: number, viewportH: number) {
const pad = PANEL_VIEWPORT_PAD;
return {
top: pad,
left: pad,
width: viewportW - pad * 2,
height: viewportH - pad * 2,
};
}
async function _processFiles(files: File[]): Promise<{ text: string; images: { name: string; data: string; url: string }[] }> {
const parts: string[] = [];
const images: { name: string; data: string; url: string }[] = [];
for (const file of files) {
const ext = (file.name.split(".").pop() ?? "").toLowerCase();
if (_IMAGE_EXTS.has(ext) || file.type.startsWith("image/")) {
const dataUrl = await new Promise<string>((res) => {
const fr = new FileReader();
fr.onload = (e) => res(e.target!.result as string);
fr.readAsDataURL(file);
});
images.push({ name: file.name, data: dataUrl, url: dataUrl });
} else if (_TEXT_EXTS.has(ext) || file.type.startsWith("text/")) {
const content = await new Promise<string>((res) => {
const fr = new FileReader();
fr.onload = (e) => res(e.target!.result as string);
fr.readAsText(file);
});
parts.push(`\`\`\`${ext}\n# ${file.name}\n${content.slice(0, 12000)}\n\`\`\``);
} else {
parts.push(`[Attached file: ${file.name}]`);
}
}
return { text: parts.join("\n"), images };
}
interface Props {
session: Session;
scene?: string;
isActive: boolean;
searchMatch?: boolean;
index: number;
autoExpand?: boolean;
/** Screen coords for the panel top-center when auto-opening after the first prompt. */
openAnchor?: { top: number; left: number } | null;
workspacePath?: string;
taskContent?: string;
taskImages?: { name: string; url: string }[];
verbose?: boolean;
reasoningEffort?: ReasoningEffort;
apiMode?: ApiMode;
onPreview: (data: FilePreviewData) => void;
panelZIndex?: number;
onPanelActivate?: () => void;
onSelect: () => void;
onFocus?: () => void;
onOpen?: () => void;
/** Fired whenever the panel expands/collapses, so the parent can keep the
* desk's hovering agent visible for as long as its panel is open. */
onOpenChange?: (open: boolean) => void;
deskFocused?: boolean;
onClose: () => void;
/** Fired once after autoExpand opens the panel (so the parent can clear justStartedId). */
onAutoExpanded?: () => void;
onActivity?: () => void;
onAskManager?: () => void;
onInterrupt?: (id: string) => void;
// Resolved profile for the desk's "profile · model" status line.
profileLabel?: string;
profileColor?: string;
profileModel?: string;
}
type DeskTab = "activity" | "tasks" | "files" | "console";
// Sub-views inside the merged Console tab: the clean "human's-eye" shell I/O, the
// full worker debug stream (tool calls, args, results, reasoning, logs), and the
// Inspect tool form for ad-hoc command/output probing.
type ConsoleView = "agent" | "debug" | "inspect";
function statusColor(session: Session): string {
if (session.is_running) return "var(--green)";
if (session.ended_at) return "var(--text-dim)";
return "var(--yellow)";
}
function statusLabel(session: Session): string {
if (session.is_running) return "active";
if (session.ended_at) return "done";
return "idle";
}
// Actual execution span, not wall-clock since spawn: start at the first command,
// and for an idle desk stop at its last activity (so it freezes instead of
// counting overnight hours). A live desk keeps ticking to now.
function elapsedLabel(session: Session): string {
const startIso = session.first_activity_at || session.started_at;
if (!startIso) return "";
const start = new Date(startIso).getTime();
let end: number;
if (session.is_running) {
end = Date.now();
} else {
const endIso = session.last_activity_at || session.ended_at;
end = endIso ? new Date(endIso).getTime() : Date.now();
}
const mins = Math.round((end - start) / 60000);
if (mins < 1) return "<1m";
if (mins < 60) return `${mins}m`;
return `${Math.floor(mins / 60)}h ${mins % 60}m`;
}
function stripAnsi(s: string): string {
return s.replace(/\x1b(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])/g, "");
}
// Apply terminal carriage-return semantics: progress bars (e.g. dataset/pip
// downloads) emit "0.3%\r0.7%\r…" expecting each value to overwrite the line in
// place. We capture the raw stream, so collapse each \r-run to its final state
// instead of printing every step on its own line.
function applyCarriageReturns(s: string): string {
if (!s.includes("\r")) return s;
return s.split("\n").map((line) => {
if (!line.includes("\r")) return line;
let out = "";
for (const seg of line.split("\r")) out = seg + out.slice(seg.length);
return out;
}).join("\n");
}
// Escape HTML before injecting console output via dangerouslySetInnerHTML.
// Agent terminal output is untrusted (it can echo file contents, web results,
// etc.), so raw markup like <img onerror=…> must not reach the DOM. Run this
// BEFORE the `$ command` colorize regex, which intentionally adds <span> markup.
function escapeHtml(s: string): string {
return s.replace(/[&<>"']/g, (c) =>
c === "&" ? "&" : c === "<" ? "<" : c === ">" ? ">" : c === '"' ? """ : "'");
}
function TaskFileEditor({ sessionId, onSaved }: { sessionId: string; onSaved?: () => void }) {
const [content, setContent] = useState<string | null>(null);
const [draft, setDraft] = useState("");
const [saving, setSaving] = useState(false);
const [saved, setSaved] = useState(false);
useEffect(() => {
api.sessions.taskFile.get(sessionId)
.then((r) => { setContent(r.content); setDraft(r.content); })
.catch(() => { setContent(""); setDraft(""); });
}, [sessionId]);
async function save() {
if (saving) return;
setSaving(true);
try {
await api.sessions.taskFile.save(sessionId, draft);
setContent(draft);
setSaved(true);
setTimeout(() => setSaved(false), 1800);
onSaved?.();
} catch {
// workspace not found for older sessions — silently ignore
} finally {
setSaving(false);
}
}
// content===null means still loading; empty string means no workspace (old session)
if (content === null) return (
<div style={{ padding: "8px 12px", fontSize: 11, color: "var(--text-dim)" }}>Loading…</div>
);
const dirty = draft !== content;
return (
<div style={{ padding: "10px 12px", borderBottom: "1px solid var(--card-border)" }}>
<div style={{
display: "flex", justifyContent: "space-between", alignItems: "center",
marginBottom: 6,
}}>
<span style={{ fontSize: 10, color: "var(--text-dim)", textTransform: "uppercase", letterSpacing: "0.05em" }}>
TASK.md
</span>
{(dirty || saved) && (
<button
onClick={save}
disabled={saving || saved}
style={{
fontSize: 10, padding: "2px 8px", borderRadius: 4,
background: saved ? "rgba(78,204,163,0.2)" : "var(--accent2)",
color: saved ? "var(--green)" : "white",
border: `1px solid ${saved ? "var(--green)" : "transparent"}`,
cursor: saving || saved ? "default" : "pointer",
}}
>
{saving ? "Saving…" : saved ? "✓ Saved" : "Save"}
</button>
)}
</div>
<textarea
value={draft}
onChange={(e) => setDraft(e.target.value)}
onKeyDown={(e) => {
if (e.key === "Enter" && e.shiftKey) { e.preventDefault(); save(); }
}}
placeholder="Describe the task for this desk…"
style={{
width: "100%", minHeight: 120, maxHeight: 300,
background: "var(--bg)", border: "1px solid var(--card-border)",
borderRadius: 4, padding: "6px 8px",
fontSize: 11, color: "var(--text)",
resize: "vertical", fontFamily: "monospace", lineHeight: 1.5,
outline: "none", boxSizing: "border-box",
}}
onFocus={(e) => { e.target.style.borderColor = "var(--accent2)"; }}
onBlur={(e) => { e.target.style.borderColor = "var(--card-border)"; }}
/>
<div style={{ fontSize: 9, color: "var(--text-dim)", marginTop: 3, opacity: 0.6 }}>
Shift+Enter to save — agent reads this file from its workspace
</div>
</div>
);
}
// Read-only agent progress report (PROGRESS.md). Written by the agent's model —
// useful to the user, the manager, and the agent itself on resume. Auto-refreshes
// after audits; the button regenerates it on demand.
function ProgressView({ sessionId }: { sessionId: string }) {
const [content, setContent] = useState<string | null>(null);
const [busy, setBusy] = useState(false);
useEffect(() => {
setContent(null);
api.sessions.progress.get(sessionId)
.then((r) => setContent(r.content || ""))
.catch(() => setContent(""));
}, [sessionId]);
async function refresh() {
if (busy) return;
setBusy(true);
try {
const r = await api.sessions.progress.generate(sessionId);
setContent(r.content || "");
} catch {
// 422 = nothing to report yet; leave existing content
} finally {
setBusy(false);
}
}
return (
<div style={{ padding: "10px 12px" }}>
<div style={{ display: "flex", justifyContent: "space-between", alignItems: "center", marginBottom: 8 }}>
<span style={{ fontSize: 10, color: "var(--text-dim)", textTransform: "uppercase", letterSpacing: "0.05em" }}>
Agent progress report
</span>
<button
onClick={refresh}
disabled={busy}
title="Regenerate the report from the agent's work so far (~1 min)"
style={{
fontSize: 10, padding: "3px 10px", borderRadius: 4,
background: busy ? "rgba(100,100,200,0.15)" : "var(--accent2)",
color: busy ? "var(--accent2)" : "white",
border: "1px solid transparent", cursor: busy ? "default" : "pointer",
}}
>
{busy ? "Generating…" : "↻ Refresh"}
</button>
</div>
{content === null ? (
<div style={{ fontSize: 11, color: "var(--text-dim)" }}>Loading…</div>
) : content.trim() === "" ? (
<div style={{ fontSize: 11, color: "var(--text-dim)", lineHeight: 1.6 }}>
No progress report yet. It refreshes automatically after an audit, or click
<strong> ↻ Refresh</strong> to generate one now.
</div>
) : (
<MarkdownView content={content} />
)}
</div>
);
}
function TasksView({ sessionId, onTaskSaved, onAskManager }: { sessionId: string; onTaskSaved?: () => void; onAskManager?: () => void }) {
const [asking, setAsking] = useState(false);
const [view, setView] = useState<"task" | "progress">("task");
function handleAskManager() {
if (asking) return;
setAsking(true);
onAskManager?.();
setTimeout(() => setAsking(false), 4000);
}
return (
<div style={{ display: "flex", flexDirection: "column" }}>
{/* Task spec (human-editable) ↔ Progress report (agent-written, read-only) */}
<div style={{
display: "flex", gap: 6, alignItems: "center",
padding: "6px 10px", borderBottom: "1px solid var(--card-border)",
}}>
{([["task", "📋 Task"], ["progress", "📈 Progress"]] as const).map(([v, label]) => (
<button
key={v}
onClick={() => setView(v)}
style={{
fontSize: 11, padding: "3px 10px", borderRadius: 6, cursor: "pointer",
background: view === v ? "var(--accent2)" : "transparent",
color: view === v ? "#fff" : "var(--text-dim)",
border: `1px solid ${view === v ? "var(--accent2)" : "var(--card-border)"}`,
}}
>
{label}
</button>
))}
</div>
{view === "progress" ? (
<ProgressView sessionId={sessionId} />
) : (
<>
<TaskFileEditor sessionId={sessionId} onSaved={onTaskSaved} />
{onAskManager && (
<div style={{ padding: "8px 12px 10px" }}>
<button
onClick={handleAskManager}
disabled={asking}
title="Ask the team manager to review your tasks and leave guidance"
style={{
display: "flex", alignItems: "center", gap: 6,
fontSize: 11, padding: "5px 10px", borderRadius: 6,
background: asking ? "rgba(100,100,200,0.15)" : "rgba(255,255,255,0.04)",
color: asking ? "var(--accent2)" : "var(--text-dim)",
border: "1px solid var(--card-border)",
cursor: asking ? "default" : "pointer",
transition: "background 0.2s, color 0.2s",
width: "100%", justifyContent: "center",
}}
>
<span style={{ fontSize: 13 }}>👩💼</span>
{asking ? "Manager on her way…" : "Ask manager for guidance"}
</button>
</div>
)}
</>
)}
</div>
);
}
// Load the session's real workspace directory tree (dirs + subdirs + all files).
// Falls back to the tool-call-derived file list for sessions whose workspace dir
// can't be resolved server-side (e.g. older CLI sessions).
async function loadWorkspaceFiles(sessionId: string): Promise<FileNode[]> {
try {
const tree = await api.sessions.workspaceTree(sessionId);
if (tree.length > 0) return tree;
} catch { /* fall through to the touched-files list */ }
try {
return await api.sessions.files(sessionId);
} catch {
return [];
}
}
// Map a worker/Hermes log line to a short, honest phase label for the live status,
// so the user sees what's actually happening (not a vague "thinking…") even when
// the model streams no reasoning tokens. Returns null for lines with no clear phase.
function phaseFromLog(msg: string): string | null {
const m = msg.toLowerCase();
if (m.includes("api call") || m.includes("calling model")) return "Waiting for model";
if (m.includes("creating session") || m.includes("ready,")) return "Initializing agent";
if (m.includes("resumed session") || m.includes("loading history")) return "Loading history";
if (m.includes("proxy")) return "Connecting to model";
if (m.includes("starting")) return "Starting up";
return null;
}
// Derive the workspace dir from the file tree: top-level nodes are direct children
// of the workspace, so the parent of any of them is the workspace dir itself.
function workspaceDirOf(nodes: FileNode[]): string | null {
if (!nodes.length) return null;
const p = nodes[0].path;
const cut = Math.max(p.lastIndexOf("/"), p.lastIndexOf("\\"));
return cut > 0 ? p.slice(0, cut) : null;
}
function ActionButton({ icon, label, hint, color, onClick }: {
icon: React.ReactNode; label: string; hint: string; color: string; onClick: () => void;
}) {
const [hover, setHover] = useState(false);
return (
<button
onClick={onClick}
title={hint}
onMouseEnter={() => setHover(true)}
onMouseLeave={() => setHover(false)}
style={{
display: "flex", alignItems: "center", gap: 7,
fontSize: 12, fontWeight: 600, padding: "8px 14px", borderRadius: 8,
cursor: "pointer", transition: "transform .12s, box-shadow .12s, background .12s, color .12s",
color: hover ? "#fff" : color,
background: hover ? color : "rgba(255,255,255,0.05)",
border: `1px solid ${color}`,
boxShadow: hover ? `0 3px 12px ${color}55` : "none",
transform: hover ? "translateY(-1px)" : "none",
}}
>
<span style={{ fontSize: 15, lineHeight: 1 }}>{icon}</span>
{label}
</button>
);
}
function FilesView({ nodes, onPreview, onRefresh, refreshing }: {
nodes: FileNode[];
onPreview: (d: FilePreviewData) => void;
onRefresh: () => void;
refreshing?: boolean;
}) {
const [err, setErr] = useState<"folder" | "terminal" | null>(null);
const dir = workspaceDirOf(nodes);
function run(kind: "folder" | "terminal") {
if (!dir) return;
const call = kind === "folder" ? api.workspace.open(dir) : api.workspace.openTerminal(dir);
call.then(() => setErr(null)).catch(() => { setErr(kind); setTimeout(() => setErr(null), 3000); });
}
return (
<div>
<div style={{
display: "flex", justifyContent: "flex-end", alignItems: "center",
padding: "6px 10px 4px", borderBottom: "1px solid var(--card-border)",
}}>
<button
type="button"
onClick={(e) => { e.stopPropagation(); onRefresh(); }}
disabled={refreshing}
title="Refresh workspace file list (includes team_files/)"
style={{
fontSize: 11, fontWeight: 600, padding: "4px 10px", borderRadius: 6,
background: "rgba(255,255,255,0.06)", border: "1px solid var(--card-border)",
color: refreshing ? "var(--text-dim)" : "var(--accent2)",
cursor: refreshing ? "default" : "pointer",
opacity: refreshing ? 0.7 : 1,
}}
>
{refreshing ? "Refreshing…" : "↻ Update"}
</button>
</div>
<FileExplorer nodes={nodes} onPreview={onPreview} />
{dir && (
<div style={{
display: "flex", gap: 10, alignItems: "center", flexWrap: "wrap",
padding: "12px", marginTop: 2, borderTop: "1px solid var(--card-border)",
}}>
<ActionButton
icon="📂" label="Open folder" color="var(--accent2)"
hint={`Reveal ${dir} in Finder`} onClick={() => run("folder")}
/>
<ActionButton
icon={<span style={{ fontFamily: "monospace", fontWeight: 700 }}>{">_"}</span>}
label="Open in terminal" color="var(--green)"
hint={`Open a terminal at ${dir}`} onClick={() => run("terminal")}
/>
{err && (
<span style={{ fontSize: 10, color: "var(--red)" }}>
Couldn’t open {err}.
</span>
)}
</div>
)}
</div>
);
}
// Desk history log — every session row this desk ran (root + each resume /
// model-switch), with its start time, agent profile, and model. Every resume is
// its own entry, even when the profile + model are unchanged from the previous.
function DeskHistoryView({ history }: { history: DeskHistory | null }) {
if (!history) {
return <div style={{ padding: "12px", fontSize: 11, color: "var(--text-dim)" }}>Loading history…</div>;
}
const rows = history.sessions;
const fmt = (iso: string) => {
if (!iso) return "—";
const d = new Date(iso);
return Number.isNaN(d.getTime()) ? iso : d.toLocaleString();
};
return (
<div style={{ padding: "10px 12px" }}>
<div style={{ fontSize: 10, color: "var(--text-dim)", textTransform: "uppercase", letterSpacing: "0.05em", marginBottom: 8 }}>
Desk session history · {rows.length} run{rows.length === 1 ? "" : "s"}
</div>
{rows.length === 0 ? (
<div style={{ fontSize: 11, color: "var(--text-dim)" }}>No sessions recorded for this desk yet.</div>
) : (
<div style={{ display: "flex", flexDirection: "column", gap: 6 }}>
{rows.map((s, i) => {
const prev = i > 0 ? rows[i - 1] : null;
const changed = !!prev && (prev.profile !== s.profile || prev.model !== s.model);
return (
<div key={s.id} style={{
display: "flex", flexDirection: "column", gap: 3,
padding: "7px 9px", borderRadius: 6,
background: "rgba(255,255,255,0.03)",
border: `1px solid ${changed ? "var(--accent2)" : "var(--card-border)"}`,
}}>
<div style={{ display: "flex", alignItems: "center", gap: 6, flexWrap: "wrap" }}>
<span style={{
fontSize: 9, fontWeight: 700, padding: "1px 6px", borderRadius: 7,
background: s.is_root ? "var(--accent2)" : "rgba(255,255,255,0.08)",
color: s.is_root ? "#fff" : "var(--text-dim)",
}}>
{s.is_root ? "root" : `resume ${i}`}
</span>
<span style={{ fontSize: 11, color: "var(--text)" }}>{fmt(s.started_at)}</span>
{s.message_count > 0 && (
<span style={{ fontSize: 10, color: "var(--text-dim)" }}>· {s.message_count} msgs</span>
)}
{changed && (
<span style={{ fontSize: 9, color: "var(--accent2)", fontWeight: 700 }}>· config changed</span>
)}
</div>
<div style={{ display: "flex", alignItems: "center", gap: 8, flexWrap: "wrap" }}>
<span style={{ fontSize: 10, color: "var(--text)", fontWeight: 600 }}>
{s.profile || "Default"}
</span>
{s.model && (
<span style={{ fontFamily: "ui-monospace, monospace", fontSize: 10, color: "var(--accent2)" }}>
{s.model}
</span>
)}
</div>
<div style={{ fontFamily: "ui-monospace, monospace", fontSize: 9.5, color: "var(--text-dim)", wordBreak: "break-all" }}>
{s.id}
</div>
</div>
);
})}
</div>
)}
</div>
);
}
export function TaskDesk({ session, scene, isActive, searchMatch, index, autoExpand, openAnchor, workspacePath, taskContent, taskImages, verbose = true, reasoningEffort, apiMode, onPreview, panelZIndex, onPanelActivate, onSelect, onFocus, onOpen, onOpenChange, deskFocused, onClose, onAutoExpanded, onActivity, onAskManager, onInterrupt, profileLabel, profileColor, profileModel }: Props) {
const [expanded, setExpanded] = useState(false);
const [tab, setTab] = useState<DeskTab>("activity");
const [consoleView, setConsoleView] = useState<ConsoleView>("debug");
const [activityView, setActivityView] = useState<"feed" | "overview" | "history">("feed");
const [deskHistory, setDeskHistory] = useState<DeskHistory | null>(null);
const [exporting, setExporting] = useState(false);
const [autoContinue, setAutoContinue] = useState(!!session.auto_continue);
const [activity, setActivity] = useState<ActivityEvent[]>([]);
const [overviewDesk, setOverviewDesk] = useState<{
sessionId: string;
events: ActivityEvent[];
started_at: string | null;
last_at: string | null;
} | null>(null);
const overviewReady = overviewDesk?.sessionId === session.id;
const [files, setFiles] = useState<FileNode[]>([]);
const [filesRefreshing, setFilesRefreshing] = useState(false);
const [loading, setLoading] = useState(false);
const [loaded, setLoaded] = useState(false);
const [chatInput, setChatInput] = useState("");
const [chatImages, setChatImages] = useState<{ name: string; data: string; url: string }[]>([]);
const [sending, setSending] = useState(false);
const [termLines, setTermLines] = useState<string[]>([]);
const [consoleLines, setConsoleLines] = useState<string[]>([]);
const consoleBottomRef = useRef<HTMLDivElement>(null);
const [liveState, setLiveState] = useState<LiveState>({ streamText: "" });
useEffect(() => { liveStreamRef.current = liveState.streamText; }, [liveState.streamText]);
const [liveEvents, setLiveEvents] = useState<ActivityEvent[]>([]);
// delegate_task subagents, keyed by subagent_id. Append-only within a desk:
// seeded from the server's durable {"subagents":[…]} replay on (re)connect and
// updated incrementally by live {type:"subagent"} events. NOT cleared on turn
// boundaries / WS close, so the tabs and their I/O persist (only reset when the
// panel switches to a different session).
const [subagents, setSubagents] = useState<Record<string, SubagentRecord>>({});
// Which delegation rounds are expanded to reveal their subagent bubbles.
// Collapsed by default so a long task stays compact; click a round to expand.
const [expandedRounds, setExpandedRounds] = useState<Set<number>>(() => new Set());
// User messages sent from this panel (follow-ups / barge-ins). Kept client-side
// so they stay visible in the feed even before Hermes persists them to the DB.
const [sentMsgs, setSentMsgs] = useState<{ text: string; ts: string }[]>([]);
// Partial agent replies cut off by a barge-in — kept client-side so the
// incomplete response stays visible (the interrupted turn never reaches the DB).
const [interruptedReplies, setInterruptedReplies] = useState<{ text: string; ts: string }[]>([]);
const liveStreamRef = useRef("");
const [panelDeskOffset, setPanelDeskOffset] = useState<DeskOffset | null>(null);
const onDragCommitRef = useRef<(vp: { top: number; left: number }) => void>(() => {});
const { pos: panelDragPos, resetPos: resetPanelUserPos, dragging: panelDragging, bindHandle: bindPanelDrag } = usePanelDrag(12, (vp) => onDragCommitRef.current(vp));
const { size: panelUserSize, resetSize: resetPanelUserSize, resizing: panelResizing, bindResize: bindPanelResize } = usePanelResize({
width: PANEL_MIN_WIDTH,
height: PANEL_MIN_HEIGHT,
});
const [viewportH, setViewportH] = useState(() =>
typeof window !== "undefined" ? window.innerHeight : 800,
);
const [viewportW, setViewportW] = useState(() =>
typeof window !== "undefined" ? window.innerWidth : 1200,
);
const [isMaximized, setIsMaximized] = useState(false);
const [chatDragOver, setChatDragOver] = useState(false);
// Bumped on every in-panel resume so the activity WS reconnects immediately,
// even if the run is too short for the is_running poll to ever observe it.
const [wsEpoch, setWsEpoch] = useState(0);
const [resuming, setResuming] = useState(false);
const deskRef = useRef<HTMLDivElement>(null);
const deskClickTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null);
const { root: panelRoot, height: teamRowHeight } = useTeamRowPanel();
const rowRef = useRef<HTMLElement | null>(null);
rowRef.current = panelRoot;
onDragCommitRef.current = (vp) => {
if (deskRef.current) setPanelDeskOffset(deskOffsetFromViewport(deskRef.current, vp));
resetPanelUserPos();
};
const panelRowPos = useDeskAnchoredRowPosition(deskRef, rowRef, panelDeskOffset, expanded && !panelDragging && !!panelRoot);
const panelDisplayPos = (() => {
if (panelDragging && panelDragPos && panelRoot) return viewportToRow(panelRoot, panelDragPos);
return panelRowPos;
})();
const wsRef = useRef<WebSocket | null>(null);
const termWsRef = useRef<WebSocket | null>(null);
const termBottomRef = useRef<HTMLDivElement>(null);
const panelContentRef = useRef<HTMLDivElement>(null);
useEffect(() => () => {
if (deskClickTimerRef.current) clearTimeout(deskClickTimerRef.current);
}, []);
const refreshFiles = useCallback(async () => {
setFilesRefreshing(true);
try {
setFiles(await loadWorkspaceFiles(session.id));
} catch { /* ignore */ }
finally { setFilesRefreshing(false); }
}, [session.id]);
// Debug terminal lives inside the Console tab now; force the clean Agent view
// when verbose (detailed mode) is off so simple mode stays uncluttered.
useEffect(() => {
if (!verbose) setConsoleView("agent");
}, [verbose]);
// Live activity feed via WebSocket (always open)
const prevEventCountRef = useRef(0);
const onActivityRef = useRef(onActivity);
useEffect(() => { onActivityRef.current = onActivity; }, [onActivity]);
// Fires onActivity once on the first live event of each turn so the avatar
// walks over immediately when streaming starts, not only after a DB commit.
const liveNotifiedRef = useRef(false);
// If this panel slot is ever reused for a different desk, drop the previous
// desk's subagent bubbles so they don't carry over to an unrelated session.
useEffect(() => {
setSubagents({});
setExpandedRounds(new Set());
}, [session.id]);
useEffect(() => {
const now = () => new Date().toISOString();
function flushStreamed(prev: LiveState): void {
if (prev.streamText) {
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "message", icon: "🤖", title: "Agent",
detail: prev.streamText, tool_name: "", is_error: false, files_touched: [],
}]);
}
}
// When a reasoning phase ends (a token or tool call follows), keep the
// streamed trace as a collapsible "Reasoning" step instead of dropping it.
// The DB-backed step (from reasoning_content) replaces this on the next
// activity refresh; both render identically so the swap is seamless.
// Trim-gate to mirror the DB path (activity_parser strips reasoning_content):
// qwen3-style models emit an empty `<think>\n\n</think>` on most tool-calling
// turns, which the parser drops — without the same .trim() here, every such
// turn left a clickable "Reasoning" step whose trace was blank when expanded.
function flushThinking(prev: LiveState): void {
const trace = prev.thinkingText?.trim();
if (trace) {
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "thinking_start", icon: "💭", title: "Reasoning",
detail: trace, tool_name: "", is_error: false, files_touched: [],
}]);
}
}
function notifyActivityOnce() {
if (!liveNotifiedRef.current) {
liveNotifiedRef.current = true;
onActivityRef.current?.();
}
}
function onLive(evt: WorkerEvent) {
if (evt.type === "token") {
notifyActivityOnce();
setLiveState((prev) => {
flushThinking(prev); // preserve the just-finished reasoning trace
return {
...prev,
streamText: prev.streamText + (evt.text ?? ""),
thinkingText: undefined,
logLine: undefined,
statusLine: undefined, // the response itself is now the status
};
});
} else if (evt.type === "thinking") {
notifyActivityOnce();
setLiveState((prev) => ({
...prev,
thinkingText: (prev.thinkingText ?? "") + (evt.text ?? ""),
statusLine: undefined,
}));
} else if (evt.type === "tool_start") {
notifyActivityOnce();
setLiveState((prev) => {
flushThinking(prev); // preserve reasoning that preceded this tool call
flushStreamed(prev);
// Commit a "calling <tool>" row so the in-progress call has a persistent
// feed entry (mirrors the DB tool_call event + per-tool icon). The live
// overlay below is transient and clears on tool_done; this row survives
// and is replaced 1:1 by the parsed row when the DB snapshot catches up.
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "tool_call", icon: toolIcon(evt.name),
title: `calling ${evt.name ?? "tool"}`, detail: "",
tool_name: evt.name ?? "", is_error: false, files_touched: [],
}]);
return { streamText: "", toolName: evt.name, logLine: undefined, thinkingText: undefined,
statusLine: `Invoking ${evt.name ?? "tool"}` };
});
} else if (evt.type === "tool_done") {
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "tool_result", icon: toolIcon(evt.name),
title: `${evt.name ?? "tool"} done`,
detail: (evt.result ?? "").slice(0, 200),
tool_name: evt.name ?? "", is_error: false, files_touched: [],
}]);
setLiveState((prev) => ({ ...prev, toolName: undefined, statusLine: undefined }));
} else if (evt.type === "log") {
notifyActivityOnce();
const phase = phaseFromLog(evt.msg ?? "");
setLiveState((prev) => prev.streamText
? prev
: { ...prev, logLine: evt.msg, statusLine: phase ?? prev.statusLine });
} else if (evt.type === "status") {
notifyActivityOnce();
const phase = evt.msg || evt.event;
if (phase) setLiveState((prev) => prev.streamText ? prev : { ...prev, statusLine: phase });
} else if (evt.type === "error") {
// Show the failure in the feed right away; the server also preserves it
// (with any partial output) so later DB snapshots keep it visible.
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "error", icon: "❌", title: "Error",
detail: evt.msg ?? "", tool_name: "", is_error: true, files_touched: [],
}]);
setLiveState({ streamText: "" });
} else if (evt.type === "interrupted") {
setLiveState({ streamText: "" });
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "message", icon: "⏸", title: "Interrupted",
detail: "", tool_name: "", is_error: false, files_touched: [],
}]);
} else if (evt.type === "agent_arrived") {
setLiveEvents((le) => [...le, {
timestamp: now(), event_type: "message", icon: "🚶", title: "Agent arrived",
detail: "", tool_name: "", is_error: false, files_touched: [],
}]);
} else if (evt.type === "subagent") {
// A delegate_task child: route into its own persistent tab instead of the
// parent's feed, so its trace survives the turn (see `subagents` state).
notifyActivityOnce();
setSubagents((prev) => applySubagentLive(prev, evt));
}
}
const ws = api.sessions.activityWs(
session.id,
(events) => {
setActivity(events);
if (events.length > prevEventCountRef.current) {
prevEventCountRef.current = events.length;
liveNotifiedRef.current = false; // reset so next turn's first live event fires again
onActivityRef.current?.();
setLiveState((prev) => ({ ...prev, streamText: "", toolName: undefined, thinkingText: undefined }));
setLiveEvents([]);
}
},
onLive,
() => {
// WS closed (session ended, interrupted, or server restarted) — clear stale live overlay.
// NOTE: subagent tabs are intentionally NOT cleared here; the server's
// durable replay re-seeds them on reconnect and they must persist.
setLiveState({ streamText: "" });
setLiveEvents([]);
},
(records) => {
// Durable subagent replay sent once on (re)connect — seed/merge the tab
// state. Records are authoritative (full timeline), so they win per id.
setSubagents((prev) => {
const next = { ...prev };
for (const r of records) if (r && r.subagent_id) next[r.subagent_id] = r;
return next;
});
},
);
wsRef.current = ws;
return () => {
ws.close();
wsRef.current = null;
prevEventCountRef.current = 0;
setLiveState({ streamText: "" });
setLiveEvents([]);
};
// Reconnect when the session starts running again (resume / reassign / TASK.md
// save / chat) — the server closes the stream on "done", so a single-run WS
// would leave later runs invisible and the avatar unresponsive.
}, [session.id, session.is_running, wsEpoch]);
// Overview uses desk-wide history (merged across related sessions). Fetch it
// eagerly once the desk is open — not only when the Overview tab is selected —
// so `overviewReady` is true before the user switches in. Otherwise the chart
// falls back to session-scoped `activity` (only the folder session id's
// messages), which after a resume drops prior runs Hermes stored under a
// different internal session id and looks like "only the latest call".
// Do not refetch on every WS activity tick — that would briefly null the
// desk-wide events mid-turn.
useEffect(() => {
if (!expanded && !loaded) return;
let cancelled = false;
const sid = session.id;
api.sessions.overview(sid)
.then((data) => {
if (!cancelled) {
setOverviewDesk({
sessionId: sid,
events: data.events,
started_at: data.started_at,
last_at: data.last_at,
});
}
})
.catch(() => {});
return () => { cancelled = true; };
}, [expanded, loaded, session.id, wsEpoch, session.is_running]);
// Desk history (session lineage). Refetch when the desk gains a new run — a
// resume/model-switch adds a session row — so the log stays current.
useEffect(() => {
if (!expanded && !loaded) return;
let cancelled = false;
const sid = session.id;
api.sessions.history(sid)
.then((h) => { if (!cancelled) setDeskHistory(h); })
.catch(() => {});
return () => { cancelled = true; };
}, [expanded, loaded, session.id, wsEpoch, session.is_running]);
// Seed the Console + Debug terminal from the DB once per session. The live WS
// streams only show output from a *running* worker, so reopening a finished
// session (e.g. after an app restart) would leave both panels empty even though
// the shell I/O is persisted. Backfill from history, then let the WS append.
const histSeededRef = useRef<string | null>(null);
useEffect(() => {
if (histSeededRef.current === session.id) return;
histSeededRef.current = session.id;
let cancelled = false;
api.sessions.consoleHistory(session.id)
.then((r) => { if (!cancelled && r.text) setConsoleLines((prev) => [r.text, ...prev]); })
.catch(() => {});
api.sessions.terminalHistory(session.id)
.then((r) => { if (!cancelled && r.text) setTermLines((prev) => [r.text, ...prev]); })
.catch(() => {});
return () => { cancelled = true; };
}, [session.id]);
// Terminal WebSocket. Reconnects when a worker (re)starts — same triggers as the
// activity stream (session.is_running / wsEpoch) — so the terminal isn't stuck on
// "Waiting for output…" for a desk that wasn't running when the panel opened, or
// after a resume / auto-continue spins up a fresh worker.
useEffect(() => {
const ws = api.sessions.terminalWs(session.id, (chunk) => {
if (chunk.includes("terminal output only available for sessions started from this workbench")) return;
setTermLines((prev) => [...prev, chunk]);
});
termWsRef.current = ws;
return () => { ws.close(); termWsRef.current = null; };
}, [session.id, session.is_running, wsEpoch]);
// Console WebSocket — clean shell I/O only (no agent chatter).
useEffect(() => {
const ws = api.sessions.consoleWs(session.id, (chunk) => {
if (chunk) setConsoleLines((prev) => [...prev, chunk]);
});
return () => ws.close();
}, [session.id, session.is_running, wsEpoch]);
useEffect(() => {
const container = panelContentRef.current;
if (!container || tab !== "console" || consoleView !== "agent") return;
scrollContainerToBottom(container);
}, [consoleLines.length, tab, consoleView]);
useEffect(() => {
const container = panelContentRef.current;
if (!container || tab !== "console" || consoleView !== "debug") return;
scrollContainerToBottom(container);
}, [termLines.length, tab, consoleView]);
// Keep the Files tab in sync with the workspace: refresh the directory tree as
// the agent works (activity grows) so newly-created files appear without a manual
// reopen. Also poll on a short interval while the panel is open, so files written
// *outside* the activity stream (e.g. AUDIT.md / PROGRESS.md from the manager)
// show up promptly instead of waiting for the agent's next turn.
useEffect(() => {
if (!expanded) return;
loadWorkspaceFiles(session.id).then(setFiles).catch(() => {});
const iv = setInterval(() => {
loadWorkspaceFiles(session.id).then(setFiles).catch(() => {});
}, 3000);
return () => clearInterval(iv);
}, [session.id, activity.length, expanded]); // eslint-disable-line react-hooks/exhaustive-deps
useLayoutEffect(() => {
if (!autoExpand) return;
setExpanded(true);
if (deskRef.current) {
if (openAnchor) {
setPanelDeskOffset(centeredAnchorToDeskOffset(deskRef.current, openAnchor.left, openAnchor.top, PANEL_WIDTH));
} else {
setPanelDeskOffset(defaultBelowDeskOffset(deskRef.current, PANEL_WIDTH));
}
}
onPanelActivate?.();
onOpen?.();
onFocus?.();
api.sessions.activity(session.id).then(setActivity).catch(() => {});
loadWorkspaceFiles(session.id).then(setFiles).catch(() => {});
setLoaded(true);
onAutoExpanded?.();
}, []); // eslint-disable-line react-hooks/exhaustive-deps
// Tell the parent when this desk's panel is open, so its agent keeps hovering on
// the desk the whole time the panel is up (not just while it's the focused desk).
useEffect(() => {
onOpenChange?.(expanded);
}, [expanded]); // eslint-disable-line react-hooks/exhaustive-deps
useEffect(() => () => onOpenChange?.(false), []); // report closed on unmount
useEffect(() => {
if (!expanded) return;
function onResize() {
setViewportH(window.innerHeight);
setViewportW(window.innerWidth);
}
onResize();
window.addEventListener("resize", onResize);
return () => window.removeEventListener("resize", onResize);
}, [expanded]);
const isRunning = !session.ended_at && session.is_running !== false;
// Forget locally-tracked sent messages when switching to a different desk.
useEffect(() => { setSentMsgs([]); setInterruptedReplies([]); }, [session.id]);
// Clear the "Resuming…" state once the session is actually running again.
useEffect(() => { if (isRunning) setResuming(false); }, [isRunning]);
// Save EVERYTHING about this desk to a .tar.gz: its sandbox (private state.db =
// session history + model calls), workspace snapshot, run/profile history, and
// markers. Streamed straight to disk via the archive URL (load it back with the
// header's "Load desk").
function handleExportDesk() {
if (exporting) return;
setExporting(true);
try {
const a = document.createElement("a");
a.href = api.sessions.archiveUrl(session.id);
a.download = `desk-${session.id}.tar.gz`;
document.body.appendChild(a);
a.click();
a.remove();
} finally {
// The browser handles the download out-of-band; reset the label shortly after.
setTimeout(() => setExporting(false), 1200);
}
}
// One-click resume of an idle/finished desk — no follow-up text needed.
async function handleStop() {
// Temporarily stop this desk's agent (the worker exits; Resume restarts it).
try { await api.sessions.interrupt(session.id); } catch { /* already idle */ }
onInterrupt?.(session.id);
}
async function handleResume() {
if (resuming || isRunning) return;
setResuming(true);
onActivity?.(); // walk the avatar over to this desk
try {
await api.sessions.wake(session.id); // clear sleeping flag if set
await api.sessions.resume(session.id, "Continue.", undefined, undefined, reasoningEffort, apiMode);
setWsEpoch((e) => e + 1);
} catch { /* 409 = already running */ }
// Safety net: drop the spinner even if the poll never reports is_running.
setTimeout(() => setResuming(false), 6000);
}
// Keep the toggle in sync with the server-reported state (5s poll).
useEffect(() => { setAutoContinue(!!session.auto_continue); }, [session.auto_continue]);
async function toggleAutoContinue() {
const next = !autoContinue;
setAutoContinue(next); // optimistic
try { await api.sessions.autoContinue(session.id, next); }
catch { setAutoContinue(!next); }
}
async function handleSend() {
const msg = chatInput.trim();
if ((!msg && chatImages.length === 0) || sending) return;
const interrupting = isRunning; // barge in if the agent is mid-turn
onActivity?.();
setSending(true);
setChatInput("");
const attachments = chatImages.map((img) => ({ name: img.name, data: img.data }));
setChatImages([]);
// Preserve any in-flight partial agent response before we clear live state, so a
// barge-in doesn't erase what the agent had already started saying (that tail is
// never persisted to the DB).
const partial = liveStreamRef.current.trim();
if (interrupting && partial) {
setInterruptedReplies((prev) => [...prev, { text: liveStreamRef.current, ts: new Date().toISOString() }]);
}
// Optimistic status so the user gets immediate feedback — the new worker takes
// a few seconds to spawn + reprocess the conversation, and is_running only flips
// on the next 5s poll, so without this the panel looks frozen during the wait.
setLiveState({ streamText: "", statusLine: "Waiting for model…" });
setLiveEvents([]);
// Track the message client-side so it stays in the feed until the DB has it.
setSentMsgs((prev) => [...prev, { text: msg, ts: new Date().toISOString() }]);
try {
// While running, redirect() interrupts the in-flight turn then resumes with
// the new message; when idle, resume() just continues. bump wsEpoch so the
// activity WS reconnects to stream the fresh worker.
if (interrupting) await api.sessions.redirect(session.id, msg || " ", attachments.length ? attachments : undefined, reasoningEffort, apiMode);
else await api.sessions.resume(session.id, msg || "Continue.", attachments.length ? attachments : undefined, undefined, reasoningEffort, apiMode);
setWsEpoch((e) => e + 1);
} catch { /* WS stream handles everything else */ }
setSending(false);
}
async function openPanel() {
onSelect();
onFocus?.();
if (!loaded) {
setLoading(true);
try {
const [acts, fls] = await Promise.all([
api.sessions.activity(session.id),
loadWorkspaceFiles(session.id),
]);
setActivity(acts);
setFiles(fls);
setLoaded(true);
} finally {
setLoading(false);
}
}
setExpanded(true);
resetPanelUserPos();
resetPanelUserSize();
if (deskRef.current) {
setPanelDeskOffset(defaultBelowDeskOffset(deskRef.current, PANEL_WIDTH));
}
onPanelActivate?.();
onOpen?.();
requestAnimationFrame(scrollPanelIntoView);
}
// The panel is anchored below the desk in viewport space, so for a desk on the
// bottom team row it opens below the fold. Nudge the floor down just enough to
// reveal the panel's bottom (the floor reserves slack below the last row for this).
function scrollPanelIntoView() {
const desk = deskRef.current;
if (!desk) return;
const scroller = desk.closest("[data-floor-scroll]") as HTMLElement | null;
if (!scroller) return;
const panelH = Math.max(PANEL_MIN_HEIGHT, Math.min(PANEL_PREF_HEIGHT, teamRowHeight));
const panelBottom = desk.getBoundingClientRect().bottom + 10 + panelH; // 10 = gap below desk
const overflow = panelBottom - scroller.getBoundingClientRect().bottom;
if (overflow > 0) scroller.scrollBy({ top: overflow + 16, behavior: "smooth" });
}
function handleClick() {
if (deskClickTimerRef.current) clearTimeout(deskClickTimerRef.current);
deskClickTimerRef.current = setTimeout(() => {
deskClickTimerRef.current = null;
if (expanded) {
setExpanded(false);
setIsMaximized(false);
} else {
void openPanel();
}
}, 220);
}
function handleDeskDoubleClick(e: React.MouseEvent) {
e.stopPropagation();
// Swallow the double-click: cancel the pending single-click so the desk's
// open/closed state is left unchanged. Double-click never maximizes.
if (deskClickTimerRef.current) {
clearTimeout(deskClickTimerRef.current);
deskClickTimerRef.current = null;
}
}
function toggleMaximized() {
setIsMaximized((m) => !m);
}
const deskColors = ["#6b4c2a", "#5a3e22", "#7a5530", "#4e3018", "#635028", "#724830"];
const deskColor = deskColors[index % deskColors.length];
const deskTitle = deskDisplayTitle(session.title, session.title_summary, taskContent);
// Spawned subagents grouped into delegation rounds (each renders as its own
// desk: bubble → expandable panel) shown beside the parent desk.
const subagentRounds = groupSubagentsIntoRounds(Object.values(subagents));
const subagentCount = subagentRounds.reduce((n, r) => n + r.length, 0);
const tabItems: { id: DeskTab; label: string }[] = [
{ id: "activity", label: "⚡ Activity" },
{ id: "tasks", label: "📋 Tasks" },
...(files.length > 0 ? [{ id: "files" as DeskTab, label: "📁 Files" }] : []),
{ id: "console" as DeskTab, label: "🖥 Console" },
];
// Inspect needs more room; clamp to the viewport so a wide panel never
// overflows the screen edge.
const inspectActive = tab === "console" && consoleView === "inspect";
const panelW = inspectActive
? Math.min(INSPECT_PANEL_WIDTH, Math.max(PANEL_WIDTH, viewportW - 24))
: PANEL_WIDTH;
const floatingLayout = useMemo(
() => (panelDisplayPos ? computeFloatingPanelLayout(panelDisplayPos.top, teamRowHeight) : null),
[panelDisplayPos, teamRowHeight],
);
const maximizedLayout = useMemo(
() => computeMaximizedPanelLayout(viewportW, viewportH),
[viewportW, viewportH],
);
const autoPanelHeight = floatingLayout?.height ?? PANEL_PREF_HEIGHT;
const effectivePanelW = panelUserSize?.width ?? panelW;
const effectivePanelH = panelUserSize?.height ?? autoPanelHeight;
function getPanelSize(): PanelSize {
return { width: effectivePanelW, height: effectivePanelH };
}
const panelResizeHandle = bindPanelResize(getPanelSize);
function getPanelTopLeft(): { top: number; left: number } {
if (panelDragging && panelDragPos) return panelDragPos;
if (panelDisplayPos && panelRoot) {
return rowToViewport(panelRoot, {
top: floatingLayout?.top ?? panelDisplayPos.top,
left: panelDisplayPos.left,
});
}
return { top: 0, left: 0 };
}
const panelDragHandle = bindPanelDrag(getPanelTopLeft);
const panelViewportPos = getPanelTopLeft();
const panelStyle: React.CSSProperties = isMaximized ? {
position: "fixed",
top: maximizedLayout.top,
left: maximizedLayout.left,
width: maximizedLayout.width,
height: maximizedLayout.height,
maxHeight: "none",
transform: "none",
} : {
position: "fixed",
top: panelViewportPos.top,
left: panelViewportPos.left,
transform: "none",
width: effectivePanelW,
height: effectivePanelH,
maxHeight: effectivePanelH,
};
const panel = expanded && panelDeskOffset && (isMaximized || (panelRoot && panelDisplayPos)) ? createPortal(
<div
tabIndex={0}
style={{
...panelStyle,
background: "var(--bg2)",
border: "1px solid var(--card-border)",
borderRadius: 8,
overflow: "hidden",
boxShadow: "0 8px 32px rgba(0,0,0,0.6)",
zIndex: panelZIndex ?? DESK_PANEL_Z_BASE,
display: "flex",
flexDirection: "column",
transition: (panelDragging || panelResizing) ? "none" : "width 0.18s ease, height 0.18s ease, top 0.18s ease, left 0.18s ease",
outline: "none",
}}
onMouseDown={(e) => { e.stopPropagation(); onPanelActivate?.(); }}
onClick={(e) => e.stopPropagation()}
// Don't maximize on double-click inside the panel body (e.g. selecting a word
// in the activity feed). Maximize stays on the tab-bar/header and the ⊞ button.
onDoubleClick={(e) => e.stopPropagation()}
onKeyDown={(e) => {
// ⌘F is intentionally NOT intercepted — it falls through to the browser's
// native in-page find, which is what searches this desk's content now.
if ((e.ctrlKey || e.metaKey) && e.key === "a") {
// Leave select-all alone inside editable fields (e.g. the chat composer)
// — only "select all" the read-only content when focus is there.
const t = e.target as HTMLElement | null;
if (t && (t.tagName === "INPUT" || t.tagName === "TEXTAREA" || t.isContentEditable)) return;
const el = panelContentRef.current;
if (!el) return;
e.preventDefault();
const range = document.createRange();
range.selectNodeContents(el);
window.getSelection()?.removeAllRanges();
window.getSelection()?.addRange(range);
}
}}
>
{/* Tabs — drag the bar to reposition; scroll tab labels; keep controls pinned right */}
<div
{...(!isMaximized ? panelDragHandle : {})}
onDoubleClick={(e) => { e.stopPropagation(); toggleMaximized(); }}
style={{
display: "flex", alignItems: "stretch",
borderBottom: "1px solid var(--card-border)",
padding: "0 0 0 8px", flexShrink: 0, minWidth: 0,
cursor: !isMaximized ? (panelDragging ? "grabbing" : "grab") : undefined,
}}
title={!isMaximized ? "Drag to move · double-click to maximize" : "Double-click to restore"}
>
<div style={{ display: "flex", flex: 1, minWidth: 0, overflowX: "auto" }}>
{tabItems.map(({ id, label }) => (
<button
key={id}
onClick={(e) => {
e.stopPropagation();
setTab(id);
// Opening/clicking the Files tab pulls the latest workspace tree.
if (id === "files") loadWorkspaceFiles(session.id).then(setFiles).catch(() => {});
}}
onDoubleClick={(e) => e.stopPropagation()}
style={{
padding: "8px 10px",
fontSize: 12, fontWeight: tab === id ? 600 : 400,
color: tab === id ? "var(--accent2)" : "var(--text-dim)",
borderBottom: tab === id ? "2px solid var(--accent2)" : "2px solid transparent",
marginBottom: -1, whiteSpace: "nowrap",
}}
>
{label}
</button>
))}
</div>
<div style={{ display: "flex", flexShrink: 0, alignItems: "center", paddingRight: 4 }}>
<button
onClick={(e) => { e.stopPropagation(); toggleMaximized(); }}
onDoubleClick={(e) => e.stopPropagation()}
title={isMaximized ? "Restore" : "Maximize (full screen)"}
style={{ fontSize: 14, color: "var(--text-dim)", padding: "8px 6px" }}
>{isMaximized ? "⊡" : "⊞"}</button>
<button
onClick={(e) => { e.stopPropagation(); setExpanded(false); setIsMaximized(false); setPanelDeskOffset(null); resetPanelUserPos(); resetPanelUserSize(); }}
onDoubleClick={(e) => e.stopPropagation()}
style={{ fontSize: 16, color: "var(--text-dim)", padding: "8px 6px" }}
>×</button>
</div>
</div>
{/* Content */}
<div ref={panelContentRef} style={{ flex: 1, overflowY: "auto", minHeight: 180 }}>
{tab === "activity" && (
<>
{/* Feed ↔ Overview view switch (sticky at the top of the feed) */}
<div style={{
position: "sticky", top: 0, zIndex: 2,
display: "flex", gap: 6, alignItems: "center",
padding: "6px 10px", background: "var(--bg2)",
borderBottom: "1px solid var(--card-border)",
}}>
{(["feed", "overview", "history"] as const).map((v) => (
<button
key={v}
onClick={() => setActivityView(v)}
style={{
fontSize: 11, padding: "3px 10px", borderRadius: 6, cursor: "pointer",
background: activityView === v ? "var(--accent2)" : "transparent",
color: activityView === v ? "#fff" : "var(--text-dim)",
border: `1px solid ${activityView === v ? "var(--accent2)" : "var(--card-border)"}`,
}}
>
{v === "feed" ? "💬 Feed" : v === "overview" ? "📊 Overview" : "📜 History"}
</button>
))}
<div style={{ flex: 1 }} />
<button
onClick={handleExportDesk}
disabled={exporting}
title="Save this desk to a JSON file (config, TASK.md, and session history)"
style={{
fontSize: 11, padding: "3px 10px", borderRadius: 6,
cursor: exporting ? "default" : "pointer",
background: "transparent", color: "var(--text-dim)",
border: "1px solid var(--card-border)",
}}
>
{exporting ? "Saving…" : "💾 Save desk"}
</button>
</div>
{activityView === "overview" ? (
<ActivityOverview
events={overviewReady ? overviewDesk!.events : activity}
liveEvents={liveEvents}
taskContent={taskContent}
startTime={overviewReady ? overviewDesk!.started_at ?? session.started_at : session.started_at}
deskEndTime={overviewReady ? overviewDesk!.last_at ?? undefined : undefined}
endTime={!session.is_running ? (() => {
// Finished desk: pin the chart to the run's real end, not now().
const iso = (overviewReady ? overviewDesk!.last_at : null) ?? session.ended_at;
const t = iso ? Date.parse(iso) / 1000 : NaN;
return Number.isFinite(t) ? t : undefined;
})() : undefined}
/>
) : activityView === "history" ? (
<DeskHistoryView history={deskHistory} />
) : (
<ActivityFeed
events={activity}
liveEvents={liveEvents}
loading={loading}
isActive={!session.ended_at}
liveState={liveState}
verbose={verbose}
immediateUserMessage={taskContent}
immediateUserImages={taskImages}
pendingUserMessages={sentMsgs}
pendingAgentMessages={interruptedReplies}
scrollContainerRef={panelContentRef}
/>
)}
</>
)}
{tab === "tasks" && <TasksView sessionId={session.id} onTaskSaved={() => {
api.sessions.resume(session.id, "TASK.md has been updated. Read it and execute the tasks described there.", undefined, undefined, reasoningEffort, apiMode)
.then(() => setWsEpoch((e) => e + 1))
.catch(() => {});
}} onAskManager={onAskManager} />}
{tab === "files" && (
<FilesView
nodes={files}
onRefresh={refreshFiles}
refreshing={filesRefreshing}
onPreview={(d) => {
refreshFiles();
onPreview(d);
}}
/>
)}
{tab === "console" && (
<>
{/* Agent Console ↔ Debug terminal sub-view switch (sticky at top) */}
<div style={{
position: "sticky", top: 0, zIndex: 2,
display: "flex", gap: 6, alignItems: "center",
padding: "6px 10px", background: "var(--bg2)",
borderBottom: "1px solid var(--card-border)",
}}>
{([
["debug", "🐞 Debug terminal", "Full worker stream: tool calls, args, results, reasoning, and log lines"],
["agent", "🤖 Agent Console", "What the agent's shell commands print — like watching a person run them in a terminal"],
["inspect", "🔍 Inspect", "Run an ad-hoc tool against this desk and view its command/output"],
] as const).map(([v, lbl, tip]) => (
<button
key={v}
onClick={() => setConsoleView(v)}
title={tip}
style={{
fontSize: 11, padding: "3px 10px", borderRadius: 6, cursor: "pointer",
background: consoleView === v ? "var(--accent2)" : "transparent",
color: consoleView === v ? "#fff" : "var(--text-dim)",
border: `1px solid ${consoleView === v ? "var(--accent2)" : "var(--card-border)"}`,
}}
>
{lbl}
</button>
))}
</div>
{consoleView === "agent" ? (
<div style={{
fontFamily: "monospace", fontSize: 11, lineHeight: 1.6,
padding: "8px 10px", whiteSpace: "pre-wrap", wordBreak: "break-all",
color: "#d4d4d4", background: "#0d0d14", minHeight: 200,
}}>
{consoleLines.length === 0
? <span style={{ color: "#555" }}>Waiting for commands…{"\n"}(output appears here when the agent runs terminal/execute_code commands)</span>
: <span dangerouslySetInnerHTML={{ __html: escapeHtml(applyCarriageReturns(stripAnsi(consoleLines.join(""))))
.replace(/\$ (.+)/g, '<span style="color:#4ec9b0">$ <span style="color:#9cdcfe">$1</span></span>') }} />
}
<div ref={consoleBottomRef} />
</div>
) : consoleView === "debug" ? (
<div style={{
fontFamily: "monospace", fontSize: 11, lineHeight: 1.5,
padding: "8px 10px", whiteSpace: "pre-wrap", wordBreak: "break-all",
color: "#a0ffa0", background: "#080810", minHeight: 200,
}}>
{termLines.length === 0
? <span style={{ color: "#555" }}>Waiting for output…</span>
: <span>{applyCarriageReturns(stripAnsi(termLines.join("")))}</span>
}
<div ref={termBottomRef} />
</div>
) : (
<InspectPanel sessionId={session.id} />
)}
</>
)}
</div>
{/* Auto-continue (heartbeat) toggle — hidden until the heartbeat is reliable
on open-ended/looping tasks (see AUTO_CONTINUE_UI_ENABLED above). */}
{AUTO_CONTINUE_UI_ENABLED && tab === "activity" && (
<div style={{ display: "flex", alignItems: "center", gap: 8, padding: "6px 8px 0" }}>
<button
onClick={toggleAutoContinue}
title="Heartbeat: when on, the agent auto-resumes after each turn — checking TASK.md against its progress — until the goal is judged complete (capped). Use for long, multi-step tasks. Stop/interrupt turns it off."
style={{
fontSize: 10, padding: "2px 9px", borderRadius: 11, cursor: "pointer",
display: "flex", alignItems: "center", gap: 5,
background: autoContinue ? "rgba(78,220,163,0.15)" : "transparent",
color: autoContinue ? "var(--green)" : "var(--text-dim)",
border: `1px solid ${autoContinue ? "var(--green)" : "var(--card-border)"}`,
}}
>
🔁 Auto-continue {autoContinue ? "on" : "off"}
</button>
{autoContinue && (
<span style={{ fontSize: 9.5, color: "var(--text-dim)" }}>
keeps working until TASK.md is done
</span>
)}
</div>
)}
{/* Chat input */}
{tab === "activity" && (
<div
style={{
display: "flex", flexDirection: "column", gap: 6, padding: "8px",
borderTop: `1px solid ${chatDragOver ? "var(--accent2)" : "var(--card-border)"}`,
background: chatDragOver ? "rgba(100,160,255,0.06)" : "var(--bg2)", flexShrink: 0,
transition: "background 0.15s, border-color 0.15s",
}}
onDoubleClick={(e) => e.stopPropagation()}
onDragOver={(e) => { e.preventDefault(); setChatDragOver(true); }}
onDragLeave={() => setChatDragOver(false)}
onDrop={async (e) => {
e.preventDefault();
setChatDragOver(false);
const { text, images } = await _processFiles(Array.from(e.dataTransfer.files));
if (text) setChatInput((prev) => prev ? `${prev}\n${text}` : text);
if (images.length) setChatImages((prev) => [...prev, ...images]);
}}
>
{chatImages.length > 0 && (
<div style={{ display: "flex", gap: 4, flexWrap: "wrap" }}>
{chatImages.map((img, i) => (
<div key={i} style={{ position: "relative" }}>
<img src={img.url} alt={img.name} title={img.name}
style={{ height: 52, maxWidth: 80, objectFit: "cover", borderRadius: 4,
border: "1px solid var(--card-border)", display: "block" }} />
<button onClick={() => setChatImages((prev) => prev.filter((_, j) => j !== i))}
style={{ position: "absolute", top: -4, right: -4, width: 16, height: 16,
borderRadius: "50%", fontSize: 9,
background: "var(--red)", color: "white", border: "none", cursor: "pointer",
display: "flex", alignItems: "center", justifyContent: "center" }}>✕</button>
</div>
))}
</div>
)}
<div style={{ display: "flex", gap: 6 }}>
<input
value={chatInput}
onChange={(e) => setChatInput(e.target.value)}
onFocus={() => onFocus?.()}
onKeyDown={(e) => { if (e.key === "Enter" && !e.shiftKey) { e.preventDefault(); handleSend(); } }}
placeholder={chatDragOver ? "Drop image or file here…" : isRunning ? "Redirect the agent — interrupts the current turn…" : "Send a follow-up… (drop files/images to attach)"}
style={{
flex: 1, background: "var(--bg)", border: "1px solid var(--card-border)",
borderRadius: 6, padding: "6px 10px", fontSize: 12,
color: "var(--text)", outline: "none",
}}
/>
<button
onClick={handleSend}
disabled={sending || (!chatInput.trim() && chatImages.length === 0)}
style={{
padding: "6px 12px", borderRadius: 6, fontSize: 12,
background: sending || (!chatInput.trim() && chatImages.length === 0) ? "var(--bg)" : (isRunning ? "var(--yellow)" : "var(--accent2)"),
color: sending || (!chatInput.trim() && chatImages.length === 0) ? "var(--text-dim)" : (isRunning ? "#1a1a2e" : "white"),
border: "1px solid var(--card-border)",
cursor: sending || (!chatInput.trim() && chatImages.length === 0) ? "default" : "pointer",
flexShrink: 0,
}}
>
{sending ? "…" : "Send"}
</button>
</div>
</div>
)}
{!isMaximized && (
<PanelResizeHandle active={panelResizing} bind={panelResizeHandle} />
)}
</div>,
document.body,
) : null;
return (
<>
<div
ref={deskRef}
style={{ display: "flex", flexDirection: "column", alignItems: "center", position: "relative" }}
>
{/* Close button */}
<button
onClick={(e) => { e.stopPropagation(); onClose(); }}
style={{
position: "absolute", top: -8, right: -8,
width: 18, height: 18, borderRadius: "50%",
background: "var(--bg2)", border: "1px solid var(--card-border)",
color: "var(--text-dim)", fontSize: 11, zIndex: 10,
display: "flex", alignItems: "center", justifyContent: "center",
cursor: "pointer",
}}
title="Delete desk (removes session data)"
>×</button>
{/* Spawned subagents — each its own desk (bubble → expandable panel),
grouped by delegation round in the gap to the right of this desk. */}
{subagentCount > 0 && (
<div style={{
position: "absolute", left: "100%", top: 0, marginLeft: 10, zIndex: 5,
display: "flex", flexDirection: "column", gap: 10, alignItems: "flex-start",
maxWidth: 168,
}}>
{subagentRounds.map((round, ri) => {
const open = expandedRounds.has(ri);
const anyRunning = round.some(({ rec }) => rec.status === "running");
return (
<div key={ri} style={{ display: "flex", flexDirection: "column", gap: 4 }}>
<button
onClick={(e) => {
e.stopPropagation();
setExpandedRounds((prev) => {
const next = new Set(prev);
next.has(ri) ? next.delete(ri) : next.add(ri);
return next;
});
}}
title={open ? "Collapse round" : "Expand round"}
style={{
display: "flex", alignItems: "center", gap: 4, cursor: "pointer",
fontSize: 9, textTransform: "uppercase", letterSpacing: 0.5,
color: "var(--text-dim)", fontWeight: 600, whiteSpace: "nowrap",
}}
>
<span style={{ display: "inline-block", width: 7 }}>{open ? "▾" : "▸"}</span>
{subagentRounds.length > 1 ? `Round ${ri + 1}` : "Subagents"}
<span style={{ opacity: 0.8 }}>· {round.length}</span>
{anyRunning && (
<span style={{
width: 6, height: 6, borderRadius: "50%",
background: "var(--red)", marginLeft: 2,
}} />
)}
</button>
{open && (
<div style={{ display: "flex", flexWrap: "wrap", gap: 6, alignItems: "flex-start" }}>
{round.map(({ rec, index }) => (
<SubagentDesk key={rec.subagent_id} rec={rec} index={index} />
))}
</div>
)}
</div>
);
})}
</div>
)}
{/* Clickable desk body */}
<div
style={{
width: 200, cursor: "pointer", userSelect: "none", borderRadius: 8,
outline: deskFocused
? "2px solid var(--accent2)"
: isActive
? "2px solid var(--accent2)"
: searchMatch
? "2px solid var(--yellow)"
: "2px solid transparent",
outlineOffset: 4,
boxShadow: searchMatch && !isActive ? "0 0 12px rgba(255,213,79,0.45)" : "none",
transition: "outline-color 0.3s ease, box-shadow 0.3s ease",
}}
onClick={handleClick}
onDoubleClick={handleDeskDoubleClick}
title={expanded ? "Click to close" : "Click to open"}
>
{/* Monitor */}
<div style={{
width: 120, height: 80, margin: "0 auto",
background: "#1a1a2e", border: "3px solid #333",
borderRadius: "6px 6px 2px 2px",
position: "relative", display: "flex", alignItems: "center", justifyContent: "center",
overflow: "hidden",
}}>
<div style={{ padding: 6, width: "100%", height: "100%", overflow: "hidden" }}>
{[...Array(5)].map((_, i) => (
<div key={i} style={{
height: 4, margin: "3px 2px",
background: i === 0 ? "var(--accent2)" : "rgba(255,255,255,0.15)",
borderRadius: 2,
width: i === 0 ? "70%" : i === 2 ? "55%" : i === 4 ? "40%" : "85%",
animation: isActive && !session.ended_at && session.is_running !== false
? `pulse-line 2s ${i * 0.3}s ease-in-out infinite`
: "none",
}} />
))}
</div>
<div style={{
position: "absolute", top: 5, right: 5,
width: 6, height: 6, borderRadius: "50%",
background: statusColor(session),
boxShadow: session.is_running ? `0 0 6px ${statusColor(session)}` : "none",
}} />
</div>
<div style={{ width: 8, height: 10, margin: "0 auto", background: "#333" }} />
<div style={{ width: 40, height: 4, margin: "0 auto", background: "#333", borderRadius: 2 }} />
<div style={{
background: deskColor, height: 18, borderRadius: "4px 4px 2px 2px", marginTop: 4,
boxShadow: "inset 0 -3px 0 rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.1)",
display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0 8px",
}}>
<div style={{ display: "flex", gap: 4, alignItems: "center" }}>
<div style={{ width: 12, height: 10, background: "#4a3a2a", borderRadius: 1, opacity: 0.7 }} />
<div style={{ width: 4, height: 8, background: "#e94560", borderRadius: 1, opacity: 0.8 }} />
</div>
<div style={{ fontSize: 10, color: "rgba(255,255,255,0.5)" }}>{session.message_count} msgs</div>
</div>
<div style={{
background: `color-mix(in srgb, ${deskColor} 70%, black)`,
height: 14, borderRadius: "2px 2px 6px 6px", boxShadow: "0 4px 8px rgba(0,0,0,0.4)",
}} />
<div style={{ marginTop: 6, padding: "4px 6px", textAlign: "center" }}>
<div style={{
fontSize: 11, fontWeight: 600, color: "var(--text)",
overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap", maxWidth: 190,
}} title={deskTitle}>{deskTitle}</div>
<div style={{ display: "flex", justifyContent: "center", gap: 8, marginTop: 2 }}>
<span style={{ fontSize: 10, color: statusColor(session) }}>● {statusLabel(session)}</span>
{session.task_solved && (
<span
title="Manager audit passed — all checks green"
style={{ fontSize: 10, color: "var(--green)", fontWeight: 700 }}
>✓ solved</span>
)}
<span style={{ fontSize: 10, color: "var(--text-dim)" }}>{elapsedLabel(session)}</span>
</div>
{session.title_summary && session.title_summary.trim() !== deskTitle && (
<div style={{
marginTop: 3, fontSize: 9, color: "var(--accent2)",
overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap",
maxWidth: 190, fontStyle: "italic",
}} title={session.title_summary}>
{session.title_summary}
</div>
)}
{/* Profile · model line — under the status, above resume/stop. */}
{(() => {
const label = profileLabel || "Default";
const model = profileModel || session.agent_model || session.model || "";
return (
<div
title={`Profile: ${label}${model ? ` · Model: ${model}` : ""}`}
style={{
display: "flex", alignItems: "center", justifyContent: "center", gap: 5,
marginTop: 4, maxWidth: 190, marginInline: "auto",
}}
>
<span style={{
width: 7, height: 7, borderRadius: "50%", flexShrink: 0,
background: profileColor || "#6a7a9a",
}} />
<span style={{ fontSize: 9.5, fontWeight: 600, color: "var(--text)", whiteSpace: "nowrap" }}>
{label}
</span>
{model && (
<span style={{
fontSize: 9, color: "var(--text-dim)", fontFamily: "ui-monospace, monospace",
overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap", minWidth: 0,
}}>· {model}</span>
)}
</div>
);
})()}
{!isRunning ? (
<button
onClick={(e) => { e.stopPropagation(); handleResume(); }}
disabled={resuming}
title="Resume this desk's last task"
style={{
marginTop: 8, padding: "3px 14px", borderRadius: 6, fontSize: 11,
background: resuming ? "var(--bg)" : "var(--accent2)",
color: resuming ? "var(--text-dim)" : "white",
border: "1px solid var(--card-border)",
cursor: resuming ? "default" : "pointer",
}}
>
{resuming ? "Resuming…" : "▶ Resume"}
</button>
) : (
<button
onClick={(e) => { e.stopPropagation(); handleStop(); }}
title="Temporarily stop this agent (Resume to continue)"
style={{
marginTop: 8, padding: "3px 14px", borderRadius: 6, fontSize: 11,
background: "rgba(74,142,255,0.15)", color: "#4a8eff",
border: "1px solid #4a8eff", cursor: "pointer",
}}
>
⏸ Stop
</button>
)}
</div>
<div style={{ marginTop: 4, display: "flex", justifyContent: "center" }}>
<div style={{
fontSize: 20,
filter: expanded ? "drop-shadow(0 0 4px var(--accent2))" : "none",
transition: "filter 0.2s",
}}>
{expanded ? "📂" : "📁"}
</div>
</div>
</div>
</div>
{panel}
<style>{`
@keyframes pulse-line { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes think-pulse { 0%,100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
`}</style>
</>
);
}
|