io.github.DanielBlomma/cortex

编码与调试

by danielblomma

为 coding assistants 提供本地 repo 上下文,支持 semantic search 与图谱关系分析,提升代码理解。

什么是 io.github.DanielBlomma/cortex

为 coding assistants 提供本地 repo 上下文,支持 semantic search 与图谱关系分析,提升代码理解。

README

<p align="center"> <img src="docs/logo.png" alt="Cortex" width="600" /> </p>

Cortex

The context layer for AI-assisted software engineering.

npm version npm downloads license website


What Cortex is

Cortex is a local, repository-scoped context engine for coding assistants. It parses your source code with tree-sitter, indexes it into a structured knowledge graph of entities (files, symbols, rules, ADRs) and their relationships (calls, defines, constrains, implements, supersedes), and exposes that context through CLI commands. MCP remains available as a compatibility and integration bridge for clients that support it.

Where a general-purpose AI assistant sees your codebase as a pile of text files, Cortex gives it a precise map: what exists, how it is connected, which rules govern it, and which parts are source-of-truth versus deprecated.

Cortex runs entirely on the developer's machine. Source code never leaves the host.

When to use Cortex

Cortex is designed for engineering teams that rely on AI assistants for non-trivial work on real codebases. Use it when:

  • Your codebase is large or fragmented enough that assistants waste context window on irrelevant files.
  • You need assistants to respect architectural rules, deprecations, and source-of-truth decisions already made by the team.
  • You work across multiple languages and want consistent, structured retrieval across all of them.
  • Security or compliance requires that source code stay on-premise and that all AI interactions remain auditable.
  • You want retrieval to surface existing functionality before an assistant proposes new code — reducing duplication and drift.

Cortex is not a replacement for your editor, your version control, or your coding assistant. It is the grounding layer that makes those assistants act with knowledge of your specific repository.

Benefits

  • Higher-quality suggestions. Assistants see the right files and rules instead of guessing from filenames.
  • Lower token cost. Targeted retrieval replaces broad file reads. Typical sessions use a fraction of the context a raw assistant would consume.
  • Architectural governance. Rules and ADRs are surfaced with every answer, so assistants follow the team's established patterns rather than generic best practices.
  • Multi-language coverage. A single engine indexes multiple languages through tree-sitter grammars, giving polyglot teams consistent tooling.
  • Privacy by design. Your code and its derived index stay on your machine. No upload, no cloud dependency for the core product.
  • Low friction. One command (cortex init --bootstrap) scaffolds everything needed for local indexing, git hooks, CLI retrieval, and optional MCP compatibility.

How it works

Cortex operates as a five-stage pipeline between your repository and your AI assistant.

  1. Ingestion. Source files are parsed with tree-sitter, producing structured entities (files, functions, classes, rules, ADRs) and relations (CALLS, DEFINES, CONSTRAINS, IMPLEMENTS, IMPORTS, SUPERSEDES).
  2. Storage. Entities and relations are persisted to a local graph database (RyuGraph). An optional vector index provides semantic search across entity content.
  3. Retrieval. CLI commands combine semantic search with graph traversal to assemble the smallest context package that answers the task.
  4. Policy. Architectural rules and source-of-truth markers filter conflicting or deprecated content before it reaches the assistant.
  5. Assembly. Results are delivered as compact, ranked context packages over cortex ... --json, with MCP exposing equivalent tool responses when enabled.

Git hooks keep the index fresh on every checkout, pull, commit, and rewrite. A live TUI dashboard (cortex dashboard) shows what Cortex adds to the repository in real time.

Why it works

Modern coding assistants are bottlenecked by context, not by model capability. Feeding a model more files rarely helps; feeding it the right files almost always does.

Cortex is built on one principle: prefer retrieval quality over analysis completeness. A smaller, sharper context package outperforms a broad dump of files. Every component — from tree-sitter parsing to graph traversal to rule filtering — exists to raise the signal-to-noise ratio of what the assistant sees.

The result is an assistant that behaves as if it already knows your codebase, because — through Cortex — it does.

Quick demo

Cortex install and bootstrap demo

Core capabilities

  • Semantic search across code, rules, and ADRs.
  • Graph relationships between entities and architectural constraints.
  • Call-graph traversal, caller lookup, and impact analysis.
  • Architectural rules and ADR enforcement at retrieval time.
  • Incremental index updates driven by git hooks.
  • Live TUI dashboard showing what Cortex adds to your repository.
  • CLI-first retrieval commands for local agents and scripts.
  • Optional MCP integrations with Claude Code, Claude Desktop, and Codex.

Requirements

  • Node.js 20.9+ (Node 20 LTS or newer)
  • Git repository
  • Optional for MCP registration: claude and/or codex CLI in PATH

Install

bash
npm i -g @danielblomma/cortex-mcp

Upgrading

To upgrade an already-scaffolded project to a new Cortex version:

bash
npm i -g @danielblomma/cortex-mcp
cortex init --force   # re-scaffolds .context runtime + .context/scripts
cortex bootstrap     # rebuilds and safely restarts a verified running daemon
cortex update

cortex init --force preserves per-project files: .context/config.yaml, .context/rules.yaml, .context/enterprise.yml, and your notes/decisions. It repairs existing Enterprise config permissions to 0600 without rewriting the file. An npm update alone does not replace code already loaded by the per-user daemon; cortex bootstrap performs the verified restart.

Version-specific notes (see CHANGELOG.md for details):

  • 2.4.2: cortex init --force now uses versioned ownership metadata to remove only unmodified obsolete Cortex-managed files. Unknown files and protected configuration, rules, ontology, Enterprise, and agent-instruction content remain user-owned; modified obsolete files and unsafe collisions fail the upgrade instead of being overwritten or deleted.
  • 2.4.1: enterprise onboarding no longer accepts API keys as positional arguments. Pipe the key to sudo cortex enterprise install --api-key-stdin. Enterprise endpoints must use HTTPS (loopback HTTP remains available for local development). Existing Enterprise users must rerun that stdin install after cortex bootstrap; enrollment is deliberately not inferred from repository config. Verify cortex enterprise status --json reports enterprise.host_identity_bound: true. One Enterprise endpoint is supported per OS user because organization skills and host process detection are user-global; an explicit install may rotate its API key. Before upgrading legacy organization skills without Cortex ownership markers, back up and move the exact reviewed directories listed by ~/.cortex/skills.local.json out of the Claude/Codex discovery roots.
  • 2.1.0: the default embedding model changed, so the first cortex update after upgrading triggers a full re-embed automatically (~2 min per 1000 entities plus a one-time model download). The CORTEX_EMBED_MAX_CHARS env var is removed and silently ignored. Existing projects keep their old ranking weights in config.yaml; the recommended block is now semantic: 0.55, graph: 0.10, trust: 0.20, recency: 0.15. If you use MCP, restart the MCP server after re-embedding. The first search after a re-embed can hit a stale embeddings cache — re-run the query.

Quick Start

From the repository you want to index:

bash
cortex init --bootstrap

This will:

  • scaffold .context/, .context/scripts/, the local context runtime (.context/mcp compatibility path), .githooks/, and docs files
  • activate git hooks for checkout, pull/merge, commit, and rewrite events
  • build and prepare the local context runtime
  • leave MCP client registration opt-in via cortex connect or cortex init --connect
  • start background sync unless disabled

Disable watcher setup:

bash
cortex init --bootstrap --no-watch

Check context status:

bash
cortex status

Agent plugin (Claude Code + Codex)

The plugins/cortex directory is a dual-manifest agent plugin: five behavior skills (using-cortex, repo-research, change-impact, pattern-review, context-review), a SessionStart bootstrap that re-injects Cortex instructions after new sessions, /clear, and compaction (Claude Code), and an MCP config that follows the active workspace.

Claude Code:

bash
/plugin marketplace add DanielBlomma/cortex
/plugin install cortex@cortex

Codex discovers the same skills through .codex-plugin/plugin.json; repos initialized with cortex init also get an AGENTS.md bootstrap section as a fallback when the plugin is not installed. The CLI remains the engine — the plugin only adds the behavior layer, and cortex connect stays opt-in.

Query From The CLI

Use the CLI as the default local agent interface:

bash
cortex search "authentication flow" --json
cortex related file:src/auth.ts --json
cortex impact "payment service" --json
cortex rules --json
cortex explain "where retries are configured" --json
cortex pattern-evidence src/auth.ts --query "error handling" --json

These commands read the same local graph, embeddings, and rules used by the MCP server, but they do not require an MCP client registration.

Optional MCP Connection

MCP remains supported for clients that need it. Register MCP clients explicitly:

bash
cortex connect

Then verify the client registration:

Claude:

bash
claude mcp list

Codex:

bash
codex mcp list

Claude Plugin Marketplace

Install via Claude Code plugin marketplace:

bash
/plugin marketplace add DanielBlomma/cortex
/plugin install cortex@cortex-marketplace
/plugin enable cortex

Then initialize Cortex in your target repository. If you want the plugin to call the local MCP server, also run cortex connect from that repository:

bash
cortex init --bootstrap
cortex connect

Manual MCP Configuration

If client registration is unavailable, configure MCP manually.

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

json
{
  "mcpServers": {
    "cortex": {
      "command": "cortex",
      "args": ["mcp"],
      "env": {
        "CORTEX_PROJECT_ROOT": "/absolute/path/to/your-project"
      }
    }
  }
}

Codex (~/.config/codex/mcp-config.json):

json
{
  "mcpServers": {
    "cortex-myproject": {
      "command": "cortex",
      "args": ["mcp"],
      "cwd": "/absolute/path/to/your-project"
    }
  }
}

WSL Mode (Windows)

If you run Node.js inside WSL but use Claude Desktop or another MCP client on Windows:

  1. Install Cortex inside WSL:
bash
# In a WSL terminal
npm i -g @danielblomma/cortex-mcp
cd /mnt/c/Users/yourname/your-project
cortex init --bootstrap
  1. Configure Claude Desktop (%APPDATA%\Claude\claude_desktop_config.json):
json
{
  "mcpServers": {
    "cortex": {
      "command": "wsl.exe",
      "args": ["--distribution", "Ubuntu", "--exec", "cortex", "mcp"],
      "env": {
        "CORTEX_PROJECT_ROOT": "C:\\Users\\yourname\\your-project",
        "CORTEX_AUTO_BOOTSTRAP_ON_MCP": "1"
      }
    }
  }
}

Cortex automatically converts Windows paths (e.g. C:\Users\...) to WSL paths (/mnt/c/Users/...).

For projects on the WSL filesystem (e.g. ~/projects/myapp), use the WSL path directly:

json
{
  "mcpServers": {
    "cortex": {
      "command": "wsl.exe",
      "args": ["--distribution", "Ubuntu", "--exec", "cortex", "mcp"],
      "env": {
        "CORTEX_PROJECT_ROOT": "/home/yourname/projects/myapp",
        "CORTEX_AUTO_BOOTSTRAP_ON_MCP": "1"
      }
    }
  }
}

Notes:

  • File watching on /mnt/ paths (Windows filesystem) automatically uses poll mode since inotify is unreliable across filesystem boundaries.
  • For best performance, keep projects on the WSL filesystem (~/...) rather than /mnt/c/....

MCP Tool Compatibility

context.search

Ranked context search across indexed entities.

Input:

  • query (string, required)
  • top_k (int, 1-20, default 5)
  • include_deprecated (bool, default false)
  • include_content (bool, default false)

context.get_related

Fetch entity relationships from the graph.

Input:

  • entity_id (string, required)
  • depth (int, 1-3, default 1)
  • include_edges (bool, default true)

context.impact

Traverse likely impact paths across config, code and SQL starting from an entity id or query.

Input:

  • entity_id (string, optional) — either entity_id or query is required
  • query (string, optional)
  • depth (int, 1-4, default 2)
  • top_k (int, 1-20, default 8)
  • include_edges (bool, default true)
  • profile ("all" | "config_only" | "config_to_sql" | "code_only" | "sql_only", default "all")
  • sort_by ("impact_score" | "shortest_path" | "semantic_score" | "graph_score" | "trust_score", default "impact_score")

context.get_rules

List indexed rules and optionally include inactive rules.

Input:

  • scope (string, optional)
  • include_inactive (bool, default false)

context.reload

Reload the RyuGraph connection after updates/maintenance.

Input:

  • force (bool, default true)

Example Prompts

  • "Find files that handle authentication."
  • "Show related files for this ADR."
  • "What active architectural rules apply to this API?"

Dashboard

A live TUI that shows what Cortex adds to your repository at a glance.

bash
cortex dashboard

Cortex dashboard

The dashboard displays:

  • WITHOUT vs WITH CORTEX — side-by-side comparison of raw files versus indexed entities (files, chunks, relations, rules, embeddings, trust signals).
  • TOKENS — per-task token estimate comparing typical LLM file reads without Cortex (~12 files) versus Cortex searches (~3 queries). Shows the reduction ratio and percentage.
  • CORTEX ADDS — summary of what Cortex layers on top: chunks, relations, rules, embeddings, and which capabilities are unlocked (semantic search, graph traversal, impact analysis).
  • RELATIONS — bar chart of relation types in the graph (CALLS, DEFINES, CONSTRAINS, IMPLEMENTS, IMPORTS, SUPERSEDES) and their counts.
  • HEALTH — freshness percentage (how up-to-date the index is relative to uncommitted changes), last sync timestamp, and embedding status with model name.
  • TOP CONNECTED — the five most connected entities in the graph by edge count, showing which files or rules are central to the codebase.

Options:

  • --interval <sec> — auto-refresh interval (default: 2 seconds).
  • Press r to force refresh, q to quit.
  • Non-TTY output (piped) produces a single snapshot with ANSI stripped.

Common Commands

text
cortex init [path] [--force] [--bootstrap] [--connect] [--no-connect] [--watch] [--no-watch]
cortex connect [path] [--skip-build]
cortex mcp
cortex bootstrap
cortex update
cortex search <query> [--json]
cortex related <entity-id> [--json]
cortex impact <query|entity-id> [--json]
cortex rules [--json]
cortex explain <query|entity-id> [--json]
cortex pattern-evidence <file-path|entity-id> [--query <text>] [--top-k <n>] [--json]
cortex status
cortex dashboard [--interval <sec>]
cortex watch [start|stop|status|run|once] [--interval <sec>] [--debounce <sec>] [--mode <auto|event|poll>]
cortex help

Enterprise Pattern Review

Enterprise context.review includes bounded repo-local pattern context by default. This evidence is advisory and does not change policy validator totals, workflow approval, or review trust.

Optional MCP inputs:

  • include_pattern_evidence — enable or disable pattern context (default true).
  • pattern_query — shared pattern query; otherwise Cortex derives one per file.
  • pattern_top_k — evidence items per locality tier, from 1 to 5 (default 2).
  • pattern_limit — analyzed review targets, from 1 to 25 (default 10).

The response adds pattern_review with deterministic targets, the canonical review question, cited evidence tiers, explicit repository fallback, unindexed status, and omitted-file counts. Pattern evidence never constitutes automatic code approval. Enterprise pattern review is lexical-only and never downloads an embedding model or calls an external service.

Every target uses the same response fields. status is one of local_evidence, repo_fallback, no_evidence, not_indexed, or error; local_pattern_found and fallback_used are always explicit booleans, and evidence_order plus all four tiers are always present. Unavailable evidence uses empty tiers and sanitized messages rather than local paths or runtime errors.

Automated Release

This repository includes two GitHub Actions workflows:

  • Release Bump (.github/workflows/release-bump.yml)

    • Manual workflow_dispatch from main
    • Bumps semver (patch/minor/major)
    • Syncs release metadata files (package.json, server.json, plugin manifests)
    • Runs tests
    • Commits and tags vX.Y.Z
  • Release Publish (.github/workflows/release-publish.yml)

    • Triggers on tag push v*.*.*
    • Verifies tag/version sync
    • Runs root tests + context runtime/MCP build/tests
    • Publishes @danielblomma/cortex-mcp to npm via npm trusted publishing (GitHub OIDC)

Required npm configuration:

  • Configure a trusted publisher for @danielblomma/cortex-mcp on npmjs.com
  • Use GitHub Actions publisher DanielBlomma/cortex
  • Workflow filename must match release-publish.yml

Embedding performance

Embedding generation tunes itself to the machine: the number of parallel workers, memory limits for long files, token budget, and skip-work caching are all derived from the available CPU cores, RAM, and repository size at run time (container memory limits included). No configuration is needed — on a laptop or a CI runner, cortex picks safe settings by itself.

The embedding token budget defaults to auto, which is quality-first but memory-aware. Cortex starts from the embedding model's own maximum context and only lowers the cap when the local memory headroom is unlikely to fit that model/context combination. Degraded auto runs are explicit in logs, for example token_budget=auto_degraded reason=memory_headroom cap=2048. To force a specific capped run, set CORTEX_EMBED_MAX_TOKENS to a number such as 2048; set it to model or full to force the full-model baseline even on tight machines. When several cortex instances share one machine, set CORTEX_EMBED_THREADS to give each its fair share of cores.

For experiments on very large repositories, CORTEX_EMBED_TEXT_PROFILE=compact-files compacts only large file-level embedding records while keeping chunk-level embedding text full. The default remains full; use the compact profile only with a before/after semantic quality check because file-level compaction can change retrieval behavior.

Limitations

  • Requires repo initialization (cortex init --bootstrap).
  • Each repository has its own local Cortex context instance.
  • No cloud sync by design (privacy-first local storage).

Security and Privacy

  • Cortex stores context data locally under .context/.
  • No source code upload is required for core functionality.

Troubleshooting

  • context runtime missing or mcp/dist/server.js missing: Run cortex bootstrap (or re-run cortex init --bootstrap).
  • claude or codex not found during cortex connect: MCP registration is skipped for that client; use manual config above if needed.
  • MCP tools return stale context: Run cortex update, then rerun the CLI query. If you use MCP, reconnect the client or call context.reload.

Website and Benchmarks

  • frontend/ hosts the cortex website (GitHub Pages, deployed on push to main): product overview plus bootstrap evaluation metrics.
  • benchmark/bootstrapbench/ runs cortex bootstrap against 69 pinned real-world repositories in isolated containers and extracts chunk, embedding and graph statistics. See benchmark/bootstrapbench/README.md.

Support

License

MIT

常见问题

io.github.DanielBlomma/cortex 是什么?

为 coding assistants 提供本地 repo 上下文,支持 semantic search 与图谱关系分析,提升代码理解。

相关 Skills

前端设计

by anthropics

Universal
热门

面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。

想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。

编码与调试
未扫描164.6k

网页应用测试

by anthropics

Universal
热门

用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。

借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。

编码与调试
未扫描164.6k

网页构建器

by anthropics

Universal
热门

面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。

在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。

编码与调试
未扫描164.6k

相关 MCP Server

GitHub

编辑精选

by GitHub

热门

GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。

这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。

编码与调试
88.1k

by Context7

热门

Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。

它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。

编码与调试
58.6k

by tldraw

热门

tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。

这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。

编码与调试
49.4k

评论