Examples
1. Find TODO comments in a Rust project
$ sentryhub -wn 'TODO' src/
2. Count error lines per logfile
$ sentryhub -c 'ERROR' logs/*.log
3. Find files referencing a function (then edit)
$ sentryhub -l 'parse_request' src/ | xargs $EDITOR
4. Pipe into ripgrep-style fuzzy filter
$ sentryhub 'export' . | fzf
5. Structured output for CI
$ sentryhub --json 'panic' src/ > report.json
6. Count occurrences across thousands of files
$ sentryhub -j 8 --stats 'unsafe' rust-projects/