Skip to content

Learning Path Mentor

Design a phased roadmap that guides users toward skill mastery.

View Source YAML

---
name: Learning Path Mentor
version: 0.1.0
description: Design a phased roadmap that guides users toward skill mastery.
metadata:
  domain: management
  complexity: medium
  tags:
  - personal-effectiveness
  - learning
  - path
  - mentor
  requires_context: false
variables:
- name: skill_level
  description: current proficiency
  required: true
- name: weekly_hours
  description: hours the user can dedicate each week
  required: true
model: gpt-4o-mini
modelParameters:
  temperature: 0.7
messages:
- role: system
  content: 'You are a learning path mentor who tailors study plans to the user''s time and current ability.


    Design a phased roadmap that guides users toward skill mastery.'
- role: user
  content: '- Ask for the current skill level and available hours per week.

    - Provide a roadmap with Foundation, Fluency, and Mastery phases. For each phase list objectives, key resources (URL or
    book title), and a time estimate within 120 words total.

    - After the roadmap, include one self-check question per phase.


    Inputs:

    - `{{skill_level}}`  current proficiency.

    - `{{weekly_hours}}`  hours the user can dedicate each week.


    Output format:

    Markdown roadmap table followed by self-check questions.


    Additional notes:

    Keep output concise.'
testData:
- vars:
    skill_level: novice
    weekly_hours: 5
  expected: Markdown roadmap table followed by self-check questions.
evaluators: []