CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Context Fabric

vikas9793/context-fabric
2STDIOregistry active
Summary

CADRE is a git-aware context management engine that automatically captures project state on every commit and delivers token-budgeted briefings to AI agents through a single `cf_query` tool. It installs a post-commit hook that fingerprints files, indexes exports via SQLite FTS5, and detects drift by comparing stored SHA256 hashes against current state. When you query, it runs BM25 ranking against the component index, applies a configurable token budget (default 8% of context window), and returns a structured markdown briefing with drift warnings when stored context has diverged more than 10% from reality. Reach for this when you're tired of manually updating AGENTS.md after every commit or reconstructing project context at the start of each AI coding session.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Context Fabric Banner

Context Fabric

npm version npm downloads CI Status: Stable License: MIT Node MCP SDK TypeScript


Current stable release: v1.0.7. See CHANGELOG.md for the release notes.

Official Registry Support

Context Fabric is configured for official inclusion in the Model Context Protocol (MCP) Registry.

  • Namespace: io.github.VIKAS9793/context-fabric
  • Metadata: server.json
  • Distribution: Published as an npm package with official MCP Registry metadata.

The context synchronization layer for AI coding agents. Ensure project continuity, eliminate agent memory drift, and manage token budgets automatically across any coding session.

Context Fabric is an MCP server that automatically captures project state on every git commit, detects when stored context has drifted from codebase reality, and delivers structured, token-budgeted briefings to AI agents — without requiring any developer action.


The Problem

Developers using AI coding agents manually construct and maintain documentation systems, session handoff rituals, and context workflows to compensate for the absence of native project continuity tooling. These workarounds share one property: they go stale after commits, and nothing detects it.

The problem is not that AI forgets. The problem is context drift — stored context becomes incorrect after code changes, and AI agents proceed with that incorrect context confidently.

Context Fabric is the infrastructure layer that solves it at the root.


CADRE — Context-Aware Drift Resolution Engine

Context Fabric is powered by CADRE, a five-engine internal architecture. Every engine solves a specific, documented failure mode observed in real developer workflows.

What CADRE is. CADRE is the automated replacement for every manual context management system developers currently build themselves. It sits between the git event stream and the AI agent, deciding what context to capture, when it has drifted, which parts are relevant to the active query, what they cost in tokens, and how to deliver them structured and reliably.

Who CADRE is for. Developers building multi-session AI-assisted software projects who currently spend time on any of the following: updating markdown files after commits, creating session-end summaries, maintaining CLAUDE.md or AGENTS.md files, building RAG pipelines for project context, or manually deciding which documentation to load before each task.

The Five Engines

E1 — WATCHER

Installs a git post-commit hook on context-fabric init. Fires automatically on every commit. Reads committed Git blobs instead of the mutable working tree, computes SHA256 fingerprints, extracts exported symbols, calculates token estimates, and upserts everything into the local SQLite store. The developer does nothing after setup.

Replaces: markdown-per-commit workflows, 5-step session rituals, and AI interview workflows used to extract structured project knowledge before sessions.

E2 — ANCHOR

On every cf_query call, compares stored SHA256 hashes against the current state of every tracked file. Returns a DriftReport with a 0–100 drift score and severity classification: LOW (under 10%), MED (10–30%), HIGH (over 30%). Stale files are identified by path and hash delta.

Replaces: manual documentation alignment reviews and the undetected staleness in AGENTS.md that ETH Zurich research (arXiv:2602.11988) demonstrated degrades AI coding performance.

E3 — ROUTER

Runs SQLite FTS5 BM25 against the stored component index using the query text from cf_query. Returns components ranked by relevance. Path matches are weighted 2x over export symbol matches, because a file path carries structural meaning about the codebase organisation. Falls back to recency sort when the query produces zero MATCH results.

Replaces: manual selection of which documentation to include per task, and the modular context selection problem that emerges when projects decompose knowledge across many files.

E4 — GOVERNOR

Applies a configurable token budget ceiling to the E3 ranked output using greedy selection on the relevance-ordered list. Default: 8% of the model context window, leaving 92% for conversation and code. Oversize components are skipped so the remaining budget can still be used by later-ranked matches. Token estimates pre-calculated by E1 mean zero additional file reads at budget selection time.

Replaces: manual token management, and the pattern of keeping sessions alive indefinitely to avoid the cost of context restoration on restart.

E5 — WEAVER

Composes a structured markdown briefing from E3 and E4 output. Sections: Project State, Architecture, Architecture Decisions, Budget Summary. When E2 severity is MED or HIGH, a Drift Warning section is prepended before all other content, so the AI is informed of context reliability before reading it.

Replaces: static AGENTS.md briefings that never update, and the manual briefing preparation that developers perform at every session start.

Data Flow

git commit
    |
    v
E1 WATCHER --- SHA256 fingerprint --- SQLite upsert --- FTS5 index update
                                                              |
                                                      cf_query("...")
                                                              |
                                                              v
                                        E2 ANCHOR --- drift check --- DriftReport
                                                              |
                                                              v
                                        E3 ROUTER --- FTS5 BM25 --- ranked component list
                                                              |
                                                              v
                                        E4 GOVERNOR --- greedy selection --- budget-capped set
                                                              |
                                                              v
                                        E5 WEAVER --- briefing composition --- MCP response

Quick Start

npx context-fabric init

Initialises the SQLite store, installs the git post-commit hook, stages the stable local runtime under .context-fabric/runtime, and runs an initial capture. Connect the MCP server to your tool and context delivery is active from the next commit.

Installation & Setup

  1. Initialise your project: Navigate to any git-managed repository and run:

    npx context-fabric init
    
  2. Configure your AI Environment (Cursor/VS Code/Windsurf): Add the following to your MCP configuration file.

    Windows Users (Crucial):

    {
      "mcpServers": {
        "context-fabric": {
          "command": "cmd",
          "args": ["/c", "npx", "context-fabric"]
        }
      }
    }
    

    Mac / Linux Users:

    {
      "mcpServers": {
        "context-fabric": {
          "command": "npx",
          "args": ["-y", "context-fabric"]
        }
      }
    }
    

Health & Repair

Use the health commands when validating a local install or recovering from a broken hook/runtime state.

npx context-fabric doctor
npx context-fabric doctor --repair

doctor reports schema version, search index version, DB integrity, degraded mode, pending and failed captures, plus hook runtime readiness. doctor --repair refreshes the local runtime bundle, reinstalls the stable hook wrapper, validates .gitignore, and rebuilds the search index when the database is healthy.

Troubleshooting

spawn npx ENOENT Errors

This usually means npx is not in the system's inheritance path for the IDE.

  • Fix: Use the absolute path to node and the context-fabric binary.
  • Use where node (Windows) or which node (Mac/Linux) to find your path.
  • Example for NVM/FNM users:
    "command": "/Users/name/.nvm/versions/node/v22.14.0/bin/node",
    "args": ["/Users/name/.nvm/versions/node/v22.14.0/bin/context-fabric"]
    

WSL Users

If you run VS Code on Windows but your code is in WSL, you must run init inside the WSL terminal and use the WSL-absolute path to node in your config.

Project Path Spaces

On Windows, spaces in your project path (e.g., C:\My Projects\app) can break the npx spawn. If the server fails, consider moving your project to a path without spaces.

Feedback & Reporting

If something breaks, please run:

npx context-fabric doctor

npx context-fabric diag remains available as a compatibility alias.


FAQ

Does Context Fabric send my code to a server? No. It is local-only and does not make outbound network calls for capture, retrieval, or drift analysis.

Does it index uncommitted changes? No. Captured state is based on committed Git objects. Uncommitted changes are detected by drift checks, but they are not indexed as the new source of truth until you commit and capture them.

Is this a replacement for AGENTS.md, CLAUDE.md, or human docs? It reduces the need for manual session-handoff documents, but it is not a replacement for product specs, onboarding guides, or stakeholder-facing documentation.

What files does it write locally? It writes under .context-fabric/ for the database and runtime bundle, and installs .git/hooks/post-commit to keep capture automatic.

When should I not use it? Do not use Context Fabric if you need cloud sync, cross-repo search, full semantic indexing of implementation bodies, or project-file mutation from MCP tools.

How do I recover a broken install? Run npx context-fabric doctor first. If the hook runtime or local state needs repair, run npx context-fabric doctor --repair.

Full FAQ: docs/FAQ.md


MCP Tools

ToolEnginesPurpose
cf_captureE1Manual context capture outside of a git commit
cf_driftE2Standalone drift check — returns severity and stale file count
cf_queryE2 + E3 + E4 + E5Full context briefing for the current task
cf_healthLocal healthReport database, capture, hook, and search index health
cf_log_decisionStoragePersist an architecture decision across sessions

Tech Stack

LayerPackageVersion
MCP Protocol@modelcontextprotocol/sdk1.29.0
Storage and searchbetter-sqlite3 + FTS512.8.0
Schema validationzod^4.3.6
LanguageTypeScript5.5+
RuntimeNode.js>=22.0.0 <25.0.0
Transportstdio (Phase 1)MCP SDK built-in

Security

Access typeScope
Filesystem readsProject root only — path traversal rejected
Filesystem writes.context-fabric/cf.db, .context-fabric/runtime/**, .context-fabric/bin/post-commit, and .git/hooks/post-commit
NetworkNone — zero outbound connections, no telemetry
Project file writesNone — no tool call writes to project files

See SECURITY.md for the vulnerability disclosure process.


Requirements

  • Node.js >=22.0.0 and <25.0.0
  • A git repository
  • Any MCP-compatible AI coding tool

Contributing

Read CONTRIBUTING.md before opening a pull request.

Project Docs

  • Developer Guide
  • FAQ
  • Use Cases and Limitations
  • Wiki Home Source
  • Wiki Publishing Guide
  • Security Policy
  • Changelog

👥 Project Team

  • VIKAS SAHANI — Product Lead / HITL / Agent Orchestrator
  • Antigravity — AI Agent / Code Architect

🔬 Research & Data Disclaimer

This project is part of ongoing research into AI-native development workflows and context-aware drift resolution.

  • Public Data: Snippets, logs, or metrics generated during public sessions may be used for research and verification purposes.
  • Privacy: No personal data or proprietary codebase logic is stored outside of the local .context-fabric directory unless explicitly shared.

License

MIT — see LICENSE.

Built by VIKAS SAHANI.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM Tools
Registryactive
Packagecontext-fabric
TransportSTDIO
UpdatedApr 23, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f