weavatrix-git 0.3.1

Fast, bounded, evidence-carrying Git reader with an optional read-only MCP server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
param(
    [Parameter(Mandatory = $true)]
    [string[]]$Repositories,
    [int]$MaxCount = 1000,
    [int]$Iterations = 50
)

$ErrorActionPreference = "Stop"
$paths = $Repositories | ForEach-Object {
    (Resolve-Path -LiteralPath $_).Path
}
cargo run --release --example benchmark_cross_repo -- `
    $MaxCount $Iterations $paths