Improve resume tailoring: deterministic skills, cleanup, keyword retention - #92
Open
ArchieChelle wants to merge 1 commit into
Open
Improve resume tailoring: deterministic skills, cleanup, keyword retention#92ArchieChelle wants to merge 1 commit into
ArchieChelle wants to merge 1 commit into
Conversation
…ntion - Render the TECHNICAL SKILLS section deterministically from the profile's skills_boundary instead of trusting the LLM to echo the list back (it was silently dropping curated skills). Guarantees every category and entry appears, with a label override so "ux_methods" renders as "UX Methods". - Drop skill categories the LLM leaves empty and unfilled "Tech | Dates" subtitle placeholders so they no longer render on the resume. - Add a KEYWORDS rule so JD-relevant terms already present in the base resume (methods, tools, frameworks) are preserved rather than genericized away. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The tailor prompt trusted the LLM to echo the profile's curated skills list back verbatim in the TECHNICAL SKILLS section — it was silently dropping entries. Empty skill categories and unfilled "Tech | Dates" subtitle placeholders were also rendering on the resume, and JD-relevant terms already present in the base resume (methods, tools, frameworks) were getting genericized away instead of preserved.
Fix
skills_boundaryinstead of trusting the LLM, guaranteeing every category/entry appears (with a label override soux_methodsrenders as "UX Methods").Scope
Single file:
src/applypilot/scoring/tailor.py.