repopilot 0.15.0

Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review.
Documentation
# RepoPilot configuration file
# Generated by `repopilot init`

[scan]
ignore = [
  ".git",
  ".github",
  ".repopilot",
  "target",
  "node_modules",
  "dist",
  "build",
  ".next",
  "coverage"
]
max_file_bytes = 2097152

[architecture]
max_file_lines = 300
huge_file_lines = 1000
max_directory_modules = 20
max_directory_depth = 5
max_function_lines = 50
max_fan_out = 15
instability_hub_min_fan_in = 5
# The CLI command dispatcher (src/commands/mod.rs) aggregates every subcommand
# module, so it legitimately sits near the top of the dependency graph with high
# instability. Allow that for this repo while still flagging genuinely tangled
# hubs above 80%.
instability_hub_min_instability_pct = 80

[code_quality]
complexity_medium_threshold = 200
complexity_high_threshold = 400

[testing]
detect_missing_tests = true

[security]
detect_secret_like_names = true

[security_boundary]
enabled = true
extra_patterns = []

[output]
default_format = "console"