A collection-aware metadata index for git repositories.
repoindex provides a unified view across all your repositories, enabling queries, organization, and integration with LLM tools like Claude Code.
repoindex knows about your repos (metadata, tags, status), while tools like Claude Code work inside them (editing, generating). Together they provide full portfolio awareness.
Claude Code (deep work on ONE repo)
|
| "What else do I have?"
| "Which repos need X?"
v
repoindex (collection awareness)
|
+-- repo://... -> what exists
+-- tags://... -> organization
+-- stats://... -> aggregations
+-- events://... -> what happened
- Repository Discovery - Find and track repos across directories
- Tag-Based Organization - Hierarchical tags for categorization
- Registry Awareness - PyPI, CRAN publication status
- Event Tracking - New tags, releases, publishes
- Statistics - Aggregations across the collection
- Query Language - Filter and search with expressions
- MCP Server - LLM integration endpoint for Claude Code
pip install repoindexOr from source:
git clone https://github.com/queelius/repoindex.git
cd repoindex
make install# Configure repository directories
repoindex config generate
# List all repositories
repoindex list
# Check repository status
repoindex status -r --pretty
# Tag repositories for organization
repoindex tag add myproject topic:ml work/active
# Query repositories
repoindex query "language == 'Python' and 'ml' in tags"
# Scan for recent events (releases, tags)
repoindex events --since 7d --pretty
# View statistics
repoindex stats --groupby languageAll commands output JSONL (newline-delimited JSON) by default, making them perfect for Unix pipelines:
# Find repos with uncommitted changes
repoindex status | jq 'select(.status.clean == false)'
# Count repos by language
repoindex list | jq -s 'group_by(.language) | map({lang: .[0].language, count: length})'
# Get all Python repos with ML tags
repoindex query "language == 'Python'" | jq 'select(.tags | contains(["topic:ml"]))'Use --pretty for human-readable table output.
repoindex includes an MCP (Model Context Protocol) server for integration with LLM tools:
# Start MCP server
repoindex mcp serverepo://list- All repositories with basic metadatarepo://{name}- Full metadata for one repositoryrepo://{name}/status- Git status for one repositorytags://list- All tagstags://tree- Hierarchical tag viewstats://summary- Overall statisticsevents://recent- Recent events
repoindex_tag(repo, tag)- Add tag to repositoryrepoindex_untag(repo, tag)- Remove tag from repositoryrepoindex_query(expression)- Query repositoriesrepoindex_refresh(repo?)- Refresh metadatarepoindex_stats(groupby)- Get statistics
Tags provide powerful organization:
# Explicit tags (user-assigned)
repoindex tag add myrepo topic:ml/research work/client/acme
# Implicit tags (auto-generated)
# - repo:name, dir:parent, lang:python, owner:username
# - status:clean/dirty, visibility:public/private
# - stars:10+, stars:100+, stars:1000+
# Query with tags
repoindex list -t "lang:python" -t "topic:ml/*"
# Tag tree view
repoindex tag treePowerful queries with fuzzy matching:
# Exact match
repoindex query "language == 'Python'"
# Fuzzy match (handles typos)
repoindex query "language ~= 'pyton'"
# Comparisons
repoindex query "stars > 100"
# Boolean combinations
repoindex query "language == 'Python' and 'ml' in tags"
# List membership
repoindex query "'machine-learning' in topics"Track activity across your repositories:
# Recent events (default: last 7 days)
repoindex events --pretty
# Events since specific time
repoindex events --since 24h
repoindex events --since 2024-01-15
# Filter by type
repoindex events --type git_tag
repoindex events --type commit
# Continuous monitoring
repoindex events --watch --interval 300Configuration file: ~/.repoindex/config.json
{
"general": {
"repository_directories": [
"~/github",
"~/projects/*/repos"
]
},
"github": {
"token": "ghp_..."
},
"repository_tags": {
"/path/to/repo": ["topic:ml", "work/active"]
}
}Environment variables:
REPOINDEX_CONFIG- Custom config file pathREPOINDEX_GITHUB_TOKEN- GitHub API tokenREPOINDEX_METADATA_PATH- Custom metadata store path
repoindex follows a clean layered architecture:
Commands (CLI) -> Services -> Domain Objects
| | |
Parse args Business logic Pure data
Format output No side effects Immutable
Handle I/O Return generators Consistent schema
- Domain - Immutable data objects (Repository, Tag, Event)
- Infrastructure - External system clients (GitClient, GitHubClient, FileStore)
- Services - Business logic (RepositoryService, TagService, EventService)
- Commands - Thin CLI wrappers that use services
# Setup
make install
# Run tests
make test
# Run with coverage
pytest --cov=repoindex --cov-report=html
# Build docs
make docs604 tests, 86% coverage.
MIT License - see LICENSE for details.
(c) 2025 Alex Towell