Skip to main content

Architecture extraction & codebase intelligence for the agentic era

Project description

archex

Local code context for agents.

archex turns a repository into a ranked, token-budgeted context bundle with symbols, dependencies, graph context, and provenance. It runs locally, uses deterministic retrieval and analysis, and does not require hosted inference or an API key.

CI PyPI Python License Coverage

Start: 30-second quickstart · Claude Code / MCP · Measured results

Proof bar

Local-first Interfaces Language coverage Public comparison
No hosted inference, no API key for core/MCP/Docker slim CLI, MCP, Python API, Docker, Claude Code skill 25 declared language IDs with explicit full vs chunk-only tiers C1 head-to-head: archex / ccc / raw grep-read on the same tasks

Fast paths

If you are evaluating... Start here Why
Agent workflows archex doctor ., then archex scout . "question" --budget 1000 --format json Checks local trust first, then returns a compact map plus exact fetch handles.
Claude Code or MCP MCP and Claude Code Stdio MCP server, optional warm --watch, and an in-repo skill that teaches doctor → scout → fetch.
Python applications Python API Deterministic query(), analyze(), compare(), and retriever integrations.
Benchmark proof Measured results and archex vs. cocoindex-code Same-task C1 report, retrieval gates, and default-strategy decisions.
Architecture understanding System Design Current pipeline, graph query, scout, language tiers, and distribution surfaces.

30-second quickstart

uv tool install archex
archex doctor .
archex query ./my-project "How does authentication work?" --format xml

archex doctor . reports whether the local index, grammar support, model cache, MCP registration, and .archex/ state are healthy. If the repo has not been initialized yet:

archex init ./my-project
archex index ./my-project
archex query ./my-project "How does authentication work?" --format xml

What archex returns

archex returns a context bundle, not an answer. The downstream agent or model still does the reasoning; archex decides which code, symbols, dependencies, and type context belong in the prompt.

<context query="How does authentication work?">
  <structural-context>
    <file-tree><![CDATA[
src/auth/
  middleware.py
  tokens.py
  models.py
    ]]></file-tree>
  </structural-context>
  <chunks>
    <chunk file="src/auth/middleware.py" lines="42-78" symbol="authenticate" score="0.9312" tokens="284">
      <imports><![CDATA[from auth.tokens import verify_jwt]]></imports>
      <code><![CDATA[
def authenticate(request: Request) -> User:
    token = extract_bearer(request)
    claims = verify_jwt(token)
    return load_user(claims.sub)
      ]]></code>
    </chunk>
  </chunks>
  <type-definitions>
    <type-def file="src/auth/models.py" symbol="User" lines="10-24"><![CDATA[
@dataclass
class User: ...
    ]]></type-def>
  </type-definitions>
  <dependencies>
    <internal>auth.tokens.verify_jwt</internal>
    <external>pyjwt</external>
  </dependencies>
</context>

The bundle carries ranked chunks, import context, referenced type definitions, dependency edges, token counts, and provenance. Use --format json or --format markdown when XML is not the right downstream envelope.

Why archex is different

Agents usually explore repositories by opening one file, following imports, checking type definitions, and backtracking. That burns context before the real task starts. archex performs local retrieval and structural expansion first: BM25F, optional local vector/SPLADE signals, graph expansion with edge confidence, type-definition packing, and intent-routed token budgets.

Repository → repo-local index → intent routing → retrieval → graph/type expansion → token-budgeted bundle → agent / MCP client

archex is a selection and assembly layer. Compression tools can shrink the final bundle later, but compressed irrelevant context is still irrelevant.

Use it your way

CLI

archex query ./repo "Where is cache invalidation handled?" --format xml
archex scout ./repo "How does authentication flow through this repo?" --budget 1000 --format json
archex graph export ./repo --output .archex/archgraph.json
archex graph neighbors src/auth/middleware.py --graph .archex/archgraph.json --format markdown
archex symbol ./repo 'symbol:src/auth/middleware.py::authenticate#function'

MCP and Claude Code

Install the MCP extra and register the stdio server:

uv tool install "archex[mcp]"
{
  "mcpServers": {
    "archex": { "command": "archex", "args": ["mcp"] }
  }
}

For warm local sessions, keep the MCP process alive and optionally watch the repo:

archex mcp --watch --watch-path .

The in-repo Claude Code skill lives at skills/archex/. Its /archex command runs archex doctor, initializes/indexes when needed, scouts first for broad questions, then fetches exact symbol: or chunk: handles before a larger bundle query.

Python API

from archex import query
from archex.models import RepoSource

bundle = query(
    RepoSource(local_path="./my-project"),
    "Where is database connection pooling implemented?",
)
print(bundle.to_prompt(format="xml"))

analyze() returns an ArchProfile; compare() returns deterministic cross-repo dimension comparisons. LangChain and LlamaIndex retrievers ship as optional extras.

Docker

Two local-first images are built in CI:

# BM25-only, no torch
docker run --rm -v "$PWD:/workspace" -w /workspace ghcr.io/mathews-tom/archex:slim archex doctor .

# Full local-embedding image with FastEmbed prewarmed
docker run --rm -v "$PWD:/workspace" -w /workspace ghcr.io/mathews-tom/archex:full archex query . "Where is cache invalidation handled?" --strategy hybrid

Warm-container MCP pattern:

docker run -d --name archex-mcp -v "$PWD:/workspace" -w /workspace ghcr.io/mathews-tom/archex:slim sleep infinity
docker exec -i archex-mcp archex mcp

MCP client config for that container:

{
  "mcpServers": {
    "archex": {
      "command": "docker",
      "args": ["exec", "-i", "archex-mcp", "archex", "mcp"]
    }
  }
}

The mounted repository owns .archex/, so indexes survive container restarts and stay out of source control.

Trust and operations

Surface Contract
archex doctor Text/JSON diagnostics for index health, staleness, local model cache presence, grammar availability by tier, MCP registration, and .archex/ disk usage.
Repo-local .archex/ Generated state: settings, metadata, SQLite index, optional vectors, graph artifacts, dogfood history. Keep it uncommitted.
Freshness Query and MCP paths can apply small working-tree deltas; archex mcp --watch keeps a warm process current when enabled.
Default strategy archex_query remains the product default until a full evidence gate beats it on F1, recall, token efficiency, and p95.
Distribution Core CLI, MCP, skill, slim Docker, and benchmark gates work without hosted inference or API keys.

Measured results

The public C1 harness runs the same external-repo tasks through archex, cocoindex-code (ccc), and a raw grep/read baseline. It records cold-start, warm latency, recall, precision, F1, token efficiency, and bundle-completion penalty tokens. See archex vs. cocoindex-code for methodology and evidence sources.

Lane Recall F1 Token efficiency Warm latency ms
archex 0.95 0.66 0.76 408
ccc 0.32 0.31 0.48 521
raw-grep/read 1.00 0.38 0.00 155

The local 35-task retrieval benchmark still governs default-strategy decisions. The accepted decision record keeps archex_query as the product default: Retrieval Default Decisions and ADR-001.

Advanced workflows

# Repo-local lifecycle
archex init .
archex index .
archex status --strict
archex doctor . --format json

# Architecture and graph surfaces
archex analyze . --format markdown
archex onboard .
archex graph export . --output .archex/archgraph.json
archex graph path src/archex/cli/query_cmd.py src/archex/serve/context.py --graph .archex/archgraph.json --format markdown
archex impact . src/archex/serve/context.py

# Benchmarks and gates
archex benchmark headtohead report --input .archex/headtohead --format markdown
archex benchmark gate --input .archex/e2e --baseline .archex/e2e-baseline --warn-latency-ms 3000
archex dogfood . --all --baseline benchmarks/dogfood_baseline.json --format dogfood-delta

Installation details

uv tool install archex                    # CLI, system-wide
uv add archex                             # project dependency

# Agent integrations
uv tool install "archex[mcp]"             # MCP server
uv add "archex[langchain]"                # LangChain retriever
uv add "archex[llamaindex]"               # LlamaIndex retriever
uv add "archex[lsap]"                     # LSP type enrichment

# Local retrieval extras
uv add "archex[vector]"                   # ONNX local embeddings
uv add "archex[vector-fast]"              # FastEmbed
uv add "archex[vector-torch]"             # sentence-transformers / torch
uv add "archex[splade]"                   # SPLADE sparse retrieval
uv add "archex[graph]"                    # Leiden graph clustering
# Core extras bundle: vector, graph, MCP, LangChain, LlamaIndex
uv add "archex[all]"

Language support

Tier Languages Extraction
full Python, JavaScript, TypeScript/TSX, Go, Rust, Java, Kotlin, C#, Swift Symbols, imports, graph edges
chunk-only C, C++, PHP, Ruby, Scala, Lua, Bash/Shell, SQL, HTML, CSS, YAML, TOML, JSON, Markdown, Solidity AST chunking + retrieval; no symbol/import graph claim
unknown any other text file line-window chunks for BM25 visibility

Need another language? Register an adapter via Python entry points. See System Design for the extension contract.

What archex is not

  • Not a chatbot — it emits context bundles; another agent or LLM does the explaining.
  • Not a hosted RAG service — indexing and retrieval run locally unless you explicitly query a remote Git URL.
  • Not a vector database — vector search is optional; BM25 and structural signals are first-class.
  • Not an LSP replacement — use LSAP/LSP where compiler-backed type resolution matters; archex packages repository-scale context for agents.
  • Not a prompt template library — output is structured retrieval evidence, not prompt prose.

Development

git clone https://github.com/Mathews-Tom/archex.git
cd archex
uv sync --all-extras

uv run ruff check && uv run ruff format --check .
uv run pyright
uv run pytest

Documentation map

Authority chain: README → System Design / archex vs. cocoindex-code.docs/2026-06-12-unified-roadmap-session-prompts.mdRetrieval Default Decisions / ADR-001.

License

Apache 2.0 — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

archex-0.9.1.tar.gz (18.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

archex-0.9.1-py3-none-any.whl (325.3 kB view details)

Uploaded Python 3

File details

Details for the file archex-0.9.1.tar.gz.

File metadata

  • Download URL: archex-0.9.1.tar.gz
  • Upload date:
  • Size: 18.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for archex-0.9.1.tar.gz
Algorithm Hash digest
SHA256 71a7935c1e9446daf0ee861e3d2fbe0702fdf901c176e4165d8ae613cac7aec0
MD5 843c36ca11bc332baf0a1acb190c4813
BLAKE2b-256 66a6611522bdbf803440e1fa6c261afcb2cc664f4ebeb6df46ddb37e971277f0

See more details on using hashes here.

File details

Details for the file archex-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: archex-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 325.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for archex-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 307f425c8c255fa35f32b234429973f7a5685b4ebfd97bb3c262e599ce580533
MD5 3e12bf4a4117fc3b7b586a88faf4d20c
BLAKE2b-256 f32acc0dbb5cf8a9e5cc6a46ab1ec712077832609d79bf8124977e4705dcb177

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page