basemind 0.23.0

Full AI context layer over MCP — tree-sitter code-map, document RAG (PDF/Office/HTML/email + OCR + reranker), shared agent memory, on-demand web crawl, git history + blame + per-symbol diff. 300+ languages, 10+ coding-agent harnesses, content-addressed Fjall + LanceDB.
from mod import f

x = "module x"


def uses_local_shadow():
    x = "local x"
    return x


def first_param(x):
    return x


def second_param(x):
    return x * 2


def comprehension_shadow():
    x = "outer x"
    values = [x for x in range(3)]
    return x, values


def calls_imported_f():
    return f()