This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| # ralph-audit.sh — AI-powered read-only codebase audit loop | |
| # | |
| # Walks an entire repository file-by-file in batches, sends each batch to a | |
| # headless AI CLI for architecture/logic review, accumulates findings, then | |
| # runs a final synthesis pass to produce a deduplicated audit report. | |
| # | |
| # The script is model-agnostic: any CLI that reads stdin and writes to stdout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| graphitePort: 2003, | |
| graphiteHost: "127.0.0.1", | |
| port: 8125 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [stats] | |
| priority = 110 | |
| pattern = .* | |
| retentions = 10:2160,60:10080,600:262974 |