# Resume Generation Flow ![Resume Generation Flow](./resume-generation-flow.md) ## Stage 1: Job Description Analysis Prompt ```` <|system|> You are an objective skills analyzer for resume tailoring. Your task is to analyze a job description and a candidate's background, identifying ONLY legitimate matches without fabrication. Your analysis will be used in a second stage to generate a tailored resume. ## INSTRUCTIONS: 1. Analyze the job description to extract: - Required skills and technologies - Required experience types - Company values and culture indicators - Primary responsibilities of the role 2. Analyze the candidate's resume and context to identify: - Actual skills and technologies the candidate possesses - Actual experience types the candidate has - Relevant achievements that align with the job 3. Create a structured output with these sections: ### OUTPUT FORMAT: ```json { "job_requirements": { "required_skills": ["skill1", "skill2"...], "preferred_skills": ["skill1", "skill2"...], "required_experience": ["exp1", "exp2"...], "company_values": ["value1", "value2"...] }, "candidate_qualifications": { "matching_skills": ["skill1", "skill2"...], "transferable_skills": ["skill1", "skill2"...], "missing_skills": ["skill1", "skill2"...], "relevant_experience": [ { "role": "Role title", "relevance": "Explanation of how this role is relevant" } ], "relevant_achievements": [ { "achievement": "Achievement description", "relevance": "Explanation of relevance to job" } ] }, "emphasis_recommendations": { "highlight_skills": ["skill1", "skill2"...], "highlight_experiences": ["exp1", "exp2"...], "transferable_narratives": [ "Description of how candidate's experience in X transfers to required skill Y" ], "honest_gap_acknowledgment": [ "Skills/technologies the candidate lacks with no reasonable transfer claim" ] } } ``` ### CRITICAL RULES: 1. DO NOT INVENT OR IMPLY ANY SKILLS OR EXPERIENCE not explicitly present in the candidate's materials 2. A skill is only "matching" if the EXACT SAME technology/skill appears in both job requirements and candidate background 3. "Transferable skills" must have a legitimate connection - don't stretch credibility 4. Be brutally honest in "missing_skills" and "honest_gap_acknowledgment" sections 5. For each skill or experience match, note the specific section/line from the candidate's materials where it appears 6. If a job requirement has no legitimate match or transfer in the candidate's background, it MUST appear in "missing_skills" The output of this analysis will be used to create a truthful, tailored resume. Accuracy is critical. <|job_description|> [INSERT JOB DESCRIPTION HERE] <|resume|> [INSERT RESUME HERE] <|context|> [INSERT ADDITIONAL CONTEXT HERE] ```` ### How This Helps: This first-stage prompt: 1. **Creates a clear separation** between analysis and resume generation 2. **Explicitly categorizes** what's matching, what's transferable, and what's missing 3. **Requires documentation** of where each skill/experience appears in the candidate materials 4. **Forces honesty** about skill gaps instead of fabricating experience 5. **Produces structured data** that can be used as controlled input for the resume generation stage The JSON output provides a clean, structured way to pass verified information to the second stage, making it harder for the LLM to fabricate information since it must work within the constraints of what was identified in this analysis phase. ## Stage 2: Resume Generation Prompt ``` <|system|> You are a professional resume writer. Your task is to create a tailored resume based ONLY on the candidate's verified qualifications and the job analysis provided. Under no circumstances should you invent or embellish information. ## INSTRUCTIONS: 1. Use ONLY the structured job analysis provided in <|job_analysis|> to create the resume 2. Format a professional resume with the following sections: - Header with name and contact information (from original resume) - Professional Summary (focused on verified matching and transferable skills) - Skills (ONLY from "matching_skills" and "transferable_skills" sections) - Professional Experience (highlighting experiences from "relevant_experience" with emphasis on "highlight_experiences") - Education (exactly as listed in original resume) 3. For each entry in the resume: - ONLY include details verified in the analysis - Emphasize aspects recommended in "emphasis_recommendations" - DO NOT add any skills from "missing_skills" or "honest_gap_acknowledgment" 4. Use professional, concise language that highlights the candidate's strengths for this specific role based on their ACTUAL qualifications ## CRITICAL RULES: 1. DO NOT INVENT OR FABRICATE any experience, skills, or qualifications 2. DO NOT ADD ANY TECHNOLOGY, LANGUAGE, OR FRAMEWORK that isn't in "matching_skills" or "transferable_skills" 3. DO NOT CLAIM EXPERIENCE with technologies listed in "missing_skills" 4. If you're uncertain about including something, err on the side of exclusion 5. Focus on honest transferable skills and achievements rather than claiming direct experience with unfamiliar technologies 6. Maintain complete factual accuracy while presenting the candidate in the best light based on their ACTUAL qualifications Before finalizing the resume, perform a verification check: - Review each skill and experience to confirm it appears in the job analysis - Remove any content that cannot be verified against the job analysis - Ensure no technologies from "missing_skills" have been accidentally included Remember: The goal is to create an HONEST, tailored resume that presents the candidate's actual qualifications in the most relevant way for this specific job. <|job_analysis|> [INSERT OUTPUT FROM STAGE 1 HERE] <|original_resume|> [INSERT ORIGINAL RESUME FOR REFERENCE] Please generate a professional, tailored resume that honestly represents the candidate's qualifications for this position. ``` ### Implementation Notes: This two-stage approach: 1. **Decouples analysis from generation** - By separating these steps, we create a verification checkpoint between identifying relevant experience and creating the resume 2. **Creates an explicit allowlist** - The resume generation can only use skills and experiences that were verified in the analysis stage 3. **Minimizes hallucination** - By providing structured data rather than full text from the first stage, we reduce the chance of the LLM pulling in unverified information 4. **Enables verification** - The resume generator has access to both the analysis and original resume, allowing for fact-checking 5. **Focuses on transferable skills** - Instead of fabricating experience with missing technologies, the prompt emphasizes legitimate transferable skills ## Integration Strategy: To implement this in your RAG application: 1. Run the first prompt to get the structured job analysis JSON 2. Parse the JSON output to validate it has the expected structure 3. Pass the validated analysis to the second prompt along with the original resume 4. Optionally implement a third verification stage that compares the generated resume against both the analysis and original materials to catch any fabrications This multi-stage approach with structured intermediary data will significantly reduce the tendency of the LLM to fabricate qualifications while still producing a relevant, tailored resume. ## Stage 3: Resume Verification Prompt ```` <|system|> You are a critical resume fact-checker responsible for verifying the accuracy of a tailored resume. Your task is to identify and flag any fabricated or embellished information that does not appear in the candidate's original materials. ### INSTRUCTIONS: 1. Compare the tailored resume against: - The structured job analysis - The candidate's original resume and context 2. Perform a line-by-line verification focusing on: - Skills claimed vs. skills verified in original materials - Experience descriptions vs. actual documented experience - Projects and achievements vs. documented accomplishments - Technical knowledge claims vs. verified technical background 3. Create a verification report with these sections: #### OUTPUT FORMAT: ```json { "verification_results": { "factual_accuracy": { "status": "PASS/FAIL", "issues": [ { "claim": "The specific claim in the resume", "issue": "Why this is problematic", "source_check": "Result of checking against source materials", "suggested_correction": "How to fix this issue" } ] }, "skill_verification": { "status": "PASS/FAIL", "unverified_skills": ["skill1", "skill2"...] }, "experience_verification": { "status": "PASS/FAIL", "problematic_statements": [ { "statement": "The problematic experience statement", "issue": "Why this is problematic", "suggested_correction": "How to fix this issue" } ] }, "overall_assessment": "APPROVED/NEEDS REVISION", "correction_instructions": "Specific instructions for correcting the resume" } } ``` ## CRITICAL VERIFICATION CRITERIA: 1. Any skill mentioned in the resume MUST appear verbatim in the original materials 2. Any technology experience claimed MUST be explicitly documented in original materials 3. Role descriptions must not imply expertise with technologies not listed in original materials 4. "Transferable skills" must be reasonably transferable, not stretches or fabrications 5. Job titles, dates, and companies must match exactly with original materials 6. Professional summary must not imply experience with technologies from the job description that aren't in the candidate's background ## SPECIAL ATTENTION: Pay particular attention to subtle fabrications such as: - Vague wording that implies experience ("worked with", "familiar with", "utilized") with technologies not in original materials - Reframing unrelated experience to falsely imply relevance to the job requirements - Adding technologies to project descriptions that weren't mentioned in the original materials - Exaggerating level of involvement or expertise in technologies mentioned in passing This verification is the final safeguard against providing a resume with fabricated information. Be thorough and critical in your assessment. <|job_analysis|> [INSERT OUTPUT FROM STAGE 1 HERE] <|original_materials|> [INSERT ORIGINAL RESUME AND CONTEXT HERE] <|tailored_resume|> [INSERT GENERATED RESUME FROM STAGE 2 HERE] Perform a comprehensive verification of the tailored resume against the original materials and provide a detailed report on any discrepancies or fabrications. ```` ## Why Add This Third Verification Stage: Adding this verification stage provides several key benefits: 1. **Independent verification** - A separate LLM pass dedicated solely to fact-checking helps catch issues that might have slipped through 2. **Explicit fabrication hunting** - The prompt specifically focuses on finding fabrications rather than generating content 3. **Structured feedback** - The JSON output clearly identifies specific issues that need to be addressed 4. **Automated quality control** - You can programmatically check the verification results and only proceed if the resume passes verification 5. **Documentation of reasoning** - Each flagged issue includes an explanation of why it's problematic and how to fix it This three-stage pipeline (analyze → generate → verify) creates multiple checkpoints to prevent fabrication while still producing relevant, tailored resumes that highlight the candidate's actual transferable skills.