Spaces:
Sleeping
Sleeping
File size: 83,482 Bytes
34cb740 | 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 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 | """OMEGA CLI — Memory commands, setup, status, migration, and server management."""
import argparse
import json
import re
import shutil
import subprocess
import sys
import time
from datetime import datetime, timedelta, timezone
from pathlib import Path
OMEGA_DIR = Path.home() / ".omega"
OMEGA_CACHE = Path.home() / ".cache" / "omega"
BGE_MODEL_DIR = OMEGA_CACHE / "models" / "bge-small-en-v1.5-onnx"
MINILM_MODEL_DIR = OMEGA_CACHE / "models" / "all-MiniLM-L6-v2-onnx"
# Primary model dir — bge-small-en-v1.5, falls back to all-MiniLM-L6-v2
ONNX_MODEL_DIR = BGE_MODEL_DIR
CLAUDE_MD_PATH = Path.home() / ".claude" / "CLAUDE.md"
SETTINGS_JSON_PATH = Path.home() / ".claude" / "settings.json"
DATA_DIR = Path(__file__).parent / "data"
OMEGA_BEGIN = "<!-- OMEGA:BEGIN"
OMEGA_END = "<!-- OMEGA:END -->"
def _resolve_python_path() -> str:
"""Resolve the best Python interpreter path for hooks.
Priority:
1. sys.executable if it exists and is not inside a temporary venv
2. 'python3' from PATH (via shutil.which)
3. Hardcoded /opt/homebrew/bin/python3 as last resort (macOS)
"""
exe = sys.executable
if exe and Path(exe).exists() and "venv" not in exe:
return exe
which_py = shutil.which("python3")
if which_py:
return which_py
# Last resort for macOS Homebrew
fallback = "/opt/homebrew/bin/python3"
if Path(fallback).exists():
return fallback
return exe or "python3"
def _inject_claude_md():
"""Inject or update the OMEGA block in ~/.claude/CLAUDE.md (idempotent)."""
fragment = (DATA_DIR / "claude-md-fragment.md").read_text()
if CLAUDE_MD_PATH.exists():
content = CLAUDE_MD_PATH.read_text()
else:
CLAUDE_MD_PATH.parent.mkdir(parents=True, exist_ok=True)
content = ""
if OMEGA_BEGIN in content:
# Replace existing block (upgrade path)
pattern = re.compile(
r"<!-- OMEGA:BEGIN[^\n]*-->.*?<!-- OMEGA:END -->",
re.DOTALL,
)
new_content = pattern.sub(fragment.rstrip(), content)
if new_content == content:
print(" CLAUDE.md: OMEGA block already up to date")
return
CLAUDE_MD_PATH.write_text(new_content)
print(" CLAUDE.md: OMEGA block updated")
else:
# Append — check if there's a plain "## Memory (OMEGA)" section to replace
plain_pattern = re.compile(r"## Memory \(OMEGA\)\n(?:.*\n)*?(?=\n## |\Z)", re.MULTILINE)
if plain_pattern.search(content):
new_content = plain_pattern.sub(fragment.rstrip() + "\n", content)
CLAUDE_MD_PATH.write_text(new_content)
print(" CLAUDE.md: replaced plain Memory section with managed block")
else:
separator = "\n" if content and not content.endswith("\n") else ""
CLAUDE_MD_PATH.write_text(content + separator + fragment)
print(" CLAUDE.md: OMEGA block appended")
def _has_extended_modules() -> bool:
"""Check if extended/coordination modules are available."""
try:
import omega.coordination # noqa: F401
return True
except ImportError:
pass
try:
from omega.plugins import discover_plugins
for plugin in discover_plugins():
if plugin.HOOKS_JSON:
return True
except Exception:
pass
return False
def _inject_settings_hooks(hooks_src: Path):
"""Inject OMEGA hook entries into ~/.claude/settings.json (idempotent).
Uses hooks-core.json for core-only installs, or hooks.json (full) when
extended modules are available. Supports both old format (single dict
per event) and new format (list of dicts per event) in hooks.json manifest.
"""
if _has_extended_modules():
hooks_file = "hooks.json"
else:
hooks_file = "hooks-core.json"
manifest = json.loads((DATA_DIR / hooks_file).read_text())
# Determine the python path: prefer the running interpreter
python_path = _resolve_python_path()
if SETTINGS_JSON_PATH.exists():
try:
settings = json.loads(SETTINGS_JSON_PATH.read_text())
except json.JSONDecodeError:
print(" WARNING: settings.json is malformed, skipping hook injection")
return
else:
SETTINGS_JSON_PATH.parent.mkdir(parents=True, exist_ok=True)
settings = {}
if "hooks" not in settings:
settings["hooks"] = {}
configured = 0
skipped = 0
for event, hook_defs in manifest.items():
# Normalize: old format is a single dict, new format is a list of dicts
if isinstance(hook_defs, dict):
hook_defs = [hook_defs]
for hook_def in hook_defs:
script = hook_def["script"]
command = f"{python_path} {hooks_src / script}"
# Build a unique identifier for this hook (handles "fast_hook.py session_start" etc.)
# Strip .py and use the full script string for matching
script_key = script.replace(".py", "").replace(" ", "_")
# Check if this OMEGA hook is already wired
already_wired = False
if event in settings["hooks"]:
for entry in settings["hooks"][event]:
for h in entry.get("hooks", []):
cmd = h.get("command", "")
if "omega" in cmd and script_key in cmd.replace(".py", "").replace(" ", "_"):
already_wired = True
break
if already_wired:
break
if already_wired:
skipped += 1
continue
# Build the hook entry
entry = {
"hooks": [
{
"command": command,
"timeout": hook_def["timeout"],
"type": "command",
}
],
"matcher": hook_def.get("matcher", ""),
}
if event not in settings["hooks"]:
settings["hooks"][event] = []
settings["hooks"][event].append(entry)
configured += 1
SETTINGS_JSON_PATH.write_text(json.dumps(settings, indent=2) + "\n")
if configured > 0:
print(f" settings.json: {configured} hook(s) configured")
if skipped > 0:
print(f" settings.json: {skipped} hook(s) already configured")
if configured == 0 and skipped == 0:
print(" settings.json: hooks configured")
def _download_file(url: str, target: Path) -> None:
"""Download a file with a progress bar showing bytes and percentage."""
import urllib.request
req = urllib.request.Request(url, headers={"User-Agent": "omega-memory/1.0"})
with urllib.request.urlopen(req, timeout=60) as resp:
total = int(resp.headers.get("Content-Length", 0))
downloaded = 0
chunk_size = 64 * 1024 # 64 KB chunks
# Write to a temp file, rename on success (no partial files left behind)
tmp = target.with_suffix(target.suffix + ".tmp")
try:
with open(tmp, "wb") as f:
while True:
chunk = resp.read(chunk_size)
if not chunk:
break
f.write(chunk)
downloaded += len(chunk)
if total > 0:
pct = downloaded * 100 // total
mb_done = downloaded / (1024 * 1024)
mb_total = total / (1024 * 1024)
print(f"\r {target.name}: {mb_done:.1f}/{mb_total:.1f} MB ({pct}%)", end="", flush=True)
else:
mb_done = downloaded / (1024 * 1024)
print(f"\r {target.name}: {mb_done:.1f} MB", end="", flush=True)
tmp.rename(target)
print() # newline after progress
except BaseException:
tmp.unlink(missing_ok=True)
raise
def _download_bge_model(target_dir: Path, errors_ref: list) -> bool:
"""Download bge-small-en-v1.5 ONNX model from HuggingFace. Returns True on success."""
target_dir.mkdir(parents=True, exist_ok=True)
required = ["model.onnx", "tokenizer.json", "config.json"]
if all((target_dir / f).exists() for f in required):
print(f" bge-small-en-v1.5 model already present at {target_dir}")
return True
print(" Downloading bge-small-en-v1.5 ONNX model (~130MB)...")
try:
hf_repo = "https://huggingface.co/BAAI/bge-small-en-v1.5/resolve/main"
# model.onnx lives in onnx/ subdir, tokenizer files at repo root
files = {
"model.onnx": f"{hf_repo}/onnx/model.onnx",
"tokenizer.json": f"{hf_repo}/tokenizer.json",
"config.json": f"{hf_repo}/config.json",
"tokenizer_config.json": f"{hf_repo}/tokenizer_config.json",
}
for fname, url in files.items():
target = target_dir / fname
if not target.exists():
_download_file(url, target)
except Exception as e:
errors_ref.append(e)
print(f" ERROR: bge model download failed: {e}")
print(f" Manually place model files in {target_dir}")
return False
if not (target_dir / "model.onnx").exists():
errors_ref.append("model.onnx not present after download")
print(" ERROR: model.onnx still not present after download attempt")
return False
print(f" bge-small-en-v1.5 model downloaded to {target_dir}")
return True
# ---------------------------------------------------------------------------
# CLI Memory Commands — direct terminal access to OMEGA
# ---------------------------------------------------------------------------
def _format_age(created_at) -> str:
"""Format a datetime as relative age string (e.g. '2d ago', '1w ago')."""
if not created_at:
return ""
now = datetime.now(timezone.utc)
if created_at.tzinfo is None:
# Naive datetime — assume UTC
created_at = created_at.replace(tzinfo=timezone.utc)
delta = now - created_at
seconds = int(delta.total_seconds())
if seconds < 60:
return "just now"
if seconds < 3600:
return f"{seconds // 60}m ago"
if seconds < 86400:
return f"{seconds // 3600}h ago"
days = seconds // 86400
if days < 7:
return f"{days}d ago"
if days < 30:
return f"{days // 7}w ago"
return f"{days // 30}mo ago"
def cmd_query(args):
"""Search memories by semantic similarity or exact phrase."""
query_text = " ".join(args.query_text)
if not query_text.strip():
print("Usage: omega query <search text>", file=sys.stderr)
sys.exit(1)
limit = getattr(args, "limit", 10)
use_json = getattr(args, "json", False)
exact = getattr(args, "exact", False)
start = time.monotonic()
if exact:
# For --json, use the store directly
if use_json:
from omega.bridge import _get_store
db = _get_store()
results = db.phrase_search(phrase=query_text, limit=limit)
elapsed = time.monotonic() - start
out = []
for node in results:
out.append(
{
"id": node.id,
"content": node.content,
"event_type": (node.metadata or {}).get("event_type", "memory"),
"created_at": node.created_at.isoformat() if node.created_at else "",
"tags": (node.metadata or {}).get("tags", []),
}
)
print(json.dumps({"results": out, "count": len(out), "elapsed_s": round(elapsed, 3)}, indent=2))
else:
from omega.bridge import _get_store
db = _get_store()
results = db.phrase_search(phrase=query_text, limit=limit)
elapsed = time.monotonic() - start
if results:
from omega.cli_ui import print_table
rows = []
for node in results:
etype = (node.metadata or {}).get("event_type", "memory")
preview = node.content[:120].replace("\n", " ")
age = _format_age(node.created_at)
mid = node.id[:12] if node.id else ""
rows.append(("--", etype, preview, age, mid))
print_table(
None, ["Score", "Type", "Preview", "Age", "ID"], rows, styles=["dim", "bold", None, "dim", "dim"]
)
print(f"\n{len(results)} result(s) ({elapsed:.2f}s)")
else:
print(f'No results for "{query_text}" ({elapsed:.2f}s)')
else:
from omega.bridge import query_structured
results = query_structured(query_text, limit=limit)
elapsed = time.monotonic() - start
if use_json:
print(json.dumps({"results": results, "count": len(results), "elapsed_s": round(elapsed, 3)}, indent=2))
else:
if results:
from omega.cli_ui import print_table
rows = []
for r in results:
relevance = f"{int(r.get('relevance', 0) * 100)}%"
etype = r.get("event_type", "memory")
preview = r.get("content", "")[:120].replace("\n", " ")
age = ""
if r.get("created_at"):
try:
dt = datetime.fromisoformat(r["created_at"])
age = _format_age(dt)
except (ValueError, TypeError):
pass
mid = r.get("id", "")[:12]
rows.append((relevance, etype, preview, age, mid))
print_table(
None, ["Score", "Type", "Preview", "Age", "ID"], rows, styles=["cyan", "bold", None, "dim", "dim"]
)
print(f"\n{len(results)} result(s) ({elapsed:.2f}s)")
else:
print(f'No results for "{query_text}" ({elapsed:.2f}s)')
# Warn if semantic search is degraded
from omega.graphs import get_active_backend
if get_active_backend() is None:
print(
"\n NOTE: Semantic search unavailable — results use text matching only.",
file=sys.stderr,
)
print(
" Run 'omega setup' to download the embedding model.",
file=sys.stderr,
)
_CLI_TYPE_MAP = {
"memory": "memory",
"lesson": "lesson_learned",
"decision": "decision",
"error": "error_pattern",
"task": "task_completion",
"preference": "user_preference",
}
def cmd_store(args):
"""Store a memory with a specified type."""
content = " ".join(args.content)
if not content.strip():
print("Usage: omega store <text> [-t TYPE]", file=sys.stderr)
sys.exit(1)
cli_type = getattr(args, "type", "memory")
event_type = _CLI_TYPE_MAP.get(cli_type, cli_type)
from omega.bridge import store
store(content=content, event_type=event_type)
print(f"Stored [{cli_type}]: {content[:80]}")
def cmd_remember(args):
"""Store a permanent user preference."""
text = " ".join(args.text)
if not text.strip():
print("Usage: omega remember <text>", file=sys.stderr)
sys.exit(1)
from omega.bridge import remember
remember(text=text)
print(f"Remembered: {text[:120]}")
def cmd_timeline(args):
"""Show memory timeline grouped by day."""
days = getattr(args, "days", 7)
use_json = getattr(args, "json", False)
if use_json:
from omega.bridge import _get_store
db = _get_store()
data = db.get_timeline(days=days, limit_per_day=20)
out = {}
for day, memories in (data or {}).items():
out[day] = []
for m in memories:
out[day].append(
{
"id": m.id,
"content": m.content[:200],
"event_type": (m.metadata or {}).get("event_type", "memory"),
"created_at": m.created_at.isoformat() if m.created_at else "",
}
)
print(json.dumps(out, indent=2))
else:
from omega.bridge import _get_store
from omega.cli_ui import print_header, print_table
db = _get_store()
data = db.get_timeline(days=days, limit_per_day=20)
if not data:
print(f"No memories in the last {days} days.")
return
total = sum(len(v) for v in data.values())
print_header(f"Memory Timeline ({total} memories, last {days} days)")
for day in sorted(data.keys(), reverse=True):
memories = data[day]
rows = []
for m in memories:
etype = (m.metadata or {}).get("event_type", "memory")
preview = m.content[:100].replace("\n", " ")
time_str = m.created_at.strftime("%H:%M") if m.created_at else ""
mid = m.id[:12] if m.id else ""
rows.append((time_str, etype, preview, mid))
print_table(
f"{day} ({len(memories)})",
["Time", "Type", "Preview", "ID"],
rows,
styles=["dim", "bold", None, "dim"],
)
# ---------------------------------------------------------------------------
# Setup & Doctor
# ---------------------------------------------------------------------------
def _setup_claude_code(errors_ref: list, hooks_src: Path):
"""Claude Code-specific setup: MCP registration, hooks, CLAUDE.md."""
# Register MCP server with Claude Code
print(" Registering MCP server with Claude Code...")
python_path = _resolve_python_path()
try:
result = subprocess.run(
["claude", "mcp", "add", "omega-memory", "--", python_path, "-m", "omega.server.mcp_server"],
capture_output=True,
text=True,
timeout=10,
)
if result.returncode == 0:
print(" MCP server registered successfully")
else:
errors_ref.append(1)
print(f" ERROR: MCP registration returned code {result.returncode}")
if result.stderr:
print(f" {result.stderr.strip()}")
print(f" Register manually: claude mcp add omega-memory -- {python_path} -m omega.server.mcp_server")
except FileNotFoundError:
errors_ref.append(1)
print(" ERROR: 'claude' command not found in PATH.")
print(" Install Claude Code: https://docs.anthropic.com/en/docs/claude-code")
print(f" Or register manually: claude mcp add omega-memory -- {python_path} -m omega.server.mcp_server")
except Exception as e:
errors_ref.append(1)
print(f" ERROR: MCP registration failed: {e}")
print(f" Register manually: claude mcp add omega-memory -- {python_path} -m omega.server.mcp_server")
# Install hooks
hooks_dst = Path.home() / ".claude" / "scripts"
hooks_dst.mkdir(parents=True, exist_ok=True)
hook_files = ["session_start.py", "session_stop.py", "surface_memories.py", "auto_capture.py"]
for hook in hook_files:
src = hooks_src / hook
dst = hooks_dst / f"omega-{hook}"
if src.exists():
shutil.copy2(src, dst)
dst.chmod(0o755)
print(f" Installed hook: {dst.name}")
else:
print(f" WARNING: Hook source not found: {src}")
# Wire hooks into settings.json
try:
_inject_settings_hooks(hooks_src)
except Exception as e:
errors_ref.append(1)
print(f" ERROR: Failed to configure settings.json hooks: {e}")
# Inject OMEGA block into CLAUDE.md
try:
_inject_claude_md()
except Exception as e:
print(f" WARNING: Failed to update CLAUDE.md: {e}")
def _mcp_server_config() -> dict:
"""Return the MCP server JSON block for omega-memory."""
python_path = _resolve_python_path()
return {
"command": python_path,
"args": ["-m", "omega.server.mcp_server"],
}
def _write_mcp_config(config_path: Path, key: str, errors_ref: list) -> bool:
"""Read/create a JSON config file and merge omega-memory into the given key.
Args:
config_path: Path to the config JSON file.
key: Top-level key for MCP servers (e.g. "mcpServers" or "context_servers").
errors_ref: List to append errors to.
Returns True on success.
"""
config_path.parent.mkdir(parents=True, exist_ok=True)
existing = {}
if config_path.exists():
try:
existing = json.loads(config_path.read_text())
except (json.JSONDecodeError, OSError) as e:
errors_ref.append(e)
print(f" ERROR: Could not parse {config_path}: {e}")
return False
if key not in existing:
existing[key] = {}
existing[key]["omega-memory"] = _mcp_server_config()
try:
config_path.write_text(json.dumps(existing, indent=2) + "\n")
print(f" Wrote MCP config to {config_path}")
return True
except OSError as e:
errors_ref.append(e)
print(f" ERROR: Could not write {config_path}: {e}")
return False
def _setup_cursor(errors_ref: list):
"""Cursor setup: write MCP config to ~/.cursor/mcp.json."""
print(" Configuring Cursor...")
config_path = Path.home() / ".cursor" / "mcp.json"
if _write_mcp_config(config_path, "mcpServers", errors_ref):
print(" Restart Cursor to activate OMEGA.")
print(" NOTE: Hooks (auto-capture, memory surfacing) are only available with Claude Code.")
def _setup_windsurf(errors_ref: list):
"""Windsurf setup: write MCP config to ~/.codeium/windsurf/mcp_config.json."""
print(" Configuring Windsurf...")
config_path = Path.home() / ".codeium" / "windsurf" / "mcp_config.json"
if _write_mcp_config(config_path, "mcpServers", errors_ref):
print(" Restart Windsurf to activate OMEGA.")
print(" NOTE: Hooks (auto-capture, memory surfacing) are only available with Claude Code.")
def _setup_zed(errors_ref: list):
"""Zed setup: merge into ~/.config/zed/settings.json with Zed's context_servers format."""
print(" Configuring Zed...")
config_path = Path.home() / ".config" / "zed" / "settings.json"
config_path.parent.mkdir(parents=True, exist_ok=True)
existing = {}
if config_path.exists():
try:
existing = json.loads(config_path.read_text())
except (json.JSONDecodeError, OSError) as e:
errors_ref.append(e)
print(f" ERROR: Could not parse {config_path}: {e}")
return
if "context_servers" not in existing:
existing["context_servers"] = {}
python_path = _resolve_python_path()
existing["context_servers"]["omega-memory"] = {
"command": {
"path": python_path,
"args": ["-m", "omega.server.mcp_server"],
}
}
try:
config_path.write_text(json.dumps(existing, indent=2) + "\n")
print(f" Wrote config to {config_path}")
print(" Restart Zed to activate OMEGA.")
print(" NOTE: Hooks (auto-capture, memory surfacing) are only available with Claude Code.")
except OSError as e:
errors_ref.append(e)
print(f" ERROR: Could not write {config_path}: {e}")
def cmd_setup(args):
"""Set up OMEGA: create dirs, download model, initialize DB. Optionally configure a client."""
# ── Python version check ──────────────────────────────────────────
if sys.version_info < (3, 11):
print(f"ERROR: OMEGA requires Python 3.11 or higher (you have {sys.version_info.major}.{sys.version_info.minor}).")
print("Install Python 3.11+: https://www.python.org/downloads/")
sys.exit(1)
client = getattr(args, "client", None)
errors = []
download_model = getattr(args, "download_model", False)
# ── Auto-detect Claude Code if --client not specified ─────────────
if client is None and shutil.which("claude"):
client = "claude-code"
print("Setting up OMEGA (Claude Code detected)...")
elif client is None:
print("Setting up OMEGA...")
print(" NOTE: Claude Code CLI not found in PATH.")
print(" Skipping MCP registration. To configure a client later:")
print(" omega setup --client claude-code # full hooks + instructions")
print(" omega setup --client cursor # MCP registration only")
print(" omega setup --client windsurf # MCP registration only")
print(" omega setup --client zed # MCP registration only")
print()
else:
print("Setting up OMEGA...")
# Track what we did for the summary
steps_done = []
steps_skipped = []
files_modified = []
# 1. Create directories with restricted permissions
OMEGA_DIR.mkdir(parents=True, exist_ok=True, mode=0o700)
(OMEGA_DIR / "graphs").mkdir(exist_ok=True, mode=0o700)
print(f" Created {OMEGA_DIR}")
steps_done.append("Storage directory")
# 2. Download ONNX model
if download_model:
_download_bge_model(BGE_MODEL_DIR, errors)
steps_done.append("Embedding model (bge-small-en-v1.5)")
else:
bge_model = BGE_MODEL_DIR / "model.onnx"
minilm_model = MINILM_MODEL_DIR / "model.onnx"
if bge_model.exists():
print(f" ONNX model: bge-small-en-v1.5 at {BGE_MODEL_DIR}")
steps_done.append("Embedding model (already present)")
elif minilm_model.exists():
print(f" ONNX model: all-MiniLM-L6-v2 at {MINILM_MODEL_DIR}")
print(" TIP: Run 'omega setup --download-model' to upgrade to bge-small-en-v1.5")
steps_done.append("Embedding model (already present)")
else:
MINILM_MODEL_DIR.mkdir(parents=True, exist_ok=True)
model_path = MINILM_MODEL_DIR / "model.onnx"
print(" Downloading ONNX embedding model (all-MiniLM-L6-v2, ~90MB)...")
script = Path(__file__).parent.parent.parent / "scripts" / "download_model.py"
if script.exists():
subprocess.run([sys.executable, str(script), str(MINILM_MODEL_DIR)], check=True)
else:
try:
hf_repo = "https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2/resolve/main"
# model.onnx lives under onnx/, tokenizer/config files are at repo root
files = {
"model.onnx": f"{hf_repo}/onnx/model.onnx",
"tokenizer.json": f"{hf_repo}/tokenizer.json",
"config.json": f"{hf_repo}/config.json",
"tokenizer_config.json": f"{hf_repo}/tokenizer_config.json",
"vocab.txt": f"{hf_repo}/vocab.txt",
}
for fname, url in files.items():
target = MINILM_MODEL_DIR / fname
if not target.exists():
_download_file(url, target)
except Exception as e:
errors.append(e)
print(f" ERROR: Model download failed: {e}")
print(f" Manually place model files in {MINILM_MODEL_DIR}")
if not model_path.exists():
errors.append("model.onnx not present")
print(" ERROR: model.onnx still not present after download attempt")
else:
print(" TIP: Run 'omega setup --download-model' to upgrade to bge-small-en-v1.5")
steps_done.append("Embedding model (downloaded)")
# 3. Create default config
config_path = OMEGA_DIR / "config.json"
if not config_path.exists():
config = {
"storage_path": str(OMEGA_DIR),
"model_dir": str(ONNX_MODEL_DIR),
"version": "0.1.0",
"entity_scoping": {"enabled": False},
}
config_path.write_text(json.dumps(config, indent=2))
print(f" Created config at {config_path}")
steps_done.append("Config file")
# 5. Client-specific setup
hooks_src = Path(__file__).parent.parent.parent / "hooks"
if client == "claude-code":
_setup_claude_code(errors, hooks_src)
steps_done.append("MCP server registration")
steps_done.append("Hooks (settings.json)")
steps_done.append("CLAUDE.md instructions")
files_modified.extend([
"~/.claude.json (MCP server entry)",
"~/.claude/settings.json (hook entries)",
"~/.claude/CLAUDE.md (OMEGA instruction block)",
])
elif client == "cursor":
_setup_cursor(errors)
steps_done.append("MCP server registration (Cursor)")
files_modified.append("~/.cursor/mcp.json")
elif client == "windsurf":
_setup_windsurf(errors)
steps_done.append("MCP server registration (Windsurf)")
files_modified.append("~/.codeium/windsurf/mcp_config.json")
elif client == "zed":
_setup_zed(errors)
steps_done.append("MCP server registration (Zed)")
files_modified.append("~/.config/zed/settings.json")
else:
steps_skipped.append("MCP server registration (no client specified)")
steps_skipped.append("Hooks (no client specified)")
python_path = _resolve_python_path()
print("\n MCP server ready. Add to your client:")
print(f" Command: {python_path} -m omega.server.mcp_server")
print(" Transport: stdio")
# ── Summary ───────────────────────────────────────────────────────
print()
if errors:
print(f"OMEGA setup completed with {len(errors)} error(s).")
for step in steps_done:
print(f" [OK] {step}")
for err in errors:
print(f" [FAIL] {err}")
for step in steps_skipped:
print(f" [SKIP] {step}")
print("\nRun 'omega doctor' to diagnose issues.")
sys.exit(1)
else:
print("OMEGA setup complete!")
for step in steps_done:
print(f" [OK] {step}")
for step in steps_skipped:
print(f" [SKIP] {step}")
if files_modified:
print("\n Files modified outside ~/.omega/:")
for f in files_modified:
print(f" {f}")
print(f"\n Storage: {OMEGA_DIR}")
print(" Run 'omega doctor' to verify.")
def _collect_status_data() -> dict:
"""Collect status data as a dict (shared by human and JSON output)."""
data: dict = {}
db_path = OMEGA_DIR / "omega.db"
if db_path.exists():
import sqlite3
size_mb = db_path.stat().st_size / (1024 * 1024)
data["backend"] = "sqlite"
data["database"] = str(db_path)
data["db_size_mb"] = round(size_mb, 2)
try:
conn = sqlite3.connect(str(db_path))
data["memory_count"] = conn.execute("SELECT COUNT(*) FROM memories").fetchone()[0]
try:
import sqlite_vec
conn.enable_load_extension(True)
sqlite_vec.load(conn)
conn.enable_load_extension(False)
data["vector_search"] = True
except Exception:
data["vector_search"] = False
conn.close()
except Exception as e:
data["error"] = str(e)
else:
store_path = OMEGA_DIR / "store.jsonl"
if store_path.exists():
size_mb = store_path.stat().st_size / (1024 * 1024)
with open(store_path) as f:
line_count = sum(1 for _ in f)
data["backend"] = "jsonl"
data["memory_count"] = line_count
data["db_size_mb"] = round(size_mb, 2)
else:
data["backend"] = None
data["memory_count"] = 0
bge_path = BGE_MODEL_DIR / "model.onnx"
minilm_path = MINILM_MODEL_DIR / "model.onnx"
if bge_path.exists():
data["model"] = "bge-small-en-v1.5"
data["model_size_mb"] = round(bge_path.stat().st_size / (1024 * 1024), 0)
elif minilm_path.exists():
data["model"] = "all-MiniLM-L6-v2"
data["model_size_mb"] = round(minilm_path.stat().st_size / (1024 * 1024), 0)
else:
data["model"] = None
data["profile"] = (OMEGA_DIR / "profile.json").exists()
config_path = OMEGA_DIR / "config.json"
if config_path.exists():
try:
data["config_version"] = json.loads(config_path.read_text()).get("version")
except Exception:
pass
return data
def cmd_status(args):
"""Show OMEGA status: memory count, store size, model status."""
use_json = getattr(args, "json", False)
if use_json:
print(json.dumps(_collect_status_data(), indent=2))
return
from omega.cli_ui import print_header, print_kv
print_header("OMEGA Status")
kv: list[tuple[str, str]] = []
# SQLite database (primary backend)
db_path = OMEGA_DIR / "omega.db"
if db_path.exists():
import sqlite3
size_mb = db_path.stat().st_size / (1024 * 1024)
kv.append(("Backend", "SQLite"))
kv.append(("Database", str(db_path)))
kv.append(("Size", f"{size_mb:.2f} MB"))
try:
conn = sqlite3.connect(str(db_path))
count = conn.execute("SELECT COUNT(*) FROM memories").fetchone()[0]
kv.append(("Memories", str(count)))
# Check sqlite-vec availability
try:
import sqlite_vec
conn.enable_load_extension(True)
sqlite_vec.load(conn)
conn.enable_load_extension(False)
kv.append(("Vector search", "enabled (sqlite-vec)"))
except Exception:
kv.append(("Vector search", "text-only fallback"))
conn.close()
except Exception as e:
kv.append(("Error", str(e)))
else:
# Legacy JSONL store
store_path = OMEGA_DIR / "store.jsonl"
if store_path.exists():
size_mb = store_path.stat().st_size / (1024 * 1024)
with open(store_path) as f:
line_count = sum(1 for _ in f)
kv.append(("Backend", "JSONL (legacy)"))
kv.append(("Store", str(store_path)))
kv.append(("Memories", str(line_count)))
kv.append(("Size", f"{size_mb:.2f} MB"))
kv.append(("Tip", "Run 'omega migrate-db' to upgrade to SQLite"))
else:
kv.append(("Store", "not initialized"))
kv.append(("Memories", "0"))
# Model
bge_path = BGE_MODEL_DIR / "model.onnx"
minilm_path = MINILM_MODEL_DIR / "model.onnx"
if bge_path.exists():
model_mb = bge_path.stat().st_size / (1024 * 1024)
kv.append(("Model", f"bge-small-en-v1.5 ONNX ({model_mb:.0f} MB)"))
elif minilm_path.exists():
model_mb = minilm_path.stat().st_size / (1024 * 1024)
kv.append(("Model", f"all-MiniLM-L6-v2 ONNX ({model_mb:.0f} MB)"))
kv.append(("Tip", "Run 'omega setup --download-model' to upgrade to bge-small-en-v1.5"))
else:
kv.append(("Model", "not downloaded"))
kv.append(("Tip", "Run 'omega setup' to download"))
# Legacy graphs (show if they still exist, suggest migration)
graphs_dir = OMEGA_DIR / "graphs"
if graphs_dir.exists():
graph_files = list(graphs_dir.glob("*.json"))
if graph_files:
kv.append(("Legacy graphs", f"{len(graph_files)} files (run 'omega migrate-db' to convert)"))
# Profile
profile_path = OMEGA_DIR / "profile.json"
if profile_path.exists():
kv.append(("Profile", str(profile_path)))
# Config
config_path = OMEGA_DIR / "config.json"
if config_path.exists():
config = json.loads(config_path.read_text())
kv.append(("Version", config.get("version", "unknown")))
print_kv(kv)
# Cloud
secrets_path = OMEGA_DIR / "secrets.json"
if secrets_path.exists():
cloud_kv = [("Cloud", "configured")]
pull_marker = OMEGA_DIR / "last-cloud-pull"
if pull_marker.exists():
try:
ts = pull_marker.read_text().strip()
cloud_kv.append(("Last pull", ts))
except Exception:
pass
push_marker = OMEGA_DIR / "last-cloud-push"
if push_marker.exists():
try:
ts = push_marker.read_text().strip()
cloud_kv.append(("Last push", ts))
except Exception:
pass
print_kv(cloud_kv)
else:
print_kv([("Cloud", "not configured")])
print()
def cmd_reingest(args):
"""Reingest JSONL entries into the SQLite database."""
store_path = OMEGA_DIR / "store.jsonl"
pre_sqlite = OMEGA_DIR / "store.jsonl.pre-sqlite"
# Check both current and backed-up JSONL
if pre_sqlite.exists() and not store_path.exists():
store_path = pre_sqlite
if not store_path.exists():
print(f"No JSONL store found at {OMEGA_DIR}")
print(" Nothing to reingest (SQLite is the primary store now)")
return
from omega.bridge import reingest
result = reingest(store_path=store_path)
print("\nReingest complete:")
print(f" Ingested: {result.get('ingested', 0)}")
print(f" Duplicates: {result.get('duplicates', 0)}")
print(f" Skipped: {result.get('skipped', 0)}")
print(f" Errors: {result.get('errors', 0)}")
print(f" Total: {result.get('total', 0)}")
from omega.bridge import status as omega_status
s = omega_status()
print(f"\nNode count: {s.get('node_count', 0)}")
def cmd_consolidate(args):
"""Run memory consolidation: deduplicate and prune old entries."""
prune_days = getattr(args, "prune_days", 30)
print(f"Running OMEGA consolidation (prune_days={prune_days})...")
from omega.bridge import _get_store, deduplicate
db = _get_store()
node_count_before = db.node_count()
print(f" Nodes before: {node_count_before}")
# Run deduplication via bridge
result = deduplicate()
merged = result.get("merged", 0) if isinstance(result, dict) else 0
# Prune expired
expired = db.cleanup_expired()
# Evict old low-access entries if requested
evicted = 0
if prune_days > 0:
evicted = db.evict_lru(count=0) # 0 = only expired
node_count_after = db.node_count()
print("\nConsolidation complete:")
print(f" Duplicates merged: {merged}")
print(f" Expired pruned: {expired}")
print(f" Evicted: {evicted}")
print(f" Nodes after: {node_count_after}")
def cmd_migrate_db(args):
"""Migrate from JSON graphs + JSONL to SQLite backend."""
force = getattr(args, "force", False)
from omega.migrate_to_sqlite import migrate
report = migrate(force=force)
if report.get("warnings"):
for w in report["warnings"]:
print(f" WARNING: {w}")
def cmd_backup(args):
"""Back up omega.db to ~/.omega/backups/ with timestamp."""
db_path = OMEGA_DIR / "omega.db"
if not db_path.exists():
print("No omega.db found — nothing to back up.")
return
backups_dir = OMEGA_DIR / "backups"
backups_dir.mkdir(parents=True, exist_ok=True, mode=0o700)
timestamp = datetime.now(timezone.utc).strftime("%Y%m%d-%H%M%S")
backup_path = backups_dir / f"omega-{timestamp}.db"
import sqlite3
from omega.crypto import secure_connect
src = sqlite3.connect(str(db_path))
dst = secure_connect(backup_path)
src.backup(dst)
dst.close()
src.close()
size_mb = backup_path.stat().st_size / (1024 * 1024)
print(f"Backup saved: {backup_path} ({size_mb:.2f} MB)")
# Rotate — keep only the 5 most recent backups
backups = sorted(backups_dir.glob("omega-*.db"), key=lambda p: p.stat().st_mtime, reverse=True)
for old in backups[5:]:
old.unlink()
print(f" Rotated old backup: {old.name}")
def cmd_export(args):
"""Export memories to a JSON file."""
filepath = args.filepath
type_filter = getattr(args, "type", None)
from omega.bridge import _get_store
db = _get_store()
if type_filter:
# Filtered export: get all memories, filter by type, write manually
all_nodes = db.get_recent(limit=100000)
filtered = [
n for n in all_nodes
if (n.metadata or {}).get("event_type", "memory") == type_filter
]
export_data = []
for n in filtered:
entry = {
"id": n.id,
"content": n.content,
"metadata": n.metadata or {},
"created_at": n.created_at.isoformat() if n.created_at else None,
}
export_data.append(entry)
Path(filepath).write_text(json.dumps(export_data, indent=2, default=str))
print(f"Exported {len(export_data)} {type_filter} memories to {filepath}")
else:
from omega.bridge import export_memories
result = export_memories(filepath)
print(result)
def cmd_import(args):
"""Import memories from a JSON file."""
filepath = args.filepath
if not Path(filepath).exists():
print(f"File not found: {filepath}", file=sys.stderr)
sys.exit(1)
clear = getattr(args, "clear", False)
from omega.bridge import import_memories
result = import_memories(filepath, clear_existing=clear)
print(result)
def cmd_compact(args):
"""Cluster and summarize related memories to reduce noise."""
event_type = getattr(args, "type", "lesson_learned")
threshold = getattr(args, "threshold", 0.60)
dry_run = getattr(args, "dry_run", False)
print(f"Compacting {event_type} (threshold={threshold}, dry_run={dry_run})...")
from omega.bridge import compact
result = compact(
event_type=event_type,
similarity_threshold=threshold,
dry_run=dry_run,
)
print(result)
def cmd_stats(args):
"""Show memory type distribution and health summary."""
use_json = getattr(args, "json", False)
from omega.bridge import type_stats, status as omega_status
stats = type_stats()
health = omega_status()
if use_json:
print(json.dumps({"types": stats, "health": health}, indent=2, default=str))
return
from omega.cli_ui import print_bar_chart, print_header, print_kv
total = sum(stats.values())
print_header("OMEGA Stats")
print_kv(
[
("Memories", str(total)),
("DB size", f"{health.get('db_size_mb', 0):.2f} MB"),
("Edges", str(health.get("edge_count", 0))),
("Backend", health.get("backend", "unknown")),
]
)
print()
items = sorted(stats.items(), key=lambda x: -x[1])
print_bar_chart(items, title="Type Distribution", total=total)
def cmd_activity(args):
"""Show recent session activity: sessions, tasks, insights, claims."""
days = getattr(args, "days", 7)
use_json = getattr(args, "json", False)
from omega.bridge import get_activity_summary
data = get_activity_summary(days=days)
if use_json:
print(json.dumps(data, indent=2, default=str))
return
from omega.cli_ui import print_header, print_section, print_table
print_header(f"OMEGA Activity (last {days} days)")
# Sessions
print_section("Active Sessions")
if data["sessions"]:
rows = []
for s in data["sessions"]:
project = s.get("project") or ""
rows.append(
(
s.get("session_id") or "",
project.split("/")[-1] or project,
(s.get("task") or "")[:50],
(s.get("started_at") or "")[:19],
s.get("status") or "",
)
)
print_table(
None,
["Session", "Project", "Task", "Started", "Status"],
rows,
styles=["cyan", "bold", None, "dim", "green"],
)
else:
print(" No active sessions")
# Tasks
print_section("Open Tasks")
if data["tasks"]:
rows = []
for t in data["tasks"]:
progress = f"{t.get('progress', 0)}%" if t.get("status") == "in_progress" else ""
rows.append(
(
str(t.get("id", "")),
t.get("title", "")[:50],
t.get("status", ""),
progress,
t.get("created_at", "")[:19],
)
)
print_table(
None,
["ID", "Title", "Status", "Progress", "Created"],
rows,
styles=["dim", "bold", "yellow", "cyan", "dim"],
)
else:
print(" No open tasks")
# Recent Insights
print_section("Recent Insights")
if data["insights"]:
rows = []
for i in data["insights"]:
rows.append(
(
i.get("type", ""),
i.get("preview", "")[:80],
i.get("created_at", "")[:19],
i.get("id", ""),
)
)
print_table(None, ["Type", "Preview", "Created", "ID"], rows, styles=["bold", None, "dim", "dim"])
else:
print(" No recent insights")
# Claims
print_section("Active Claims")
if data["claims"]:
rows = []
for c in data["claims"]:
rows.append(
(
c.get("type", ""),
c.get("path", ""),
c.get("session", ""),
)
)
print_table(None, ["Type", "Path/Branch", "Session"], rows, styles=["bold", None, "dim"])
else:
print(" No active claims")
def _send_notification(text: str, context: str = None):
"""Send a macOS notification via osascript. Best-effort."""
try:
text_escaped = text.replace('"', '\\"')
subtitle = ""
if context:
ctx_escaped = context[:80].replace('"', '\\"')
subtitle = f' subtitle "{ctx_escaped}"'
script = f'display notification "{text_escaped}" with title "OMEGA Reminder"{subtitle} sound name "Glass"'
subprocess.run(
["osascript", "-e", script],
capture_output=True,
timeout=5,
)
except Exception:
pass # Best-effort
def cmd_remind(args):
"""Manage reminders: set, list, check, dismiss."""
sub = getattr(args, "remind_command", None)
if sub == "set":
text = " ".join(args.text)
duration = args.duration
context = getattr(args, "context", None)
if not text.strip():
print("Usage: omega remind set <text> -d <duration>", file=sys.stderr)
sys.exit(1)
from omega.bridge import create_reminder
try:
result = create_reminder(text=text, duration=duration, context=context)
print(f"Reminder set: {result['text']}")
print(f" Due at: {result['remind_at_local']}")
print(f" ID: {result['reminder_id']}")
except ValueError as e:
print(f"Error: {e}", file=sys.stderr)
sys.exit(1)
elif sub == "list":
from omega.bridge import list_reminders
status = getattr(args, "status", None)
include_dismissed = status in ("dismissed", "all")
reminders = list_reminders(status=status, include_dismissed=include_dismissed)
if not reminders:
print("No reminders found.")
return
print(f"Reminders ({len(reminders)} found):\n")
for r in reminders:
overdue = " [OVERDUE]" if r.get("is_overdue") else ""
print(f" [{r['status']}]{overdue} {r['text']}")
print(f" Due: {r['remind_at_local']} | Time: {r['time_until']}")
if r.get("context"):
print(f" Context: {r['context'][:120]}")
print(f" ID: {r['id']}")
elif sub == "check":
from omega.bridge import get_due_reminders
notify = getattr(args, "notify", False)
due = get_due_reminders(mark_fired=True)
if not due:
print("No reminders due.")
return
for r in due:
overdue = " [OVERDUE]" if r.get("is_overdue") else ""
print(f"[REMINDER]{overdue} {r['text']}")
if r.get("context"):
print(f" Context: {r['context'][:120]}")
print(f" ID: {r['id']}")
if notify:
_send_notification(r["text"], r.get("context"))
elif sub == "dismiss":
reminder_id = args.reminder_id
from omega.bridge import dismiss_reminder
result = dismiss_reminder(reminder_id)
if result.get("success"):
print(f"Dismissed: {result.get('text', reminder_id)}")
else:
print(f"Error: {result.get('error')}", file=sys.stderr)
sys.exit(1)
else:
print("Usage: omega remind {set,list,check,dismiss}", file=sys.stderr)
sys.exit(1)
def cmd_logs(args):
"""Show recent entries from ~/.omega/hooks.log."""
hooks_log = OMEGA_DIR / "hooks.log"
if not hooks_log.exists():
print("No hooks.log found — no hook errors recorded.")
return
n = getattr(args, "lines", 50)
lines = hooks_log.read_text().strip().split("\n")
recent = lines[-n:] if len(lines) > n else lines
print(f"--- Last {len(recent)} lines from {hooks_log} ---\n")
for line in recent:
print(line)
def cmd_validate(args):
"""Validate omega.db integrity: SQLite PRAGMA + FTS5 checks."""
from omega.cli_ui import print_header, print_section, print_status_line, print_summary, print_table
db_path = OMEGA_DIR / "omega.db"
if not db_path.exists():
print("No omega.db found.")
return
import sqlite3
conn = sqlite3.connect(str(db_path))
errors = 0
print_header("OMEGA Validate")
# SQLite integrity check
print_section("SQLite Integrity")
result = conn.execute("PRAGMA integrity_check").fetchone()[0]
if result == "ok":
print_status_line("ok", "PRAGMA integrity_check passed")
else:
errors += 1
print_status_line("fail", result)
# FTS5 integrity
print_section("FTS5 Index")
try:
conn.execute("INSERT INTO memories_fts(memories_fts) VALUES('integrity-check')")
print_status_line("ok", "FTS5 integrity check passed")
except Exception as e:
errors += 1
print_status_line("fail", f"FTS5 integrity: {e}")
if getattr(args, "repair", False):
print(" Attempting rebuild...")
try:
conn.execute("INSERT INTO memories_fts(memories_fts) VALUES('rebuild')")
conn.commit()
print_status_line("ok", "FTS5 index rebuilt")
errors -= 1
except Exception as rebuild_err:
print_status_line("fail", f"Rebuild failed: {rebuild_err}")
# Row counts (allowlist — these names are used in f-string SQL)
print_section("Table Counts")
_VALID_TABLES = frozenset(
[
"memories",
"edges",
"entity_index",
"coord_sessions",
"coord_file_claims",
"coord_branch_claims",
"coord_intents",
"coord_snapshots",
"coord_tasks",
"coord_audit",
]
)
table_rows = []
for tbl in sorted(_VALID_TABLES):
try:
count = conn.execute(f"SELECT COUNT(*) FROM {tbl}").fetchone()[0]
table_rows.append((tbl, str(count)))
except Exception:
pass # Table may not exist
print_table(None, ["Table", "Count"], table_rows)
conn.close()
print()
print_summary(errors, 0)
sys.exit(1 if errors > 0 else 0)
def cmd_serve(args):
"""Run the OMEGA MCP server (stdio or HTTP mode)."""
import asyncio
if getattr(args, "http", False):
from omega.server.http_server import run_http, get_or_create_api_key
api_key = None if args.no_auth else (os.environ.get("OMEGA_API_KEY") or get_or_create_api_key())
if api_key:
print(f"API Key: {api_key[:8]}...")
print(f"Starting OMEGA HTTP server on {args.host}:{args.port}")
print(f"MCP endpoint: http://{args.host}:{args.port}/mcp")
asyncio.run(run_http(args.host, args.port, api_key))
else:
from omega.server.mcp_server import main
asyncio.run(main())
def cmd_doctor(args):
"""Verify OMEGA installation: import, model, database, MCP, hooks."""
from omega.cli_ui import print_header, print_section, print_status_line, print_summary
errors = 0
warnings = 0
def ok(msg):
print_status_line("ok", msg)
def fail(msg):
nonlocal errors
errors += 1
print_status_line("fail", msg)
def warn(msg):
nonlocal warnings
warnings += 1
print_status_line("warn", msg)
print_header("OMEGA Doctor")
# 1. Package import
print_section("Package Import")
try:
import omega
ok(f"omega {omega.__version__} imported")
except Exception as e:
fail(f"Cannot import omega: {e}")
print(f"\n{errors} error(s), {warnings} warning(s)")
sys.exit(1)
try:
from omega.bridge import status as _s, auto_capture as _ac, query as _q # noqa: F811,F401
ok("omega.bridge imported (status, auto_capture, query)")
except Exception as e:
fail(f"Cannot import omega.bridge: {e}")
try:
from omega.server.handlers import HANDLERS
ok(f"omega.server.handlers: {len(HANDLERS)} handlers registered")
except Exception as e:
fail(f"Cannot import handlers: {e}")
try:
from omega.server.tool_schemas import TOOL_SCHEMAS
ok(f"omega.server.tool_schemas: {len(TOOL_SCHEMAS)} tools defined")
except Exception as e:
fail(f"Cannot import tool_schemas: {e}")
# 2. ONNX model
print_section("Embedding Model")
bge_path = BGE_MODEL_DIR / "model.onnx"
minilm_path = MINILM_MODEL_DIR / "model.onnx"
if bge_path.exists():
model_mb = bge_path.stat().st_size / (1024 * 1024)
ok(f"bge-small-en-v1.5 model.onnx present ({model_mb:.0f} MB)")
active_model_dir = BGE_MODEL_DIR
elif minilm_path.exists():
model_mb = minilm_path.stat().st_size / (1024 * 1024)
ok(f"all-MiniLM-L6-v2 model.onnx present ({model_mb:.0f} MB)")
warn("Using legacy model. Run 'omega setup --download-model' to upgrade to bge-small-en-v1.5")
active_model_dir = MINILM_MODEL_DIR
else:
fail(f"model.onnx not found at {BGE_MODEL_DIR} or {MINILM_MODEL_DIR}")
active_model_dir = BGE_MODEL_DIR
tokenizer_path = active_model_dir / "tokenizer.json"
if tokenizer_path.exists():
ok("tokenizer.json present")
else:
fail(f"tokenizer.json not found at {active_model_dir}")
try:
from omega.graphs import generate_embedding, get_embedding_info
info = get_embedding_info()
if info.get("onnx_available"):
ok("ONNX Runtime available")
else:
warn("ONNX Runtime not available, will use fallback")
emb = generate_embedding("test embedding")
if len(emb) == 384:
ok(f"Embedding generation works (384-dim, backend={info.get('backend', 'unknown')})")
else:
fail(f"Embedding dimension wrong: {len(emb)} (expected 384)")
except Exception as e:
fail(f"Embedding generation failed: {e}")
# 3. Database
print_section("Database")
db_path = OMEGA_DIR / "omega.db"
if db_path.exists():
size_mb = db_path.stat().st_size / (1024 * 1024)
ok(f"omega.db exists ({size_mb:.2f} MB)")
else:
warn("omega.db not found (will be created on first use)")
try:
from omega.bridge import status as omega_status
s = omega_status()
# RSS will be high after loading ONNX model — only fail on actual DB issues
db_ok = s.get("node_count", 0) >= 0 and s.get("backend") == "sqlite"
if db_ok:
ok(f"Database accessible: {s.get('node_count', 0)} memories, {s.get('db_size_mb', 0):.2f} MB")
else:
fail(f"Database issue: {s}")
if s.get("vec_enabled"):
ok("sqlite-vec enabled (vector search)")
else:
warn("sqlite-vec not available (text-only search)")
except Exception as e:
fail(f"Database check failed: {e}")
# 4. MCP registration (client-specific)
client = getattr(args, "client", None)
check_claude = client == "claude-code" or shutil.which("claude")
if check_claude:
print_section("MCP Server (Claude Code)")
try:
result = subprocess.run(["claude", "mcp", "list"], capture_output=True, text=True, timeout=10)
if "omega-memory" in result.stdout:
ok("omega-memory registered in Claude Code")
else:
fail("omega-memory NOT registered in Claude Code")
print(" Run: claude mcp add omega-memory -- python3 -m omega.server.mcp_server")
except FileNotFoundError:
warn("Claude Code CLI not found (cannot verify MCP registration)")
except Exception as e:
warn(f"MCP check failed: {e}")
else:
print_section("MCP Server")
python_path = _resolve_python_path()
ok(f"MCP server available: {python_path} -m omega.server.mcp_server")
# 5. FTS5 health
print_section("FTS5 Index")
if db_path.exists():
try:
import sqlite3 as _sqlite3
_conn = _sqlite3.connect(str(db_path))
fts_count = _conn.execute("SELECT COUNT(*) FROM memories_fts").fetchone()[0]
mem_count = _conn.execute("SELECT COUNT(*) FROM memories").fetchone()[0]
if fts_count > 0:
ok(f"FTS5 index populated ({fts_count} entries, {mem_count} memories)")
if abs(fts_count - mem_count) > mem_count * 0.1:
warn(f"FTS5 index drift: {fts_count} vs {mem_count} memories (>10% mismatch)")
else:
warn("FTS5 index empty (text search will use slower LIKE fallback)")
# Integrity check
try:
_conn.execute("INSERT INTO memories_fts(memories_fts) VALUES('integrity-check')")
ok("FTS5 integrity check passed")
except Exception as fts_err:
fail(f"FTS5 integrity check failed: {fts_err}")
print(" Fix: INSERT INTO memories_fts(memories_fts) VALUES('rebuild')")
_conn.close()
except Exception as e:
warn(f"FTS5 check skipped: {e}")
# 5b. Vec index health
print_section("Vector Index")
if db_path.exists():
try:
import sqlite3 as _sqlite3
_conn = _sqlite3.connect(str(db_path))
try:
import sqlite_vec
_conn.enable_load_extension(True)
sqlite_vec.load(_conn)
_conn.enable_load_extension(False)
except Exception:
pass # sqlite-vec may not be installed
try:
vec_count = _conn.execute("SELECT COUNT(*) FROM memories_vec").fetchone()[0]
mem_count = _conn.execute("SELECT COUNT(*) FROM memories").fetchone()[0]
ok(f"Vec index: {vec_count} embeddings, {mem_count} memories")
if vec_count > mem_count:
orphans = vec_count - mem_count
warn(f"Vec index has ~{orphans} potential orphaned embeddings (run 'omega consolidate' to clean)")
except Exception as e:
warn(f"Vec table not available: {e}")
_conn.close()
except Exception as e:
warn(f"Vec check skipped: {e}")
# 6. Coordination tables
print_section("Coordination")
if db_path.exists():
try:
import sqlite3 as _sqlite3
_conn = _sqlite3.connect(str(db_path))
coord_tables = [
"coord_sessions",
"coord_file_claims",
"coord_branch_claims",
"coord_intents",
"coord_snapshots",
"coord_tasks",
"coord_audit",
]
found = 0
for tbl in coord_tables:
row = _conn.execute("SELECT name FROM sqlite_master WHERE type='table' AND name=?", (tbl,)).fetchone()
if row:
found += 1
if found == len(coord_tables):
ok(f"All {found} coordination tables present")
elif found > 0:
warn(f"Only {found}/{len(coord_tables)} coordination tables found")
else:
warn("No coordination tables (run any coordination tool to create them)")
# Check stale sessions
try:
cutoff = (datetime.now(timezone.utc) - timedelta(seconds=360)).isoformat()
stale = _conn.execute(
"SELECT COUNT(*) FROM coord_sessions WHERE last_heartbeat < ?", (cutoff,)
).fetchone()[0]
if stale > 0:
warn(f"{stale} stale session(s) (heartbeat >360s ago)")
else:
ok("No stale sessions")
except Exception:
pass # coord_sessions may not exist yet
_conn.close()
except Exception as e:
warn(f"Coordination check skipped: {e}")
# 7. Memory quality
print_section("Memory Quality")
if db_path.exists():
try:
import sqlite3 as _sqlite3
_conn = _sqlite3.connect(str(db_path))
# Feedback stats
rows = _conn.execute("SELECT metadata FROM memories WHERE metadata LIKE '%feedback_score%'").fetchall()
if rows:
scores = []
flagged = 0
for (meta_str,) in rows:
try:
meta = json.loads(meta_str)
scores.append(meta.get("feedback_score", 0))
if meta.get("flagged_for_review"):
flagged += 1
except Exception:
pass
if scores:
avg = sum(scores) / len(scores)
ok(f"{len(scores)} memories with feedback (avg score: {avg:.2f})")
if flagged > 0:
warn(f"{flagged} memory(ies) flagged for review (score <= -3)")
else:
ok("No feedback signals recorded yet")
_conn.close()
except Exception as e:
warn(f"Quality check skipped: {e}")
# 8. Recent hook errors
print_section("Hook Health")
hooks_log = OMEGA_DIR / "hooks.log"
if hooks_log.exists():
try:
lines = hooks_log.read_text().strip().split("\n")
error_lines = [line for line in lines if line.startswith("[") and ": OK " not in line]
if error_lines:
recent = error_lines[-5:]
warn(f"{len(error_lines)} hook error(s) in log, last {len(recent)}:")
for line in recent:
print(f" {line[:120]}")
else:
ok("No hook errors in log")
except Exception as e:
warn(f"Cannot read hooks.log: {e}")
else:
ok("No hooks.log (no errors recorded)")
# 9. Hooks configuration (Claude Code-specific)
check_hooks = client == "claude-code" or SETTINGS_JSON_PATH.exists()
if check_hooks:
print_section("Hooks (Claude Code)")
if SETTINGS_JSON_PATH.exists():
try:
settings = json.loads(SETTINGS_JSON_PATH.read_text())
hooks = settings.get("hooks", {})
expected_events = ["SessionStart", "Stop", "PostToolUse"]
for event in expected_events:
found = False
for entry in hooks.get(event, []):
for h in entry.get("hooks", []):
if "omega" in h.get("command", ""):
found = True
cmd_parts = h["command"].split()
if cmd_parts and not Path(cmd_parts[0]).exists():
warn(f"{event} hook references {cmd_parts[0]} which doesn't exist")
break
if found:
ok(f"{event} hook configured")
else:
warn(f"{event} hook not configured")
except Exception as e:
warn(f"Cannot read settings.json: {e}")
else:
warn("settings.json not found (hooks not configured)")
# 6. Python path
print_section("Environment")
python_path = _resolve_python_path()
if Path(python_path).exists():
ok(f"Python: {python_path}")
else:
fail(f"Python path does not exist: {python_path}")
ok(f"OMEGA home: {OMEGA_DIR}")
ok(f"Platform: {sys.platform}")
# Summary
print()
print_summary(errors, warnings)
sys.exit(1 if errors > 0 else 0)
def cmd_knowledge(args):
"""Knowledge base management."""
try:
from omega.knowledge.engine import scan_directory, list_documents, search_documents # noqa: F401
except ImportError:
print("Knowledge base requires additional modules.")
print("Learn more: https://omegamax.co")
return
subcmd = getattr(args, "kb_command", None)
if subcmd == "scan":
directory = args.dir
result = scan_directory(directory)
print(result)
elif subcmd == "list":
print(list_documents())
elif subcmd == "search":
query_text = " ".join(args.query)
result = search_documents(query_text, limit=args.limit)
print(result)
elif subcmd == "sync-kb":
from omega.knowledge.cloud_sync import sync_kb_queue
result = sync_kb_queue(batch_size=args.batch_size)
print(result)
else:
docs_dir = Path.home() / ".omega" / "documents"
print("Usage: omega knowledge {scan|list|search}")
print(f"\nDocuments folder: {docs_dir}")
print("Drop PDF, markdown, or text files there for auto-ingestion.")
print("Files are auto-scanned on each Claude Code session start.")
def cmd_cloud(args):
"""Cloud sync and Supabase management."""
try:
from omega.cloud.sync import get_sync # noqa: F401
except ImportError:
print("Cloud sync requires additional modules.")
print("Learn more: https://omegamax.co")
return
from omega.cli_ui import print_header
subcmd = getattr(args, "cloud_command", None)
if subcmd == "setup":
url = args.url
key = args.key
service_key = args.service_key or ""
if not url or not key:
print("Usage: omega cloud setup --url <SUPABASE_URL> --key <ANON_KEY>")
print("\nGet these from: Supabase Dashboard → Settings → API")
return
from omega.cloud.setup import setup_supabase
result = setup_supabase(url, key, service_key)
print(result)
elif subcmd == "sync":
print_header("Cloud Sync")
try:
sync = get_sync()
results = sync.sync_all()
for table, info in results.items():
status = info.get("status", "unknown")
synced = info.get("synced", 0)
print(f" {table}: {synced} synced ({status})")
except Exception as e:
print(f" Sync failed: {e}")
elif subcmd == "status":
try:
print(get_sync().status())
except Exception as e:
print(f"Cloud not configured: {e}")
elif subcmd == "schema":
from omega.cloud.setup import get_schema_sql
print(get_schema_sql())
elif subcmd == "verify":
from omega.cloud.setup import verify_connection
print(verify_connection())
elif subcmd == "pull":
print_header("Cloud Pull")
try:
sync = get_sync()
results = sync.pull_all()
for table, info in results.items():
status = info.get("status", "unknown")
pulled = info.get("pulled", 0)
skipped = info.get("skipped", 0)
print(f" {table}: {pulled} pulled, {skipped} skipped ({status})")
except Exception as e:
print(f" Pull failed: {e}")
else:
print("Usage: omega cloud {setup|sync|pull|status|schema|verify}")
print("\nCloud sync enables mobile access to OMEGA memories via Supabase.")
def cmd_mobile(args):
"""Mobile access setup and mcp-proxy management."""
try:
from omega.cloud.sync import get_sync # noqa: F401
except ImportError:
print("Mobile access requires additional modules.")
print("Learn more: https://omegamax.co")
return
subcmd = getattr(args, "mobile_command", None)
if subcmd == "setup":
print("""
## OMEGA Mobile Access Setup
### Prerequisites
1. Install Tailscale: `brew install tailscale && tailscale up`
### Quick Start (4 steps)
1. Start OMEGA HTTP server:
```
omega mobile serve
```
2. Expose via Tailscale:
```
tailscale serve https / http://127.0.0.1:8089
```
3. Get your Tailscale hostname:
```
tailscale status | head -1
```
4. Add to Claude mobile app:
- Settings → MCP Servers → Add
- URL: https://<your-tailscale-hostname>/mcp
- Header: X-API-Key: <your-key-from-~/.omega/api_key>
- All OMEGA tools available from your phone!
### Security
- API key authentication (stored in ~/.omega/api_key)
- Tailscale uses WireGuard encryption (zero-trust mesh)
- Only your enrolled devices can connect
- No ports exposed to the public internet
- Encryption key stays on your Mac (profile decryption is local)
### Troubleshooting
- Verify: `curl http://127.0.0.1:8089/health`
- Tailscale: `tailscale status` (should show 'active')
- Logs: `omega logs -n 20`
""")
elif subcmd == "serve":
import asyncio
from omega.server.http_server import run_http, get_or_create_api_key
port = args.port
host = args.host
api_key = os.environ.get("OMEGA_API_KEY") or get_or_create_api_key()
print(f"Starting OMEGA HTTP server on {host}:{port}...")
print(f"API Key: {api_key[:8]}...")
print(f"Connect via: http://{host}:{port}/mcp")
print("Press Ctrl+C to stop.\n")
try:
asyncio.run(run_http(host, port, api_key))
except KeyboardInterrupt:
print("\nServer stopped.")
else:
print("Usage: omega mobile {setup|serve}")
print("\nMobile access via mcp-proxy + Tailscale.")
def main():
parser = argparse.ArgumentParser(
prog="omega",
description="OMEGA — Persistent memory for AI coding agents",
)
subparsers = parser.add_subparsers(dest="command", help="Available commands")
# --- Memory commands ---
query_parser = subparsers.add_parser("query", help="Search memories by semantic similarity or exact phrase")
query_parser.add_argument("query_text", nargs="+", help="Search text")
query_parser.add_argument("--exact", action="store_true", help="Use FTS5 exact phrase search instead of semantic")
query_parser.add_argument("--limit", type=int, default=10, help="Max results (default: 10)")
query_parser.add_argument("--json", action="store_true", help="Output as JSON")
store_parser = subparsers.add_parser("store", help="Store a memory with a specified type")
store_parser.add_argument("content", nargs="+", help="Memory content")
store_parser.add_argument(
"-t",
"--type",
default="memory",
choices=["memory", "lesson", "decision", "error", "task", "preference"],
help="Memory type (default: memory)",
)
remember_parser = subparsers.add_parser("remember", help="Store a permanent user preference")
remember_parser.add_argument("text", nargs="+", help="Preference text")
timeline_parser = subparsers.add_parser("timeline", help="Show memory timeline grouped by day")
timeline_parser.add_argument("--days", type=int, default=7, help="Number of days to show (default: 7)")
timeline_parser.add_argument("--json", action="store_true", help="Output as JSON")
# --- Admin commands ---
setup_parser = subparsers.add_parser("setup", help="Set up OMEGA: download model, initialize DB")
setup_parser.add_argument(
"--download-model",
action="store_true",
help="Download bge-small-en-v1.5 ONNX model (upgrade from all-MiniLM-L6-v2)",
)
setup_parser.add_argument(
"--client",
choices=["claude-code", "cursor", "windsurf", "zed"],
help="Configure a specific client (default: auto-detect Claude Code)"
)
status_parser = subparsers.add_parser("status", help="Show memory count, store size, model status")
status_parser.add_argument("--json", action="store_true", help="Output as JSON")
doctor_parser = subparsers.add_parser("doctor", help="Verify installation: import, model, database")
doctor_parser.add_argument("--client", choices=["claude-code"], help="Include client-specific checks (MCP, hooks)")
migrate_db_parser = subparsers.add_parser("migrate-db", help="Migrate JSON graphs to SQLite backend")
migrate_db_parser.add_argument("--force", action="store_true", help="Overwrite existing SQLite database")
subparsers.add_parser("reingest", help="Load store.jsonl entries into graph system")
consolidate_parser = subparsers.add_parser("consolidate", help="Deduplicate, prune, and optimize memory")
consolidate_parser.add_argument(
"--prune-days", type=int, default=30, help="Prune entries older than N days with 0 access (default: 30)"
)
subparsers.add_parser("backup", help="Back up omega.db to ~/.omega/backups/ (keeps last 5)")
export_parser = subparsers.add_parser("export", help="Export memories to a JSON file")
export_parser.add_argument("filepath", help="Output file path (e.g. memories.json)")
export_parser.add_argument(
"-t", "--type",
choices=["memory", "decision", "lesson_learned", "error_pattern", "user_preference", "task_completion"],
help="Export only memories of this type",
)
import_parser = subparsers.add_parser("import", help="Import memories from a JSON file")
import_parser.add_argument("filepath", help="Input file path (e.g. memories.json)")
import_parser.add_argument("--clear", action="store_true", help="Clear existing memories before import")
compact_parser = subparsers.add_parser("compact", help="Cluster and summarize related memories")
compact_parser.add_argument(
"-t",
"--type",
default="lesson_learned",
choices=["lesson_learned", "decision", "error_pattern", "task_completion"],
help="Event type to compact (default: lesson_learned)",
)
compact_parser.add_argument("--threshold", type=float, default=0.60, help="Similarity threshold (default: 0.60)")
compact_parser.add_argument(
"--dry-run", action="store_true", help="Show what would be compacted without changing data"
)
stats_parser = subparsers.add_parser("stats", help="Show memory type distribution and health summary")
stats_parser.add_argument("--json", action="store_true", help="Output as JSON")
activity_parser = subparsers.add_parser("activity", help="Show recent session activity overview")
activity_parser.add_argument("--days", type=int, default=7, help="Number of days to show (default: 7)")
activity_parser.add_argument("--json", action="store_true", help="Output as JSON")
logs_parser = subparsers.add_parser("logs", help="Show recent hook errors from hooks.log")
logs_parser.add_argument("-n", "--lines", type=int, default=50, help="Number of lines to show (default: 50)")
validate_parser = subparsers.add_parser("validate", help="Validate omega.db integrity (SQLite + FTS5)")
validate_parser.add_argument("--repair", action="store_true", help="Attempt to repair FTS5 index if corrupted")
serve_parser = subparsers.add_parser("serve", help="Run MCP server (stdio or HTTP)")
serve_parser.add_argument("--http", action="store_true", help="Run as HTTP server (Streamable HTTP transport)")
serve_parser.add_argument("--port", type=int, default=8787, help="HTTP port (default: 8787)")
serve_parser.add_argument("--host", default="127.0.0.1", help="Bind address (default: 127.0.0.1)")
serve_parser.add_argument("--no-auth", action="store_true", help="Disable API key authentication")
# --- Reminder commands (experimental) ---
remind_parser = subparsers.add_parser("remind", help="Manage time-based reminders (experimental)")
remind_sub = remind_parser.add_subparsers(dest="remind_command", help="Reminder subcommands")
remind_set_parser = remind_sub.add_parser("set", help="Set a new reminder")
remind_set_parser.add_argument("text", nargs="+", help="Reminder text")
remind_set_parser.add_argument("-d", "--duration", required=True, help="Duration: 1h, 30m, 2d, 1w, 1d12h")
remind_set_parser.add_argument("--context", help="Optional context for the reminder")
remind_list_parser = remind_sub.add_parser("list", help="List reminders")
remind_list_parser.add_argument(
"--status",
choices=["pending", "fired", "dismissed", "all"],
help="Filter by status (default: pending + fired)",
)
remind_check_parser = remind_sub.add_parser("check", help="Check for due reminders")
remind_check_parser.add_argument("--notify", action="store_true", help="Send macOS notification for due reminders")
remind_dismiss_parser = remind_sub.add_parser("dismiss", help="Dismiss a reminder")
remind_dismiss_parser.add_argument("reminder_id", help="Reminder ID to dismiss")
# --- Knowledge commands ---
knowledge_parser = subparsers.add_parser("knowledge", aliases=["kb"], help="Knowledge base management")
knowledge_sub = knowledge_parser.add_subparsers(dest="kb_command", help="Knowledge subcommands")
scan_parser = knowledge_sub.add_parser("scan", help="Scan documents folder for new/changed files")
scan_parser.add_argument("--dir", help="Custom directory to scan (default: ~/.omega/documents/)")
knowledge_sub.add_parser("list", help="List all ingested documents")
knowledge_search_parser = knowledge_sub.add_parser("search", help="Search ingested documents")
knowledge_search_parser.add_argument("query", nargs="+", help="Search query")
knowledge_search_parser.add_argument("--limit", type=int, default=5, help="Max results (default: 5)")
sync_kb_parser = knowledge_sub.add_parser("sync-kb", help="Sync pending files from cloud KB queue")
sync_kb_parser.add_argument("--batch-size", type=int, default=10, help="Max items to process (default: 10)")
# --- Cloud commands ---
cloud_parser = subparsers.add_parser("cloud", help="Cloud sync and mobile access")
cloud_sub = cloud_parser.add_subparsers(dest="cloud_command", help="Cloud subcommands")
cloud_setup_parser = cloud_sub.add_parser("setup", help="Configure Supabase connection")
cloud_setup_parser.add_argument("--url", help="Supabase project URL")
cloud_setup_parser.add_argument("--key", help="Supabase anon key")
cloud_setup_parser.add_argument("--service-key", help="Supabase service role key (optional)")
cloud_sub.add_parser("sync", help="Sync local data to Supabase cloud")
cloud_sub.add_parser("status", help="Show cloud sync status")
cloud_sub.add_parser("schema", help="Print Supabase SQL schema")
cloud_sub.add_parser("verify", help="Verify Supabase connection")
cloud_sub.add_parser("pull", help="Pull memories and documents from Supabase cloud")
# --- Mobile commands ---
mobile_parser = subparsers.add_parser("mobile", help="Mobile access via mcp-proxy + Tailscale")
mobile_sub = mobile_parser.add_subparsers(dest="mobile_command", help="Mobile subcommands")
mobile_sub.add_parser("setup", help="Print setup instructions for mobile access")
mobile_serve_parser = mobile_sub.add_parser("serve", help="Start mcp-proxy HTTP server for mobile access")
mobile_serve_parser.add_argument("--port", type=int, default=8089, help="HTTP port (default: 8089)")
mobile_serve_parser.add_argument("--host", default="127.0.0.1", help="Bind address (default: 127.0.0.1)")
args = parser.parse_args()
commands = {
"query": cmd_query,
"store": cmd_store,
"remember": cmd_remember,
"timeline": cmd_timeline,
"setup": cmd_setup,
"status": cmd_status,
"doctor": cmd_doctor,
"migrate-db": cmd_migrate_db,
"reingest": cmd_reingest,
"consolidate": cmd_consolidate,
"backup": cmd_backup,
"export": cmd_export,
"import": cmd_import,
"compact": cmd_compact,
"stats": cmd_stats,
"activity": cmd_activity,
"logs": cmd_logs,
"validate": cmd_validate,
"serve": cmd_serve,
"remind": cmd_remind,
"knowledge": cmd_knowledge,
"kb": cmd_knowledge,
"cloud": cmd_cloud,
"mobile": cmd_mobile,
}
# Wire plugin CLI commands (omega-pro, etc.)
try:
from omega.plugins import discover_plugins
for plugin in discover_plugins():
for cmd_name, setup_func in getattr(plugin, "CLI_COMMANDS", []):
if cmd_name not in commands:
try:
setup_func(subparsers)
commands[cmd_name] = getattr(plugin, f"cmd_{cmd_name}", None)
except Exception as e:
print(f"Warning: plugin CLI command '{cmd_name}' failed: {e}", file=sys.stderr)
except Exception:
pass # Plugins unavailable -- core CLI still works
if args.command in commands:
commands[args.command](args)
else:
parser.print_help()
if __name__ == "__main__":
main()
|