Spaces:
Sleeping
Sleeping
File size: 64,425 Bytes
39b65d8 04adc51 39b65d8 | 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 | """
dashboard_server.py โ Interactive workspace dashboard backend.
Serves the dashboard HTML and provides API endpoints to launch, stop,
and monitor tools from the browser.
cd <workspace_dir>
.venv\\Scripts\\python dashboard_server.py
Then open http://localhost:9000
"""
import asyncio
import io
import json
import os
import signal
import socket
import struct
import subprocess
import sys
import tempfile
import time
import wave
from contextlib import asynccontextmanager
from pathlib import Path
from typing import Any
import numpy as np
from fastapi import FastAPI, HTTPException, WebSocket, WebSocketDisconnect
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse, JSONResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel
import httpx
import platform
import shutil
try:
import psutil
_HAS_PSUTIL = True
except ImportError:
psutil = None # type: ignore[assignment]
_HAS_PSUTIL = False
WORKSPACE = Path(__file__).parent.resolve()
# โโ Tool Registry โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Only these commands can be executed. No arbitrary input accepted.
TOOLS = {
"artemis": {"name": "ARTEMIS (Sage)", "cmd": [sys.executable, "tools/artemis_demo.py"], "cwd": "."},
"ears": {"name": "ARTEMIS Ears", "cmd": [sys.executable, "tools/ears_demo.py"], "cwd": "."},
"csm": {"name": "CSM Voice", "cmd": [sys.executable, "tools/csm_demo.py"], "cwd": "."},
"neural-sim": {"name": "Neural Simulation", "cmd": [sys.executable, "tools/neural_sim_demo.py"], "cwd": ".", "url": "http://localhost:8765"},
"artemis-server": {"name": "Artemis Server", "cmd": [sys.executable, "tools/artemis_demo.py"], "cwd": "."},
"comms": {"name": "Comms", "cmd": [sys.executable, "tools/comms_demo.py"], "cwd": "."},
"converter-gui": {"name": "Converter GUI", "cmd": [sys.executable, "tools/converter_demo.py"], "cwd": "."},
"gateway": {"name": "Gateway", "cmd": [sys.executable, "tools/gateway_demo.py"], "cwd": "."},
"mirror": {"name": "Mirror", "cmd": [sys.executable, "tools/mirror_demo.py"], "cwd": "."},
"ghidra": {"name": "Ghidra", "cmd": [sys.executable, "tools/ghidra_demo.py"], "cwd": "."},
"resource-guardian": {"name": "Resource Guardian", "cmd": [sys.executable, "tools/resource_guardian_demo.py"], "cwd": "."},
"quick-capture": {"name": "Quick Capture", "cmd": [sys.executable, "tools/quick_capture_demo.py"], "cwd": "."},
"pb-guardian": {"name": "Guardian Start", "cmd": [sys.executable, "tools/playbook_demo.py", "guardian-start"], "cwd": "."},
"pb-neural-sim": {"name": "Neural Sim Launch", "cmd": [sys.executable, "tools/playbook_demo.py", "neural-sim-launch"], "cwd": "."},
"pb-wsl-dep": {"name": "WSL Dep Check", "cmd": [sys.executable, "tools/playbook_demo.py", "wsl-dep-check"], "cwd": "."},
"pb-wsl-stop": {"name": "WSL Emergency Stop", "cmd": [sys.executable, "tools/playbook_demo.py", "wsl-emergency-stop"],"cwd": "."},
}
CATALOG = [
{
"id": "dashboard",
"name": "Workspace Dashboard",
"lane": "usable",
"category": "control",
"state": "operational",
"summary": "Primary browser GUI for operating the workspace without relying on VS Code for day-to-day use.",
"how_to_use": "Start dashboard_server.py, then open http://127.0.0.1:9000 in a browser.",
"dependencies": [".venv", "FastAPI", "Browser"],
"verification": "Production-ready; full browser/API validation recorded in session 049.",
"copy_cmd": ".venv\\Scripts\\python dashboard_server.py",
"url": "http://127.0.0.1:9000",
"anchor": "overview",
},
{
"id": "ie-explorer",
"name": "IE Explorer",
"lane": "usable",
"category": "tool",
"state": "operational",
"summary": "Index Explorer for scans, trees, lookup, and local Ollama-assisted file understanding.",
"how_to_use": "Run IE.py in GUI mode or use its CLI subcommands like tree, lookup, db-stats, and ai.",
"dependencies": ["Python", "Tkinter", "Optional: Ollama on 127.0.0.1:11434"],
"verification": "Core CLI and scan/index workflows were completed in sessions 052 through 055.",
"copy_cmd": ".venv\\Scripts\\python IE.py help",
"anchor": "workspace",
},
{
"id": "voice-chat",
"name": "Voice Chat Surface",
"lane": "usable",
"category": "interaction",
"state": "operational",
"summary": "Browser voice interaction pipeline using Whisper STT, Ollama, and Edge TTS directly from the dashboard.",
"how_to_use": "Open the voice chat panel from the dashboard and talk or type to the selected Ollama model.",
"dependencies": ["Microphone permission", "Ollama", "faster-whisper", "edge-tts"],
"verification": "Voice chat was previously integrated directly into the dashboard backend and UI.",
"action": "voice-chat",
"anchor": "ai-systems",
},
{
"id": "neural-sim",
"name": "Neural Simulation Dashboard",
"lane": "usable",
"category": "tool",
"state": "functional",
"summary": "3D browser dashboard for the neural simulation stack with live training and diagnostics.",
"how_to_use": "Launch the WSL service, then open the browser dashboard on localhost:8765.",
"dependencies": ["WSL", "Python3", "CUDA stack in WSL"],
"verification": "Marked functional in repo state with training, metrics, and self-modify working.",
"tool_id": "neural-sim",
"copy_cmd": "wsl python3 toolbox/neural-sim/launch.py",
"url": "http://localhost:8765",
"anchor": "ai-systems",
},
{
"id": "ghidra",
"name": "Ghidra 12.0.4",
"lane": "usable",
"category": "analysis",
"state": "ready",
"summary": "Full static analysis distribution for binaries, APKs, DEX, ELF, and PE files.",
"how_to_use": "Launch Ghidra from the dashboard or run ghidraRun.bat directly.",
"dependencies": ["Bundled Ghidra", "Java runtime support"],
"verification": "Workspace-local Ghidra distribution is installed and documented as ready to use.",
"tool_id": "ghidra",
"copy_cmd": "ghidra_12.0.4_PUBLIC\\ghidraRun.bat",
"anchor": "analysis",
},
{
"id": "android-analysis",
"name": "Android Analysis Stack",
"lane": "usable",
"category": "analysis",
"state": "ready",
"summary": "Workspace-local ADB, Frida server binaries, Objection, Wireshark, Zeek, and nDPI commands.",
"how_to_use": "Use the copied commands for ADB, Frida, tshark, Zeek, or nDPI from the dashboard.",
"dependencies": ["adb/ local copy", "Optional Android device", "Optional WSL for Zeek/nDPI"],
"verification": "Tool paths and usage notes are already wired into the dashboard and repo instructions.",
"copy_cmd": "adb\\adb.exe devices",
"anchor": "analysis",
},
{
"id": "playbooks",
"name": "Playbook Runner",
"lane": "usable",
"category": "automation",
"state": "ready",
"summary": "Approved automation playbooks for guardian start, WSL dependency checks, and emergency stop live in one place.",
"how_to_use": "Run a playbook from the dashboard when you want a predefined automation path instead of typing commands manually.",
"dependencies": ["Python .venv", "scripts/playbook.py", "Relevant target environment"],
"verification": "Playbook invocations were fixed and validated during earlier dashboard testing.",
"anchor": "playbooks",
},
{
"id": "workspace-memory",
"name": "Workspace Memory And Archive",
"lane": "usable",
"category": "support",
"state": "ready",
"summary": "Project memory, archive workflow, and session history are present as support surfaces and should remain accessible from the GUI.",
"how_to_use": "Use this area when you need workspace state, archive workflow, or project memory references without hunting through folders manually.",
"dependencies": ["conversation-archive/", "memory/", "repo state discipline"],
"verification": "Archive and project-state workflow are already established and documented in this workspace.",
"anchor": "workspace",
},
{
"id": "links-library",
"name": "Links Library",
"lane": "usable",
"category": "reference",
"state": "ready",
"summary": "Curated topic files of reference URLs remain useful as a finished support surface rather than active development work.",
"how_to_use": "Browse topic files when you need reference material or external resources relevant to a project area.",
"dependencies": ["Links/ topic files"],
"verification": "The links library is documented as a standing workspace asset, not an in-progress feature.",
"anchor": "workspace",
},
{
"id": "reference-library",
"name": "Reference APK Library",
"lane": "usable",
"category": "reference",
"state": "ready",
"summary": "The decompiled APK study library is a finished reference surface even though it is not an end-user runtime tool.",
"how_to_use": "Use it for architectural study and design reference, not as a runnable product.",
"dependencies": ["toolbox reference APK folders"],
"verification": "The library is already documented as study-only and structurally present in the workspace.",
"anchor": "reference-apks",
},
{
"id": "artemis",
"name": "ARTEMIS Runtime",
"lane": "workbench",
"category": "runtime",
"state": "active-chain",
"summary": "Primary AI runtime under active integration work. Current focus is replacing the stale 8000 runtime and continuing live hearing integration.",
"how_to_use": "Treat this as active development. Relaunch the fixed runtime, verify /think on qwen3:0.6b, then continue capability wiring.",
"dependencies": ["Ollama on 127.0.0.1:11434", "qwen3:0.6b", "Port 8000 availability"],
"verification": "Validated on a clean alternate runtime previously; primary 8000 instance still needs replacement.",
"tool_id": "artemis",
"copy_cmd": "cd toolbox/artemis ; python launch.py",
"anchor": "ai-systems",
"promotion_ready": True,
"promotion_note": "Promote after the fixed runtime replaces the stale 8000 instance and /think is re-verified.",
},
{
"id": "ears",
"name": "ARTEMIS Ears",
"lane": "workbench",
"category": "runtime",
"state": "integration",
"summary": "Audio perception stack that must be wired into the live ARTEMIS runtime rather than operated as an isolated side tool.",
"how_to_use": "Launch only for validation; the real goal is invoking its hearing path from ARTEMIS.",
"dependencies": ["Audio input", "faster-whisper", "ARTEMIS runtime integration"],
"verification": "Dependency preflight was hardened; hearing path wiring remains active work.",
"tool_id": "ears",
"copy_cmd": "cd toolbox/ears ; python listen.py",
"anchor": "ai-systems",
"promotion_ready": True,
"promotion_note": "Promote only after ARTEMIS can invoke the hearing path directly instead of running it as a side tool.",
},
{
"id": "csm",
"name": "CSM Voice",
"lane": "workbench",
"category": "runtime",
"state": "blocked",
"summary": "Speech synthesis stack with the correct long-term direction in WSL, but not ready on the Windows .venv runtime.",
"how_to_use": "Do not treat as operational yet. Resolve the WSL Python 3.12 virtualenv blocker before further runtime work.",
"dependencies": ["WSL Ubuntu 24.04", "CUDA Torch stack", "python3.12-venv or ensurepip"],
"verification": "Current blocker is explicitly documented in repo state and checkpoint handoff.",
"tool_id": "csm",
"copy_cmd": "cd toolbox/csm ; python run_csm.py",
"anchor": "ai-systems",
"promotion_ready": False,
"promotion_note": "Blocked until the WSL Python 3.12 virtual environment issue is resolved.",
},
{
"id": "artemis-server",
"name": "Artemis Server",
"lane": "workbench",
"category": "tool",
"state": "built",
"summary": "Portable file server and tunnel tooling that exists, but should remain in the workbench until re-verified from this dashboard-first operating model.",
"how_to_use": "Launch when you need the server path; keep it in workbench status until it is re-verified through the unified GUI flow.",
"dependencies": ["Python .venv", "Go build artifacts where applicable"],
"verification": "Existing implementation is present in toolbox/artemis-server.",
"tool_id": "artemis-server",
"copy_cmd": "python toolbox/artemis-server/artemis-server.pyw",
"anchor": "built-tools",
"promotion_ready": True,
"promotion_note": "Promote after a full launch and daily-use workflow is re-verified from the dashboard-first path.",
},
{
"id": "comms",
"name": "Comms",
"lane": "workbench",
"category": "tool",
"state": "built",
"summary": "Node-to-node communication platform that exists but still belongs in the experimental lane until it is re-verified as an operator-facing surface.",
"how_to_use": "Launch for development and validation runs, not as a finished daily-use tool yet.",
"dependencies": ["Python .venv", "Optional AI and voice dependencies"],
"verification": "Server and AI engine preflights were recently hardened.",
"tool_id": "comms",
"copy_cmd": "cd toolbox/comms ; python server.py",
"anchor": "built-tools",
"promotion_ready": True,
"promotion_note": "Promote after the operator-facing startup and communication flow is re-verified from the GUI.",
},
{
"id": "converter-gui",
"name": "Bat_To_Exe Converter",
"lane": "workbench",
"category": "tool",
"state": "built",
"summary": "Reimplementation with its own GUI and C stub pipeline. Present and launchable, but not yet promoted to the operator-facing finished lane.",
"how_to_use": "Launch the converter when needed, but keep it separated from the verified finished surface for now.",
"dependencies": ["Python .venv", "Stub toolchain for builds"],
"verification": "Included in the dashboard tool registry and prior dashboard test passes.",
"tool_id": "converter-gui",
"copy_cmd": "python toolbox/converter/converter.pyw",
"anchor": "built-tools",
"promotion_ready": True,
"promotion_note": "Likely promotable after one clean end-user conversion pass is re-verified from the dashboard.",
},
{
"id": "gateway",
"name": "Gateway",
"lane": "workbench",
"category": "tool",
"state": "built",
"summary": "Dual-node virtual router tooling that exists, but still belongs in the separate workbench lane until its end-user operating flow is finalized.",
"how_to_use": "Use for controlled runs and validation, not yet as a polished finished surface.",
"dependencies": ["Python .venv", "WireGuard context"],
"verification": "No-arg flow was previously fixed and validated in dashboard testing.",
"tool_id": "gateway",
"copy_cmd": "cd toolbox/gateway ; python gateway.py",
"anchor": "built-tools",
"promotion_ready": True,
"promotion_note": "Promote after its end-user operating path is re-verified instead of just the developer launch path.",
},
{
"id": "mirror",
"name": "Mirror",
"lane": "workbench",
"category": "tool",
"state": "built",
"summary": "ADB screen mirror service. Present and runnable, but kept separate from the finished lane until its user flow is re-verified through the unified GUI.",
"how_to_use": "Launch for device mirroring sessions when needed.",
"dependencies": ["Python .venv", "ADB", "Android device"],
"verification": "Main entrypoint and runtime issues were previously fixed and validated.",
"tool_id": "mirror",
"copy_cmd": "cd toolbox/mirror ; python server.py",
"anchor": "built-tools",
"promotion_ready": True,
"promotion_note": "Promote after a device-connected browser viewing session is re-verified through the dashboard.",
},
{
"id": "tethering",
"name": "Tethering Project",
"lane": "workbench",
"category": "research",
"state": "active",
"summary": "PdaNet, FoxFi, and Tetrd reverse engineering plus Go and Python rebuilds. Valuable, but still clearly active development.",
"how_to_use": "Treat as research and build work, not a finished operator-facing product surface yet.",
"dependencies": ["Go toolchain", "Python", "Reference APK study", "Android validation"],
"verification": "Recent state notes report pytether built and the Go engine compiling.",
"copy_cmd": "cd toolbox/tethering/engine ; go build ./...",
"anchor": "built-tools",
"promotion_ready": False,
"promotion_note": "Keep in workbench until the project has a stable operator-facing flow rather than an active research/build loop.",
},
{
"id": "cloud-server",
"name": "Cloud Server Project",
"lane": "workbench",
"category": "research",
"state": "planning",
"summary": "Self-hosted phone-based cloud server direction. Important, but still in planning and external validation stages.",
"how_to_use": "Do not treat as runnable yet. Next step is IPv6 inbound validation from an external probe.",
"dependencies": ["Phone IPv6 reachability", "Termux path", "Network validation"],
"verification": "Project state marks this as planning/research only.",
"anchor": "workspace",
"promotion_ready": False,
"promotion_note": "Planning only; not a promotion candidate yet.",
},
{
"id": "scripts-engine",
"name": "Scripts And Ad-Hoc Analysis",
"lane": "workbench",
"category": "support",
"state": "built",
"summary": "The scripts area is valuable, but it remains a builder and analyst workbench rather than a polished operator-facing surface.",
"how_to_use": "Use these when you are doing directed analysis or engineering work, not when you need a simple finished product flow.",
"dependencies": ["Python", "PowerShell", "Ghidra or packet tooling depending on script"],
"verification": "Scripts are present and linked throughout the dashboard, but the area is still intentionally tool-oriented.",
"anchor": "scripts",
"promotion_ready": False,
"promotion_note": "Keep separate until a smaller curated operator subset emerges from the scripts area.",
},
]
def _catalog_with_runtime_state():
items = []
for item in CATALOG:
enriched = dict(item)
tool_id = item.get("tool_id")
proc_info = _processes.get(tool_id) if tool_id else None
running = False
pid = None
uptime = None
if proc_info and hasattr(proc_info["proc"], "returncode") and proc_info["proc"].returncode is None:
running = True
pid = proc_info["proc"].pid
uptime = round(time.time() - proc_info["started"])
enriched["running"] = running
enriched["pid"] = pid
enriched["uptime_s"] = uptime
if enriched["lane"] == "usable":
if enriched.get("category") in {"reference", "support"}:
enriched["use_mode"] = "Reference / support surface"
enriched["use_boundary"] = "Safe to use as a workspace support area, but not a runnable product flow."
else:
enriched["use_mode"] = "Normal operator use"
enriched["use_boundary"] = "Safe to treat as part of the finished day-to-day operating surface."
else:
enriched["use_mode"] = "Development / validation only"
enriched["use_boundary"] = enriched.get("promotion_note") or "Keep this separated from finished use until it is re-verified and promoted."
items.append(enriched)
return items
def _command_available(command: str) -> bool:
return shutil.which(command) is not None
def _port_open(host: str, port: int, timeout: float = 0.5) -> bool:
try:
with socket.create_connection((host, port), timeout=timeout):
return True
except OSError:
return False
def _safe_subprocess_ok(cmd: list[str], timeout: float = 3.0) -> bool:
try:
completed = subprocess.run(
cmd,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
timeout=timeout,
check=False,
)
return completed.returncode == 0
except Exception:
return False
def _build_dependency_health():
checks = []
ollama_ok = _port_open("127.0.0.1", 11434)
checks.append({
"id": "ollama",
"name": "Ollama",
"status": "ready" if ollama_ok else "attention",
"summary": "Required for ARTEMIS, voice chat, and local AI paths.",
"detail": "Listening on 127.0.0.1:11434." if ollama_ok else "Not reachable on 127.0.0.1:11434.",
})
adb_ok = (WORKSPACE / "adb" / "adb.exe").exists()
checks.append({
"id": "adb",
"name": "ADB",
"status": "ready" if adb_ok else "attention",
"summary": "Required for Android device access, mirror, Frida push flows, and device shell use.",
"detail": "Workspace-local adb.exe is present." if adb_ok else "Workspace-local adb.exe is missing.",
})
wsl_ok = _command_available("wsl") and _safe_subprocess_ok(["wsl", "--status"])
checks.append({
"id": "wsl",
"name": "WSL",
"status": "ready" if wsl_ok else "attention",
"summary": "Required for Neural Sim, CUDA paths, and the intended CSM runtime direction.",
"detail": "WSL responds normally." if wsl_ok else "WSL is unavailable or not responding.",
})
ghidra_ok = (WORKSPACE / "ghidra_12.0.4_PUBLIC" / "ghidraRun.bat").exists()
checks.append({
"id": "ghidra",
"name": "Ghidra",
"status": "ready" if ghidra_ok else "attention",
"summary": "Required for static binary and APK analysis.",
"detail": "ghidraRun.bat is present." if ghidra_ok else "Ghidra launcher is missing.",
})
port_8000_in_use = _port_open("127.0.0.1", 8000)
checks.append({
"id": "port-8000",
"name": "Port 8000",
"status": "attention" if port_8000_in_use else "ready",
"summary": "Primary ARTEMIS runtime target port.",
"detail": "Something is already listening on 127.0.0.1:8000." if port_8000_in_use else "Port 8000 is free for the fixed ARTEMIS runtime.",
})
ffmpeg_ok = _command_available("ffmpeg")
checks.append({
"id": "ffmpeg",
"name": "ffmpeg",
"status": "ready" if ffmpeg_ok else "attention",
"summary": "Used for voice-chat audio conversion when browser audio arrives as WebM/Opus.",
"detail": "ffmpeg is available on PATH." if ffmpeg_ok else "ffmpeg is not available on PATH.",
})
return checks
# โโ Process Tracker โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_processes: dict[str, dict] = {} # tool_id -> {proc, started, output_lines}
MAX_OUTPUT_LINES = 500
# โโ Graceful Shutdown โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def _cleanup_processes():
"""Terminate all tracked child processes on server shutdown."""
for tid, info in _processes.items():
proc = info["proc"]
if hasattr(proc, "terminate") and proc.returncode is None:
try:
proc.terminate()
await asyncio.wait_for(proc.wait(), timeout=3.0)
except (asyncio.TimeoutError, ProcessLookupError):
try:
proc.kill()
except ProcessLookupError:
pass
except Exception:
pass
# โโ FastAPI App โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@asynccontextmanager
async def lifespan(app):
yield
await _cleanup_processes()
app = FastAPI(title="RE Workspace Dashboard", lifespan=lifespan)
# Allow same-host origins (localhost vs 127.0.0.1 mismatch)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
async def index():
return FileResponse(WORKSPACE / "dashboard_3d.html")
@app.get("/3d")
async def index_3d():
return FileResponse(WORKSPACE / "dashboard_3d.html")
@app.get("/galaxy_5k.json")
async def galaxy_5k():
"""Serve the 5K-point File Galaxy dataset (lazy-loaded on Galaxy Mode entry)."""
target = WORKSPACE / "galaxy_5k.json"
if not target.exists():
raise HTTPException(404, "galaxy_5k.json missing")
return FileResponse(target, media_type="application/json")
@app.get("/galaxy_25k.json")
async def galaxy_25k():
"""Serve the 25K-point File Galaxy dataset (optional higher-detail tier)."""
target = WORKSPACE / "galaxy_25k.json"
if not target.exists():
raise HTTPException(404, "galaxy_25k.json missing")
return FileResponse(target, media_type="application/json")
@app.get("/assets/{asset_name}")
async def dashboard_asset(asset_name: str):
"""Serve explicit dashboard assets from the workspace root."""
target = (WORKSPACE / asset_name).resolve()
if not target.is_relative_to(WORKSPACE):
raise HTTPException(400, "Path outside workspace")
if not target.exists() or not target.is_file():
raise HTTPException(404, f"Asset not found: {asset_name}")
return FileResponse(target)
@app.get("/api/status")
async def all_status():
"""Return running state of every registered tool."""
result = {}
for tid, tool in TOOLS.items():
proc_info = _processes.get(tid)
running = False
pid = None
if proc_info and proc_info["proc"].returncode is None:
running = True
pid = proc_info["proc"].pid
result[tid] = {
"name": tool["name"],
"running": running,
"pid": pid,
"url": tool.get("url"),
}
return result
class LaunchReq(BaseModel):
tool_id: str
@app.post("/api/launch")
async def launch_tool(req: LaunchReq):
"""Launch a registered tool."""
tid = req.tool_id
if tid not in TOOLS:
raise HTTPException(400, f"Unknown tool: {tid}")
# Already running?
if tid in _processes:
proc = _processes[tid]["proc"]
if proc.returncode is None:
return {"status": "already_running", "pid": proc.pid}
tool = TOOLS[tid]
cwd = WORKSPACE / tool["cwd"]
env = os.environ.copy()
# Ensure .venv is on PATH for Python tools
for _vd in [WORKSPACE / ".venv" / "bin", WORKSPACE / ".venv" / "Scripts"]:
if _vd.exists():
env["PATH"] = str(_vd) + os.pathsep + env.get("PATH", "")
env["VIRTUAL_ENV"] = str(WORKSPACE / ".venv")
break
try:
proc = await asyncio.create_subprocess_exec(
*tool["cmd"],
cwd=str(cwd),
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
env=env,
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP if sys.platform == "win32" else 0,
)
except Exception as e:
raise HTTPException(500, f"Failed to start {tid}: {e}")
info = {"proc": proc, "started": time.time(), "output": []}
_processes[tid] = info
# Background task to collect output
asyncio.create_task(_collect_output(tid, proc, info))
return {"status": "launched", "pid": proc.pid}
async def _collect_output(tid: str, proc, info: dict):
"""Read stdout lines in background, store in buffer."""
try:
while True:
line = await proc.stdout.readline()
if not line:
break
text = line.decode("utf-8", errors="replace").rstrip()
info["output"].append(text)
if len(info["output"]) > MAX_OUTPUT_LINES:
info["output"] = info["output"][-MAX_OUTPUT_LINES:]
except Exception:
pass
@app.post("/api/stop")
async def stop_tool(req: LaunchReq):
"""Stop a running tool."""
tid = req.tool_id
if tid not in _processes:
raise HTTPException(404, f"Not running: {tid}")
proc = _processes[tid]["proc"]
if proc.returncode is not None:
return {"status": "already_stopped", "code": proc.returncode}
try:
proc.terminate()
try:
await asyncio.wait_for(proc.wait(), timeout=5.0)
except asyncio.TimeoutError:
proc.kill()
except Exception as e:
raise HTTPException(500, f"Failed to stop {tid}: {e}")
return {"status": "stopped", "code": proc.returncode}
@app.get("/api/output/{tool_id}")
async def get_output(tool_id: str, since: int = 0):
"""Get recent output lines from a tool."""
if tool_id not in _processes:
return {"lines": [], "running": False}
info = _processes[tool_id]
lines = info["output"][since:]
running = info["proc"].returncode is None
return {"lines": lines, "total": len(info["output"]), "running": running}
@app.post("/api/open-vscode")
async def open_in_vscode(req: dict):
"""Open a file in VS Code."""
rel_path = req.get("path", "")
# Sanitize: must be under workspace, no .. traversal
target = (WORKSPACE / rel_path).resolve()
if not target.is_relative_to(WORKSPACE):
raise HTTPException(400, "Path outside workspace")
if not target.exists():
raise HTTPException(404, f"Not found: {rel_path}")
await asyncio.create_subprocess_exec(
"code", "--goto", str(target),
stdout=asyncio.subprocess.DEVNULL,
stderr=asyncio.subprocess.DEVNULL,
)
return {"status": "opened"}
# โโ Interactive Terminal โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Runs commands via PowerShell in the workspace directory.
# Each "session" is a named process slot in _processes.
_run_counter = 0
_terminal_cwd = str(WORKSPACE) # mutable working directory
class RunReq(BaseModel):
command: str
session: str = "" # optional session name; auto-assigned if empty
@app.post("/api/run")
async def run_command(req: RunReq):
"""Run a shell command in the workspace directory."""
global _run_counter
cmd = req.command.strip()
if not cmd:
raise HTTPException(400, "Empty command")
# Assign session ID
sid = req.session or f"run-{_run_counter}"
_run_counter += 1
# If session already active and running, kill it first
if sid in _processes:
old = _processes[sid]["proc"]
if old.returncode is None:
old.terminate()
try:
await asyncio.wait_for(old.wait(), timeout=3.0)
except asyncio.TimeoutError:
old.kill()
env = os.environ.copy()
for _vd in [WORKSPACE / ".venv" / "bin", WORKSPACE / ".venv" / "Scripts"]:
if _vd.exists():
env["PATH"] = str(_vd) + os.pathsep + env.get("PATH", "")
env["VIRTUAL_ENV"] = str(WORKSPACE / ".venv")
break
# Handle cd/pushd โ update tracked cwd
cd_target = _parse_cd(cmd)
if cd_target is not None:
return await _handle_cd(cd_target, sid)
try:
proc = await asyncio.create_subprocess_exec(
"bash", "-c", cmd,
cwd=_terminal_cwd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
env=env,
)
except Exception as e:
raise HTTPException(500, f"Failed to run: {e}")
info = {"proc": proc, "started": time.time(), "output": [], "cmd": cmd}
_processes[sid] = info
asyncio.create_task(_collect_output(sid, proc, info))
return {"status": "running", "session": sid, "pid": proc.pid, "cwd": _terminal_cwd}
def _parse_cd(cmd: str):
"""Return target dir if cmd is a cd/pushd/Set-Location, else None."""
stripped = cmd.strip()
for prefix in ("cd ", "cd\\", "pushd ", "Set-Location ", "sl "):
if stripped.lower().startswith(prefix.lower()):
return stripped[len(prefix):].strip().strip('"').strip("'")
if stripped.lower() in ("cd", "cd.", "cd ~"):
return str(WORKSPACE)
return None
async def _handle_cd(target: str, sid: str):
"""Change tracked working directory."""
global _terminal_cwd
if os.path.isabs(target):
new_cwd = os.path.realpath(target)
else:
new_cwd = os.path.realpath(os.path.join(_terminal_cwd, target))
if not os.path.isdir(new_cwd):
return {"status": "error", "session": sid, "error": f"Not a directory: {new_cwd}"}
_terminal_cwd = new_cwd
# Put a synthetic output line so the UI shows feedback
_processes[sid] = {
"proc": type("FakeProc", (), {"returncode": 0, "pid": 0})(),
"started": time.time(),
"output": [f"Changed directory to: {new_cwd}"],
"cmd": f"cd {target}",
}
return {"status": "done", "session": sid, "cwd": _terminal_cwd}
@app.get("/api/cwd")
async def get_cwd():
return {"cwd": _terminal_cwd}
@app.post("/api/kill")
async def kill_session(req: dict):
"""Kill a running session."""
sid = req.get("session", "")
if sid not in _processes:
raise HTTPException(404, f"No session: {sid}")
proc = _processes[sid]["proc"]
if hasattr(proc, "terminate") and proc.returncode is None:
proc.terminate()
try:
await asyncio.wait_for(proc.wait(), timeout=3.0)
except asyncio.TimeoutError:
proc.kill()
return {"status": "killed"}
# โโ Additional REST Endpoints โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/tools")
async def list_tools():
"""List all registered tools with config and status."""
result = {}
for tid, tool in TOOLS.items():
proc_info = _processes.get(tid)
running = False
pid = None
uptime = None
if proc_info:
if hasattr(proc_info["proc"], "returncode") and proc_info["proc"].returncode is None:
running = True
pid = proc_info["proc"].pid
uptime = round(time.time() - proc_info["started"])
result[tid] = {
"name": tool["name"],
"cwd": tool["cwd"],
"url": tool.get("url"),
"running": running,
"pid": pid,
"uptime_s": uptime,
}
return result
@app.get("/api/catalog")
async def workspace_catalog():
"""Return the operator-facing workspace catalog with live runtime state."""
items = _catalog_with_runtime_state()
counts = {
"usable": sum(1 for item in items if item["lane"] == "usable"),
"workbench": sum(1 for item in items if item["lane"] == "workbench"),
"running": sum(1 for item in items if item.get("running")),
}
categories = {}
for item in items:
key = item.get("category", "other")
categories[key] = categories.get(key, 0) + 1
promotion_queue = [
{
"id": item["id"],
"name": item["name"],
"state": item["state"],
"promotion_note": item.get("promotion_note", "Needs explicit re-verification before promotion."),
"anchor": item.get("anchor"),
"tool_id": item.get("tool_id"),
}
for item in items
if item["lane"] == "workbench" and item.get("promotion_ready")
]
return {"items": items, "counts": counts, "categories": categories, "promotion_queue": promotion_queue}
@app.get("/api/health")
async def dependency_health():
"""Return critical dependency readiness for the operator surface."""
checks = await asyncio.to_thread(_build_dependency_health)
counts = {
"ready": sum(1 for check in checks if check["status"] == "ready"),
"attention": sum(1 for check in checks if check["status"] != "ready"),
}
return {"checks": checks, "counts": counts}
def _verify_catalog_item(item: dict) -> dict:
"""Run lightweight, non-destructive verification checks for a catalog item.
Returns a dict with overall 'ok' boolean and a list of 'checks'.
"""
results = []
overall_ok = True
# Dependency-based quick checks
for dep in item.get("dependencies", [])[:]:
d = dep.lower()
if "ollama" in d:
ok = _port_open("127.0.0.1", 11434)
results.append({"check": "ollama", "ok": ok, "detail": "127.0.0.1:11434 reachable" if ok else "not reachable"})
overall_ok &= ok
elif "wsl" in d:
ok = _command_available("wsl") and _safe_subprocess_ok(["wsl", "--status"])
results.append({"check": "wsl", "ok": ok, "detail": "WSL responsive" if ok else "not responsive"})
overall_ok &= ok
elif "adb" in d:
ok = (WORKSPACE / "adb" / "adb.exe").exists()
results.append({"check": "adb", "ok": ok, "detail": "adb.exe present" if ok else "missing adb.exe"})
overall_ok &= ok
elif "ghidra" in d:
ok = (WORKSPACE / "ghidra_12.0.4_PUBLIC" / "ghidraRun.bat").exists()
results.append({"check": "ghidra", "ok": ok, "detail": "ghidraRun.bat present" if ok else "missing ghidraRun.bat"})
overall_ok &= ok
# Tool-specific checks (if the item maps to a registered tool)
tid = item.get("tool_id")
if tid and tid in TOOLS:
tool = TOOLS[tid]
cwd = WORKSPACE / tool.get("cwd", "")
cwd_ok = cwd.exists()
results.append({"check": "cwd_exists", "ok": cwd_ok, "detail": str(cwd)})
overall_ok &= cwd_ok
cmd = tool.get("cmd", [])
if cmd:
exe = cmd[0]
# If the command is Python, check the script path
if exe in (sys.executable, "python", "python3") and len(cmd) > 1:
script = cwd / cmd[1]
script_ok = script.exists()
results.append({"check": "script_exists", "ok": script_ok, "detail": str(script)})
overall_ok &= script_ok
else:
found = shutil.which(exe) is not None
results.append({"check": "executable_on_path", "ok": found, "detail": exe})
overall_ok &= found
# If the tool exposes a URL, try a quick HTTP probe (non-blocking friendly)
url = tool.get("url")
if url:
try:
r = httpx.get(url, timeout=2.0)
ok = r.status_code < 400
except Exception:
ok = False
results.append({"check": "tool_url", "ok": ok, "detail": url})
overall_ok &= ok
# If the item itself has a URL, probe that too
item_url = item.get("url")
if item_url:
try:
r = httpx.get(item_url, timeout=2.0)
ok = r.status_code < 400
except Exception:
ok = False
results.append({"check": "item_url", "ok": ok, "detail": item_url})
overall_ok &= ok
return {"ok": overall_ok, "checks": results}
@app.get("/api/verify/{item_id}")
async def verify_item(item_id: str):
"""Run a lightweight verification for a catalog item and return results."""
found = None
for item in CATALOG:
if item.get("id") == item_id:
found = item
break
if not found:
raise HTTPException(404, f"Catalog item not found: {item_id}")
# Run verification off the event loop
result = await asyncio.to_thread(_verify_catalog_item, found)
return JSONResponse(result)
@app.post("/api/promote/{item_id}")
async def promote_item(item_id: str):
"""Promote a workbench item into the usable lane if verification passes and it's allowed.
This modifies the in-memory CATALOG only for the running server instance.
"""
for item in CATALOG:
if item.get("id") == item_id:
target = item
break
else:
raise HTTPException(404, f"Catalog item not found: {item_id}")
if not target.get("promotion_ready"):
raise HTTPException(400, "Item is not marked promotion-ready")
# Verify before promoting
result = await asyncio.to_thread(_verify_catalog_item, target)
if not result.get("ok"):
return JSONResponse(status_code=400, content={"detail": "Verification failed", "result": result})
# Perform in-memory promotion
target["lane"] = "usable"
target["promotion_note"] = f"Promoted on {time.strftime('%Y-%m-%d %H:%M:%S')} from dashboard"
return {"status": "promoted", "id": item_id, "item": target}
@app.post("/api/restart")
async def restart_tool(req: LaunchReq):
"""Stop a tool (if running) and relaunch it."""
tid = req.tool_id
if tid not in TOOLS:
raise HTTPException(400, f"Unknown tool: {tid}")
if tid in _processes:
proc = _processes[tid]["proc"]
if hasattr(proc, "returncode") and proc.returncode is None:
proc.terminate()
try:
await asyncio.wait_for(proc.wait(), timeout=5.0)
except asyncio.TimeoutError:
proc.kill()
await asyncio.sleep(0.2)
return await launch_tool(LaunchReq(tool_id=tid))
@app.get("/api/sysinfo")
async def sysinfo():
"""System resource info."""
info: dict[str, Any] = {
"platform": platform.platform(),
"python": sys.version.split()[0],
"workspace": str(WORKSPACE),
}
try:
usage = shutil.disk_usage(WORKSPACE)
info["disk"] = {
"total_gb": round(usage.total / (1024**3), 1),
"used_gb": round(usage.used / (1024**3), 1),
"free_gb": round(usage.free / (1024**3), 1),
"percent": round(usage.used / usage.total * 100, 1),
}
except Exception:
pass
if psutil is not None:
info["cpu_percent"] = psutil.cpu_percent(interval=0.1)
mem = psutil.virtual_memory()
info["memory"] = {
"total_gb": round(mem.total / (1024**3), 1),
"used_gb": round(mem.used / (1024**3), 1),
"percent": mem.percent,
}
info["tracked_processes"] = sum(
1 for p in _processes.values()
if hasattr(p["proc"], "returncode") and p["proc"].returncode is None
)
return info
# โโ WebSocket: Live Output Streaming โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.websocket("/ws/output/{tool_id}")
async def ws_output(websocket: WebSocket, tool_id: str):
"""Stream tool output in real time via WebSocket."""
await websocket.accept()
offset = 0
try:
while True:
if tool_id in _processes:
info = _processes[tool_id]
lines = info["output"][offset:]
if lines:
await websocket.send_json({"lines": lines, "total": len(info["output"])})
offset = len(info["output"])
running = info["proc"].returncode is None
if not running and not lines and offset > 0:
await websocket.send_json({"done": True, "code": info["proc"].returncode})
break
await asyncio.sleep(0.1)
except WebSocketDisconnect:
pass
except Exception:
pass
# โโ WebSocket: Persistent Terminal โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_CWD_MARKER = "__PSCWD__"
@app.websocket("/ws/terminal")
async def ws_terminal(websocket: WebSocket):
"""Persistent PowerShell session via WebSocket."""
await websocket.accept()
env = os.environ.copy()
for _vd in [WORKSPACE / ".venv" / "bin", WORKSPACE / ".venv" / "Scripts"]:
if _vd.exists():
env["PATH"] = str(_vd) + os.pathsep + env.get("PATH", "")
env["VIRTUAL_ENV"] = str(WORKSPACE / ".venv")
break
try:
proc = await asyncio.create_subprocess_exec(
"bash", "--norc", "--noprofile",
stdin=asyncio.subprocess.PIPE,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
cwd=str(WORKSPACE),
env=env,
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP if sys.platform == "win32" else 0,
)
except Exception as e:
await websocket.send_json({"type": "error", "text": f"Failed to start shell: {e}"})
await websocket.close()
return
assert proc.stdin is not None
assert proc.stdout is not None
# Emit initial working directory
proc.stdin.write(f'echo "{_CWD_MARKER}$(pwd)"\n'.encode())
await proc.stdin.drain()
async def _read_stdout():
try:
while True:
line = await proc.stdout.readline()
if not line:
try:
await websocket.send_json({"type": "exit"})
except Exception:
pass
break
text = line.decode("utf-8", errors="replace").rstrip("\r\n")
if text.startswith(_CWD_MARKER):
await websocket.send_json({"type": "cwd", "path": text[len(_CWD_MARKER):]})
else:
await websocket.send_json({"type": "output", "text": text})
except (WebSocketDisconnect, ConnectionError):
pass
except Exception:
pass
reader_task = asyncio.create_task(_read_stdout())
try:
while True:
msg = await websocket.receive_json()
cmd_type = msg.get("type", "command")
if cmd_type == "command":
cmd = msg.get("cmd", "").strip()
if not cmd:
continue
if proc.returncode is not None:
await websocket.send_json({"type": "error", "text": "Shell exited. Close and reopen the terminal."})
break
full = f'{cmd}\necho "{_CWD_MARKER}$(pwd)"\n'
proc.stdin.write(full.encode("utf-8"))
await proc.stdin.drain()
elif cmd_type == "kill":
if proc.returncode is None:
try:
proc.send_signal(
signal.CTRL_BREAK_EVENT if sys.platform == "win32" else signal.SIGINT
)
except Exception:
pass
except WebSocketDisconnect:
pass
except Exception:
pass
finally:
reader_task.cancel()
if proc.returncode is None:
proc.terminate()
try:
await asyncio.wait_for(proc.wait(), timeout=3.0)
except (asyncio.TimeoutError, ProcessLookupError):
try:
proc.kill()
except Exception:
pass
# โโ Voice Chat โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# STT (faster-whisper), LLM (Ollama), TTS (edge-tts) โ all server-side.
# Browser sends raw audio via WebSocket, receives audio + transcript back.
WHISPER_MODELS_DIR = Path(os.environ.get("WHISPER_MODELS_DIR", str(WORKSPACE / "models" / "whisper")))
_whisper_model = None
_whisper_lock = asyncio.Lock()
def _load_whisper(size: str = "base.en"):
"""Load a faster-whisper model (blocking โ run in thread)."""
global _whisper_model
if _whisper_model is not None:
return _whisper_model
from faster_whisper import WhisperModel # type: ignore[import-not-found]
local = WHISPER_MODELS_DIR / f"faster-whisper-{size}"
if local.exists():
_whisper_model = WhisperModel(str(local), device="cuda", compute_type="float16")
else:
_whisper_model = WhisperModel(size, device="cuda", compute_type="float16")
return _whisper_model
def _transcribe_audio(audio_np: np.ndarray) -> str:
"""Transcribe float32 16kHz mono audio to text (blocking)."""
model = _load_whisper()
segments, _ = model.transcribe(
audio_np, beam_size=5, language="en",
vad_filter=True, vad_parameters=dict(min_silence_duration_ms=500),
)
return " ".join(seg.text.strip() for seg in segments).strip()
async def _tts_edge(text: str, voice: str = "en-US-GuyNeural") -> bytes:
"""Generate MP3 audio bytes via edge-tts."""
import edge_tts
comm = edge_tts.Communicate(text, voice=voice)
buf = io.BytesIO()
async for chunk in comm.stream():
if chunk["type"] == "audio" and "data" in chunk:
buf.write(chunk["data"]) # type: ignore[typeddict-item]
return buf.getvalue()
async def _chat_ollama(messages: list[dict], model: str,
host: str = os.environ.get("OLLAMA_HOST", "http://localhost:11434")) -> str:
"""Send chat to Ollama, return response text."""
async with httpx.AsyncClient(timeout=120.0) as client:
r = await client.post(
f"{host}/api/chat",
json={"model": model, "messages": messages, "stream": False},
)
r.raise_for_status()
return r.json()["message"]["content"]
@app.get("/api/voice/models")
async def voice_models():
"""List available Ollama models for voice chat."""
try:
async with httpx.AsyncClient(timeout=10.0) as client:
r = await client.get(os.environ.get("OLLAMA_HOST","http://localhost:11434") + "/api/tags")
r.raise_for_status()
models = [m["name"] for m in r.json().get("models", [])]
return {"models": models}
except Exception as e:
return {"models": [], "error": str(e)}
@app.get("/api/voice/whisper-models")
async def voice_whisper_models():
"""List locally available whisper model sizes."""
sizes = []
if WHISPER_MODELS_DIR.exists():
for d in sorted(WHISPER_MODELS_DIR.iterdir()):
if d.is_dir() and d.name.startswith("faster-whisper-"):
sizes.append(d.name.replace("faster-whisper-", ""))
return {"models": sizes}
@app.get("/api/voice/tts-voices")
async def voice_tts_voices():
"""List edge-tts voices."""
try:
import edge_tts
voices = await edge_tts.list_voices()
result = [
{"name": v["ShortName"], "gender": v["Gender"], "locale": v["Locale"]}
for v in voices if v["Locale"].startswith("en-")
]
return {"voices": result}
except Exception as e:
return {"voices": [], "error": str(e)}
def _wav_bytes_to_float32(wav_data: bytes) -> np.ndarray:
"""Convert WAV bytes to float32 numpy array at 16kHz mono."""
with wave.open(io.BytesIO(wav_data), "rb") as wf:
frames = wf.readframes(wf.getnframes())
sr = wf.getframerate()
ch = wf.getnchannels()
sw = wf.getsampwidth()
dtype_map = {1: np.int8, 2: np.int16, 4: np.int32}
dtype = dtype_map.get(sw, np.int16)
audio = np.frombuffer(frames, dtype=dtype).astype(np.float32)
audio /= np.iinfo(dtype).max
# Mono
if ch > 1:
audio = audio.reshape(-1, ch).mean(axis=1)
# Resample to 16kHz if needed
if sr != 16000:
duration = len(audio) / sr
target_len = int(duration * 16000)
indices = np.linspace(0, len(audio) - 1, target_len).astype(int)
audio = audio[indices]
return audio
def _webm_to_float32(webm_data: bytes) -> np.ndarray | None:
"""Convert WebM/Opus audio to float32 16kHz mono via ffmpeg."""
tmp_in = Path(tempfile.gettempdir()) / "voice_chat_in.webm"
tmp_out = Path(tempfile.gettempdir()) / "voice_chat_out.wav"
tmp_in.write_bytes(webm_data)
try:
subprocess.run(
["ffmpeg", "-y", "-i", str(tmp_in), "-ar", "16000", "-ac", "1",
"-f", "wav", str(tmp_out)],
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
timeout=10,
)
if tmp_out.exists():
return _wav_bytes_to_float32(tmp_out.read_bytes())
except Exception:
pass
finally:
tmp_in.unlink(missing_ok=True)
tmp_out.unlink(missing_ok=True)
return None
@app.websocket("/ws/voice-chat")
async def ws_voice_chat(websocket: WebSocket):
"""
Full voice chat pipeline over WebSocket.
Client sends JSON config, then binary audio frames (WebM/Opus from MediaRecorder).
Server responds with JSON transcripts and binary audio (MP3).
Protocol:
Client โ {"type":"config", "model":"...", "voice":"...", "system":"..."}
Client โ {"type":"audio", "data":"<base64 WAV/WebM>"}
Server โ {"type":"transcript", "role":"user", "text":"..."}
Server โ {"type":"transcript", "role":"assistant", "text":"..."}
Server โ {"type":"audio", "data":"<base64 MP3>", "format":"mp3"}
Server โ {"type":"status", "text":"..."}
Server โ {"type":"error", "text":"..."}
"""
await websocket.accept()
model = "sage:latest"
voice = "en-US-GuyNeural"
system_prompt = (
"You are a helpful voice assistant. Keep responses concise and conversational โ "
"they will be spoken aloud. Avoid markdown formatting, code blocks, or bullet points "
"unless specifically asked. Respond naturally as if speaking to someone."
)
messages: list[dict] = []
whisper_loaded = False
try:
while True:
raw = await websocket.receive()
# Handle text messages (JSON)
if "text" in raw:
msg = json.loads(raw["text"])
msg_type = msg.get("type", "")
if msg_type == "config":
model = msg.get("model", model)
voice = msg.get("voice", voice)
if msg.get("system"):
system_prompt = msg["system"]
messages = [{"role": "system", "content": system_prompt}]
await websocket.send_json({"type": "status", "text": f"Configured: {model}"})
# Pre-load whisper in background
if not whisper_loaded:
await websocket.send_json({"type": "status", "text": "Loading Whisper STT..."})
await asyncio.to_thread(_load_whisper)
whisper_loaded = True
await websocket.send_json({"type": "status", "text": "Whisper ready"})
elif msg_type == "audio":
import base64
audio_b64 = msg.get("data", "")
audio_bytes = base64.b64decode(audio_b64)
if not messages:
messages = [{"role": "system", "content": system_prompt}]
# Load whisper if not done
if not whisper_loaded:
await websocket.send_json({"type": "status", "text": "Loading Whisper..."})
await asyncio.to_thread(_load_whisper)
whisper_loaded = True
# Detect format and convert
await websocket.send_json({"type": "status", "text": "Transcribing..."})
if audio_bytes[:4] == b'RIFF':
audio_np = _wav_bytes_to_float32(audio_bytes)
else:
audio_np = await asyncio.to_thread(_webm_to_float32, audio_bytes)
if audio_np is None or len(audio_np) < 4800: # < 0.3s
await websocket.send_json({"type": "error", "text": "Audio too short or unreadable"})
continue
# STT
text = await asyncio.to_thread(_transcribe_audio, audio_np)
if not text:
await websocket.send_json({"type": "error", "text": "Couldn't understand audio"})
continue
await websocket.send_json({"type": "transcript", "role": "user", "text": text})
# LLM
await websocket.send_json({"type": "status", "text": "Thinking..."})
messages.append({"role": "user", "content": text})
try:
response = await _chat_ollama(messages, model)
except Exception as e:
await websocket.send_json({"type": "error", "text": f"LLM error: {e}"})
messages.pop() # remove failed user message
continue
messages.append({"role": "assistant", "content": response})
await websocket.send_json({"type": "transcript", "role": "assistant", "text": response})
# TTS
await websocket.send_json({"type": "status", "text": "Speaking..."})
try:
audio_out = await _tts_edge(response, voice=voice)
audio_out_b64 = base64.b64encode(audio_out).decode()
await websocket.send_json({
"type": "audio",
"data": audio_out_b64,
"format": "mp3",
})
except Exception as e:
await websocket.send_json({"type": "error", "text": f"TTS error: {e}"})
await websocket.send_json({"type": "status", "text": "Ready"})
elif msg_type == "text":
# Text-only chat (no mic needed)
user_text = msg.get("text", "").strip()
if not user_text:
continue
if not messages:
messages = [{"role": "system", "content": system_prompt}]
await websocket.send_json({"type": "transcript", "role": "user", "text": user_text})
await websocket.send_json({"type": "status", "text": "Thinking..."})
messages.append({"role": "user", "content": user_text})
try:
response = await _chat_ollama(messages, model)
except Exception as e:
await websocket.send_json({"type": "error", "text": f"LLM error: {e}"})
messages.pop()
continue
messages.append({"role": "assistant", "content": response})
await websocket.send_json({"type": "transcript", "role": "assistant", "text": response})
# TTS
await websocket.send_json({"type": "status", "text": "Speaking..."})
try:
import base64 as b64mod
audio_out = await _tts_edge(response, voice=voice)
audio_out_b64 = b64mod.b64encode(audio_out).decode()
await websocket.send_json({
"type": "audio", "data": audio_out_b64, "format": "mp3",
})
except Exception as e:
await websocket.send_json({"type": "error", "text": f"TTS error: {e}"})
await websocket.send_json({"type": "status", "text": "Ready"})
elif msg_type == "clear":
messages = [{"role": "system", "content": system_prompt}]
await websocket.send_json({"type": "status", "text": "Conversation cleared"})
except WebSocketDisconnect:
pass
except Exception:
pass
# โโ Gradio Wrapper โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
try:
import gradio as gr
_css = (
".gradio-container{max-width:100%!important;padding:0!important;margin:0!important}"
" footer{display:none!important} header{display:none!important}"
)
_demo = gr.Blocks(title="ARTEMIS Command Center", css=_css)
with _demo:
gr.HTML(
'<iframe src="/" allow="pointer-lock *; autoplay *; microphone *; camera *" '
'style="position:fixed;top:0;left:0;width:100vw;height:100vh;border:none;z-index:9999">'
'</iframe>'
)
app = gr.mount_gradio_app(app, _demo, path="/gradio")
print("Gradio mounted at /gradio")
except Exception as _ge:
print(f"Gradio skipped: {_ge}")
# โโ Entry Point โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if __name__ == "__main__":
import uvicorn
HOST = os.environ.get("HOST", "0.0.0.0")
PORT = 7860
print("=" * 50)
print(" ARTEMIS COMMAND CENTER โ HF SPACE")
print(f" http://0.0.0.0:{PORT}")
print("=" * 50)
uvicorn.run(app, host=HOST, port=PORT, log_level="warning")
|