Level 10 / Project 14 - SME Mentorship Toolkit¶
Home: README
Learn Your Way¶
| Read | Build | Watch | Test | Review | Visualize | Try |
|---|---|---|---|---|---|---|
| Concept | This project | — | Quiz | Flashcards | — | — |
Focus¶
- Weighted matching algorithm based on skill overlap and experience gaps
- Greedy mentor assignment respecting capacity constraints
- Milestone tracking with completion rate metrics
- Skill-level modeling with proficiency-based matching
Why this project exists¶
Ad-hoc mentorship often fails because pairings are suboptimal or progress is invisible. This project formalizes skill matching and milestone tracking so organizations can measure mentorship ROI and ensure knowledge transfer happens systematically.
Run (copy/paste)¶
Expected terminal output¶
Matches:
E1 -> M1 (score: 85.0, skills: ['python', 'sql'])
E2 -> M2 (score: 72.0, skills: ['javascript', 'react'])
...
Alter it (required)¶
- Add a
timezonefield to Person and penalize matches where mentor/mentee are >6 hours apart. - Add a
feedback_scoreto milestones so mentees can rate each milestone completion. - Add a
MentorReportthat shows how many mentees each mentor has and their completion rates.
Break it (required)¶
- Create a mentee with goals that no mentor can fulfill — observe a low compatibility score.
- Set
max_mentees=0for all mentors and verify no matches are produced. - Try to complete a non-existent milestone ID.
Fix it (required)¶
- Add a minimum compatibility threshold — do not assign a mentor if the score is below 30.
- Add a warning when a mentee cannot be matched due to capacity constraints.
- Test both fixes.
Explain it (teach-back)¶
- How does the compatibility score weight skill overlap vs experience gap vs availability?
- Why does the greedy matching algorithm assign mentees in order rather than using global optimization?
- How does tracking milestone completion rate help measure mentorship effectiveness?
- How would you extend this to handle re-matching when a mentor leaves?
Mastery check¶
You can move on when you can: - compute a compatibility score by hand for a mentor-mentee pair, - explain why capacity constraints prevent one mentor from being overloaded, - add a milestone and track it through to completion, - describe the difference between greedy matching and optimal (Hungarian) assignment.
Related Concepts¶
| ← Prev | Home | Next → |
|---|---|---|