$npx -y skills add ECNU-ICALK/AutoSkill --skill tailored-resume-generatorAnalyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
| 1 | # Tailored Resume Generator |
| 2 | |
| 3 | ## When to Use This Skill |
| 4 | |
| 5 | - Applying for a specific job position |
| 6 | - Customizing your resume for different industries or roles |
| 7 | - Highlighting relevant experience for career transitions |
| 8 | - Optimizing your resume for ATS (Applicant Tracking Systems) |
| 9 | - Creating multiple resume versions for different job applications |
| 10 | - Emphasizing specific skills mentioned in job postings |
| 11 | |
| 12 | ## What This Skill Does |
| 13 | |
| 14 | 1. **Analyzes Job Descriptions**: Extracts key requirements, skills, qualifications, and keywords from job postings |
| 15 | 2. **Identifies Priorities**: Determines what employers value most based on the job description language and structure |
| 16 | 3. **Tailors Content**: Reorganizes and emphasizes relevant experience, skills, and achievements |
| 17 | 4. **Optimizes Keywords**: Incorporates ATS-friendly keywords naturally throughout the resume |
| 18 | 5. **Formats Professionally**: Creates clean, professional resume layouts suitable for various formats |
| 19 | 6. **Provides Recommendations**: Suggests improvements and highlights gaps to address |
| 20 | |
| 21 | ## How to Use |
| 22 | |
| 23 | ### Basic Usage |
| 24 | Provide a job description and your background information: |
| 25 | |
| 26 | ``` |
| 27 | I'm applying for this job: |
| 28 | |
| 29 | [paste job description] |
| 30 | |
| 31 | Here's my background: |
| 32 | - 5 years as software engineer at TechCorp |
| 33 | - Led team of 3 developers on mobile app project |
| 34 | - Expert in Python, JavaScript, React |
| 35 | - Computer Science degree from State University |
| 36 | ``` |
| 37 | |
| 38 | ### With Existing Resume |
| 39 | Upload or paste your current resume along with the job description: |
| 40 | |
| 41 | ``` |
| 42 | Please tailor my resume for this position: |
| 43 | |
| 44 | Job Description: |
| 45 | [paste job description] |
| 46 | |
| 47 | My Current Resume: |
| 48 | [paste resume content] |
| 49 | ``` |
| 50 | |
| 51 | ### Career Transition |
| 52 | When changing industries or roles: |
| 53 | |
| 54 | ``` |
| 55 | I'm transitioning from marketing to product management. |
| 56 | Here's the job I'm applying for: |
| 57 | |
| 58 | [paste job description] |
| 59 | |
| 60 | My transferable experience: |
| 61 | - 7 years in digital marketing |
| 62 | - Led cross-functional teams |
| 63 | - Managed product launches |
| 64 | - Data analysis and A/B testing |
| 65 | ``` |
| 66 | |
| 67 | ## Example |
| 68 | |
| 69 | **User Request:** |
| 70 | ``` |
| 71 | I need a tailored resume for this job: |
| 72 | |
| 73 | Senior Data Analyst Position |
| 74 | |
| 75 | Requirements: |
| 76 | - 5+ years experience in data analysis |
| 77 | - Expert in SQL, Python, and data visualization tools |
| 78 | - Experience with A/B testing and statistical analysis |
| 79 | - Strong communication skills to present findings |
| 80 | - Healthcare industry experience preferred |
| 81 | |
| 82 | My background: |
| 83 | - Data Analyst at RetailCo (2019-2024) |
| 84 | - Created dashboards using Tableau and Power BI |
| 85 | - Built Python scripts for data automation |
| 86 | - Worked with marketing team on campaign analysis |
| 87 | - Business Analytics degree |
| 88 | - Also did 1 year internship at HealthPlus clinic |
| 89 | ``` |
| 90 | |
| 91 | **Generated Output:** |
| 92 | |
| 93 | ```markdown |
| 94 | # JOHN DOE |
| 95 | Email: john.doe@email.com | Phone: (555) 123-4567 | LinkedIn: linkedin.com/in/johndoe |
| 96 | |
| 97 | ## PROFESSIONAL SUMMARY |
| 98 | Results-driven Data Analyst with 5+ years of experience leveraging SQL, Python, and advanced |
| 99 | visualization tools to deliver actionable insights. Proven track record in statistical analysis, |
| 100 | A/B testing, and cross-functional collaboration. Healthcare industry experience with strong |
| 101 | ability to communicate complex data findings to stakeholders. |
| 102 | |
| 103 | ## TECHNICAL SKILLS |
| 104 | - **Data Analysis & Programming**: SQL, Python, Statistical Analysis, A/B Testing |
| 105 | - **Visualization Tools**: Tableau, Power BI, Advanced Dashboard Development |
| 106 | - **Data Management**: Data Automation, ETL Processes, Database Optimization |
| 107 | - **Business Intelligence**: Campaign Analytics, Performance Metrics, KPI Tracking |
| 108 | |
| 109 | ## PROFESSIONAL EXPERIENCE |
| 110 | |
| 111 | **Data Analyst** | RetailCo | 2019 - 2024 |
| 112 | - Designed and implemented 50+ SQL queries and Python automation scripts, reducing manual |
| 113 | data processing time by 60% |
| 114 | - Conducted rigorous A/B testing and statistical analysis for marketing campaigns, |
| 115 | improving campaign ROI by 35% |
| 116 | - Built interactive Tableau and Power BI dashboards for executive team, enabling |
| 117 | data-driven decision making |
| 118 | - Presented analytical findings to cross-functional stakeholders including marketing, |
| 119 | operations, and executive leadership |
| 120 | - Collaborated with marketing team to analyze customer behavior patterns and optimize |
| 121 | targeting strategies |
| 122 | |
| 123 | **Data Analysis Intern** | HealthPlus Clinic | 2018 - 2019 |
| 124 | - Supported healthcare analytics initiatives by analyzing patient data and operational metrics |
| 125 | - Gained exposure to healthcare industry data management and HIPAA compliance requirements |
| 126 | - Assisted in creating reports for clinical staff to improve patient care workflows |
| 127 | |
| 128 | ## EDUCATION |
| 129 | |
| 130 | **Bachelor of Science in Business Analytics** |
| 131 | State University | Graduated 2018 |
| 132 | |
| 133 | ## KEY ACHIEVEMENTS |
| 134 | - Reduced data processing time by 60% through Python automation |
| 135 | - Improved marketing campaign ROI by 35% through A/B testing and optimization |
| 136 | - Created data visualization system now used across entire organization |
| 137 | ``` |
| 138 | |
| 139 | **Addit |