Context Fabric serves as the crucial context synchronization layer for AI coding agents, ensuring project continuity and eliminating agent memory drift across development sessions. It operates as an MCP server, autonomously capturing project state with every git commit, vigilantly detecting when stored context deviates from the actual codebase. This intelligent system then delivers structured, token-budgeted briefings to AI agents, preempting the common problem of 'context drift' where AI agents confidently proceed with outdated information, all without requiring any manual developer intervention. It replaces manual context management systems by sitting between the git event stream and the AI agent, deciding what context to capture, when it has drifted, which parts are relevant, their token cost, and how to deliver them reliably.
주요 기능
01Context drift detection and severity classification (E2 ANCHOR)
02Configurable token budget management for AI agent briefings (E4 GOVERNOR)
03Automatic project state capture via git post-commit hooks (E1 WATCHER)
04Dynamic composition of structured markdown briefings with drift warnings (E5 WEAVER)
05Intelligent context routing and relevance ranking using FTS5 BM25 (E3 ROUTER)
061 GitHub stars