I built an AI résumé tool that refuses to lie about your experience
An AI résumé tool called Citevault has been developed to ensure that users' experiences are accurately represented without fabrication. Unlike other AI résumé tools that may invent experiences, Citevault verifies each claim against the user's own evidence. The tool operates locally on a user's laptop, providing a grounded and reliable résumé tailoring process.
- ▪Citevault processes each résumé claim through a verification pipeline that checks against the user's indexed evidence.
- ▪The tool categorizes claims as SUPPORTS, PARTIAL, UNCLEAR, or CONTRADICTS based on the evidence provided.
- ▪Citevault runs entirely on the user's laptop without requiring API keys, ensuring privacy and data security.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3949471) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } jaberoma Posted on May 25 I built an AI résumé tool that refuses to lie about your experience #googleaisprint #googlegemma #gemmachallenge #devchallenge Most AI résumé tools have the same flaw: they hallucinate. Ask them to tailor your résumé for a job requiring "Rust experience" and they'll happily invent a Rust project you never worked on. It reads great — until the technical interview. I wanted the opposite.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).