Two suggestions — multi-master-resume support + tailoring guardrails #863
HypercartAustralia
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi, thanks for building Resume Matcher — been using it locally for my job search and wanted to share two things I added that might be worth upstreaming.
1. Multiple master resumes.
I apply to a few different role types, each needing a different base resume. set_master_resume() already exists in the DB layer but there's no endpoint or UI to use it. I added a POST /resumes/{id}/set-master endpoint and a "Manage Resumes" page (upload, switch master, delete).
2. Tailoring sometimes drops existing skills and adds odd commentary.
With "Full" strategy especially, the skills reorder step would occasionally drop real skills not relevant to the JD (e.g. removed "Active Directory" entirely), and bullets sometimes included phrases like "...demonstrating networking fundamentals" — the AI explaining its own reasoning instead of just describing the work. Fixed both with prompt tightening + a couple of deterministic safety nets (one restores any missing skills/certs, one strips known commentary patterns) so it doesn't just rely on the model behaving.
Happy to open PRs for either if useful, or just leave this here if you'd rather implement your own way.
All reactions