Metadata-Version: 2.4
Name: clewdex
Version: 0.1.0
Summary: Semantic code search with hybrid retrieval and MCP integration
Project-URL: Homepage, https://github.com/ruminaider/clew
Project-URL: Repository, https://github.com/ruminaider/clew
Project-URL: Issues, https://github.com/ruminaider/clew/issues
Project-URL: Documentation, https://github.com/ruminaider/clew#readme
Author-email: Ruminaider <hello@ruminaider.com>
License: MIT
Keywords: claude,clew,clewdex,code-search,embeddings,mcp,qdrant,semantic-search
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Text Processing :: Indexing
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pathspec>=0.12.0
Requires-Dist: pydantic>=2.7.0
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: qdrant-client<2.0,>=1.9.0
Requires-Dist: rich>=13.7.0
Requires-Dist: tenacity>=8.2.0
Requires-Dist: tokenizers>=0.19.0
Requires-Dist: transformers>=4.40.0
Requires-Dist: tree-sitter-javascript>=0.21.0
Requires-Dist: tree-sitter-python>=0.21.0
Requires-Dist: tree-sitter-typescript>=0.21.0
Requires-Dist: tree-sitter>=0.22.0
Requires-Dist: typer>=0.12.0
Requires-Dist: voyageai>=0.3.0
Provides-Extra: dev
Requires-Dist: anthropic>=0.40.0; extra == 'dev'
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Provides-Extra: nl
Requires-Dist: anthropic>=0.40.0; extra == 'nl'
Description-Content-Type: text/markdown

# clew

Semantic code search with hybrid retrieval and MCP integration for Claude Code.

Ask natural language questions about your codebase — clew indexes your code with AST-aware chunking, embeds it with [Voyage AI](https://www.voyageai.com/), stores it in [Qdrant](https://qdrant.tech/), and serves results through both a CLI and an [MCP](https://modelcontextprotocol.io/) server that Claude Code can call directly.

## Features

- **Hybrid search** — Dense embeddings (Voyage voyage-code-3) + BM25 keyword matching fused with Reciprocal Rank Fusion, optionally re-ranked with Voyage rerank-2.5
- **AST-aware chunking** — tree-sitter parses Python, TypeScript, and JavaScript into semantic units (functions, classes, components) with token-aware fallback splitting
- **Code relationship tracing** — Extracts imports, calls, inheritance, decorators, JSX renders, test mappings, and API boundaries; traversable via BFS graph queries
- **Incremental indexing** — Git-aware change detection (with file-hash fallback) so re-indexing only touches what changed
- **NL descriptions** — LLM-generated descriptions for undocumented code, prepended before embedding to improve search quality
- **Compact MCP responses** — ~20x token reduction by default; returns signatures + docstring previews instead of full source
- **Multi-collection** — Separate `code` and `docs` collections with intent-driven routing

## Prerequisites

- Python >= 3.10
- [Docker](https://docs.docker.com/get-docker/) (for Qdrant)
- A [Voyage AI](https://dash.voyageai.com/) API key

## Quick start

### 1. Install clew

```bash
git clone https://github.com/ruminaider/clew.git
cd clew
pip install -e .
```

### 2. Start Qdrant

```bash
docker compose up -d qdrant
```

### 3. Set your API key

```bash
cp .env.example .env
# Edit .env and add your VOYAGE_API_KEY
```

Or export directly:

```bash
export VOYAGE_API_KEY=pa-xxxxxxxxxxxxxxxxxxxx
```

### 4. Index your project

```bash
clew index /path/to/your/project --full
```

### 5. Search

```bash
clew search "how do we handle authentication"
```

## Configuration

### Environment variables

| Variable | Required | Default | Description |
|---|---|---|---|
| `VOYAGE_API_KEY` | Yes | — | Voyage AI API key for embeddings and re-ranking |
| `QDRANT_URL` | No | `http://localhost:6333` | Qdrant server endpoint |
| `QDRANT_API_KEY` | No | — | Qdrant API key (if auth is enabled) |
| `CLEW_CACHE_DIR` | No | Auto-detected from git root | SQLite cache directory (`.clew/`) |
| `CLEW_LOG_LEVEL` | No | `INFO` | Logging verbosity |
| `ANTHROPIC_API_KEY` | No | — | Required for NL description generation |

The cache directory resolves in order: `CLEW_CACHE_DIR` env var, then `{git_root}/.clew/`, then `.clew/` relative to the working directory. This ensures the MCP server and CLI share the same cache.

### Project configuration (optional)

Create a `config.yaml` in your project root for fine-grained control:

```yaml
project:
  name: "my-project"
  root: "."

collections:
  code:
    include:
      - "src/**/*.py"
      - "frontend/**/*.tsx"
    exclude:
      - "**/migrations/*.py"
      - "**/__pycache__/**"
  docs:
    include:
      - "**/*.md"

chunking:
  default_max_tokens: 3000
  overlap_tokens: 200

terminology_file: indexer/terminology.yaml
```

## CLI usage

### `clew index`

Index a codebase for search.

```bash
# Incremental — only re-index changed files
clew index /path/to/project

# Full reindex
clew index /path/to/project --full

# Generate NL descriptions for undocumented code (requires ANTHROPIC_API_KEY)
clew index /path/to/project --nl-descriptions

# Index specific files
clew index --files src/auth.py --files src/models.py
```

### `clew search`

Search the indexed codebase.

```bash
# Natural language query
clew search "where is the rate limiter configured"

# Filter by language
clew search "database models" --language python

# Filter by chunk type
clew search "API endpoints" --chunk-type function

# Set intent explicitly (code, docs, debug, location)
clew search "why does login fail" --intent debug

# JSON output
clew search "user authentication" --raw
```

### `clew trace`

Trace code relationships via BFS graph traversal.

```bash
# Show all relationships for an entity
clew trace "src/auth/models.py::User"

# Only inbound (what depends on this)
clew trace "src/auth/models.py::User" --direction inbound

# Limit depth and filter types
clew trace "src/api/views.py::handle_request" --depth 3 --type calls --type imports

# JSON output
clew trace "src/auth/models.py::User" --raw
```

Relationship types: `imports`, `calls`, `inherits`, `decorates`, `renders`, `tests`, `calls_api`

### `clew status`

Show system health and index statistics.

```bash
clew status
```

### `clew serve`

Start the MCP server (stdio transport) for Claude Code integration.

```bash
clew serve
```

## MCP integration

Add clew to Claude Code's `.mcp.json`:

```json
{
  "mcpServers": {
    "clew": {
      "command": "clew",
      "args": ["serve"],
      "env": {
        "VOYAGE_API_KEY": "pa-xxxxxxxxxxxxxxxxxxxx",
        "QDRANT_URL": "http://localhost:6333"
      }
    }
  }
}
```

### MCP tools

#### `search`

Semantic search over the indexed codebase.

```
search(query, limit=5, collection="code", active_file=None,
       intent=None, filters=None, detail="compact")
```

- `detail="compact"` (default) — returns signature + docstring snippet
- `detail="full"` — returns complete source content
- `filters` — metadata filters: `language`, `chunk_type`, `app_name`, `layer`, `is_test`

#### `get_context`

Read file content with optional related code chunks.

```
get_context(file_path, line_start=None, line_end=None, include_related=False)
```

#### `explain`

Search for context about a symbol or question in a file.

```
explain(file_path, symbol=None, question=None, detail="compact")
```

#### `trace`

Traverse code relationships (imports, calls, inheritance, etc.).

```
trace(entity, direction="both", max_depth=2, relationship_types=None)
```

#### `index_status`

Check health or trigger re-indexing.

```
index_status(action="status", project_root=None)
```

## Architecture

```
                    ┌──────────────┐
                    │ Claude Code  │
                    │ (MCP client) │
                    └──────┬───────┘
                           │ stdio
                    ┌──────▼───────┐
                    │  MCP Server  │  search, get_context, explain, trace, index_status
                    └──────┬───────┘
                           │
              ┌────────────▼────────────┐
              │     Search Pipeline     │
              │  enhance → classify →   │
              │  hybrid search → rerank │
              └────────────┬────────────┘
                           │
              ┌────────────▼────────────┐
              │    Qdrant Collections   │
              │  code: py/ts/tsx/js/jsx │
              │  docs: markdown         │
              └────────────┬────────────┘
                           │
              ┌────────────▼────────────┐
              │   Indexing Pipeline     │
              │  discover → chunk →     │
              │  enrich → embed →       │
              │  upsert + relationships │
              └────────────┬────────────┘
                           │
        ┌──────────┬───────┼───────┬──────────┐
        ▼          ▼       ▼       ▼          ▼
   tree-sitter  Voyage   SQLite   git     Anthropic
   (AST parse)  (embed)  (cache)  (diff)  (NL desc)
```

### Search pipeline

1. **Query enhancement** — Terminology expansion via YAML (abbreviations, synonyms)
2. **Intent classification** — Heuristic routing: `CODE`, `DOCS`, `DEBUG`, `LOCATION`
3. **Hybrid search** — Dense + BM25 multi-prefetch with structural boosting (same-module, test files for debug intent)
4. **Re-ranking** — Voyage rerank-2.5 for final ordering

### Chunking strategy

| File pattern | Strategy | Token range |
|---|---|---|
| `models.py` | Class + fields as unit | 1,500 - 3,000 |
| `views.py` | Class as unit; split large actions | 2,000 - 4,000 |
| `tasks.py` | Function with decorators | 1,000 - 2,000 |
| `*.tsx`, `*.jsx` | Component boundaries | 1,500 - 3,000 |
| `*.md` | Section-level by headers | 1,000 - 2,000 |
| Migrations | Skipped | — |

Fallback chain: tree-sitter AST → token-recursive splitting → line-based splitting.

## Development

### Setup

```bash
pip install -e ".[dev]"
```

### Tests

```bash
# All tests with coverage
pytest --cov=clew -v

# Integration tests (requires running Qdrant)
pytest -m integration

# Single test file
pytest tests/search/test_hybrid.py -v
```

### Linting and type checking

```bash
ruff format .           # Format
ruff check .            # Lint
mypy clew/              # Type check (strict mode)
```

### Project structure

```
clew/
├── chunker/             # AST parsing, language strategies, token counting
├── clients/             # External service wrappers (Voyage, Qdrant, Anthropic)
├── indexer/             # Pipeline, caching, change detection, relationship extraction
│   └── extractors/      # Pluggable per-language relationship extractors
├── search/              # Engine, hybrid retrieval, intent classification, re-ranking
├── cli.py               # Typer CLI
├── mcp_server.py        # FastMCP server (5 tools)
├── config.py            # Environment variable loading
├── factory.py           # Component wiring (no global state)
├── models.py            # Pydantic v2 config models
├── exceptions.py        # Error hierarchy with fix hints
├── discovery.py         # File discovery with ignore patterns and safety checks
└── safety.py            # File size, chunk count, collection limits

tests/                   # 491 tests, 92% coverage
docs/
├── DESIGN.md            # Architecture and design decisions
├── IMPLEMENTATION.md    # Concrete specs and schemas
├── adr/                 # Architecture Decision Records
└── plans/               # Phase and version plans
```

## Tech stack

| Component | Technology |
|---|---|
| Embeddings | Voyage AI voyage-code-3 (1024 dims) |
| Re-ranking | Voyage rerank-2.5 |
| Vector DB | Qdrant (self-hosted, Docker) |
| AST parsing | tree-sitter (Python, TypeScript, JavaScript) |
| CLI | typer + rich |
| Config | Pydantic v2 + YAML |
| Cache | SQLite (contextmanager, no ORM) |
| Change detection | git diff primary, SHA-256 file hash fallback |
| MCP | FastMCP (stdio transport) |

## Troubleshooting

| Problem | Fix |
|---|---|
| Qdrant not running | `docker compose up -d qdrant` |
| `VOYAGE_API_KEY not set` | `export VOYAGE_API_KEY=pa-...` |
| No search results | Run `clew index --full` to reindex |
| MCP server can't find cache | Set `CLEW_CACHE_DIR` to an absolute path, or run from within the git repo |
| Stale results after code changes | Run `clew index` (incremental) to pick up changes |

## License

MIT
