Repairo – Dependabot for OpenAPI. Auto-repair breaking API changes

Hey,
I'm building Repairo. It's essentially Dependabot, but for fixing breaking API changes instead of just bumping lockfiles.
Currently, when a vendor like Stripe or OpenAI updates their API spec, Dependabot bumps the version. But then your build fails, and you have to manually
hunt down call-sites to refactor your code.
Repairo automates the code rewrite.
Instead of letting an LLM guess fixes (which introduces hallucinations and security risks), we built a hybrid engine:
- Local AST parser: Uses ts-morph to run type-safe code rewrites. If the refactored code doesn't compile, the fix is blocked.
- Volatile RAM Vault: Processes code in temporary memory and wipes it within ~24ms. Zero disk retention.
- ZDR Gateway: Uses Zero Data Retention enterprise APIs to suggest complex mappings without training on your code.
We've put up an interactive demo on our site with a new SBOM generator and Trivy CVE auditor tab.
We're launching on Product Hunt soon. If you have any feedback on the tech stack or the UI, let me know.
Live Demo:https://www.heyrepairo.in/
Replies