basemind 0.6.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, 8 coding-agent harnesses, content-addressed Fjall + LanceDB.
{
  "name": "basemind",
  "version": "0.6.0",
  "description": "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, 8 coding-agent harnesses, content-addressed Fjall + LanceDB.",
  "contextFileName": "GEMINI.md",
  "mcpServers": {
    "basemind": {
      "command": "${extensionPath}/scripts/mcp-launch.sh",
      "args": ["serve"]
    }
  },
  "_comment_hooks": "Hook wiring: SessionStart + UserPromptSubmit route to the shared top-level hooks scripts via ${extensionPath} (the gemini extension root == repo root, so hooks/ resolves directly — no copy needed). session-start emits SDK-standard {additionalContext}; inbox-notify does per-turn delta injection. Best-effort mapping against Gemini CLI's extension hook contract — verify against the current Gemini spec if extending.",
  "hooks": {
    "SessionStart": [
      {
        "matcher": "startup|resume|clear|compact",
        "hooks": [
          {
            "type": "command",
            "command": "\"${extensionPath}/hooks/run-hook.cmd\" session-start",
            "async": false
          }
        ]
      }
    ],
    "UserPromptSubmit": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "\"${extensionPath}/hooks/run-hook.cmd\" inbox-notify",
            "async": false
          }
        ]
      }
    ]
  }
}