Repowise: Pre-computed codebase context for Claude Code cuts token usage and task time in half

Repowise is an open-source tool that pre-computes codebase context for AI coding agents. Instead of letting Claude Code read the tree, trace imports, and browse files (burning tokens on archaeology every session), Repowise indexes your codebase once and exposes the result via eight MCP tools.
How it works
Repowise indexes your codebase into four layers:
- Dependency graph via AST parsing
- Git behavioral signals: hotspots, ownership, co-change pairs
- Auto-generated doc wiki with semantic search
- Architectural decision records (ADRs) linked to the code nodes they govern
Setup is straightforward:
pip install repowise
repowise init
Works with Claude Code, Cursor, or local setup. Incremental updates after each commit run in under 30 seconds. It also auto-generates your CLAUDE.md from live graph data on every commit — hotspot warnings, ownership map, co-change pairs, active decisions, dead code candidates. Custom notes stay untouched.
Benchmark: Add rate limiting to all API endpoints
On a real 3,000-file project:
- Claude Code alone: grep + read ~30 files, ~8 minutes, misses ownership and hidden coupling entirely
- With Repowise: 5 MCP calls, ~2 minutes, full picture
The five MCP calls:
get_overviewget_contexton the relevant modulesget_riskon the files being touchedget_whyto check for prior decisionssearch_codebasefor any existing implementation
Claude gets complete context before touching a single file. The co-change detection is particularly useful — it surfaces files that always change together in git but have no import link, which static analysis can't find and grep definitely can't.
Multi-repo and licensing
Multi-repo support is built in: index multiple repositories and query cross-repo hotspots, ownership, and dead code in one view. Repowise is AGPL-3.0, fully self-hostable, and nothing leaves your machine.
GitHub: https://github.com/repowise-dev/repowise
Dogfooding website: https://repowise.dev
📖 Read the full source: r/ClaudeAI
👀 See Also

obsidian-mcp: Graph-Aware MCP Server for Claude with 25 Tools Targeting Large Vaults
obsidian-mcp is an MCP server exposing 25 tools (including get_note, traverse_graph, query_dataview, move_note, create_notes) that gives Claude graph-aware access to your Obsidian vault — avoiding context window death on 5k-note vaults. MIT, works with Claude Desktop, Claude Code, Cursor, Cline, Continue, Zed.

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents
DELIGHT is a local orchestrator that runs multiple hidden ChatGPT browser sessions simultaneously, coordinating them like a team of agents without requiring API keys or GPU resources. It connects to OpenClaw as an action layer to apply changes to real files and run tests.

Murmur: An Open-Source Cron Daemon for Automating Claude Code Sessions
Murmur is a cron daemon that schedules and automates Claude code sessions using a HEARTBEAT.md file for configuration.

Nexus: Open-Source AI-to-AI Protocol with Discovery, Trust, and Payments
Nexus is a self-hosted protocol that enables AI agents to discover each other, negotiate terms, verify responses, and handle micropayments without human intervention. It includes five layers: discovery, trust, protocol, routing, and federation, with 66 tests and MIT licensing.