Friehub/gensense — reverse-engineered prompt

Reverse engineered prompt

GitHub

Build me a fast developer tool called GenSense that scans Rust and TypeScript projects for problems normal linters miss. I want it to read code deeply, not just check formatting, and point out things like deadlocks, leaked secrets, unreachable placeholder code, validate functions that never reject, sanitize functions that just return the input, risky database usage, missing auth checks, and network calls inside transactions.

Make it work from the command line so I can run it on a folder, a single file, or only changed files. It should show clear findings with severity, confidence, what happened, why it matters, and how to improve it. Add JSON and SARIF output for CI, strict mode, suppression comments, project suppression config, and a baseline comparison so teams can block new issues without fixing everything at once.

Also let people add their own YAML rules without recompiling, include a small experimental fix mode where safe, and add enough tests and docs that someone can install it with Cargo or npm and use it right away.

Want more depth? Deep Reverse