Learning Path Guide¶
Artifact — instantiates Knowledge Map Navigation
A goal-directed route through a body of knowledge that starts from where the learner already is and climbs at a manageable difficulty toward a chosen destination.
A Learning Path Guide is a single, ordered route built for one learner heading toward one goal. It takes a destination ("become able to do X"), a starting point ("here's what you already know"), and lays down the sequence of steps between them — pitched so each step is reachable from the last. Its defining trait is that it is goal-directed and state-aware: the same body of material yields a different path depending on where the learner is starting and what they're aiming at, and the path is tuned so difficulty rises just fast enough to keep the learner in the productive zone between bored and lost. Where a reference wayfinding map lets you roam and an institutional curriculum serves a whole cohort, a Learning Path Guide is the personal climbing route — the one that meets you where you are and gets you specifically to your goal.
Example¶
An online-learning platform has a learner who says "I want to become a data analyst" and already knows spreadsheets but no code. A Learning Path Guide assembles a route for this starting state and that goal: it skips the spreadsheet basics she's marked as known, starts her at "intro to SQL," then sequences Python fundamentals → data cleaning → visualization → a capstone project — each unlocking only when the last is done, and each pitched just beyond her current reach. Following the idea of keeping a learner in the zone just past what they can already do,[1] the guide won't drop her into machine learning early even though it's "related," because the jump would be too steep. As she progresses, her state marker advances and the remaining path re-renders — if the visualization module turns out easy, the next step stretches a little further. The value is a doable next step at every point, not a catalogue of everything a data analyst might know.
How it works¶
- Anchor to a goal. Start from an explicit destination and work backward to the capabilities it requires.
- Locate the learner. Read the learner's current state — what they already know — and use it as the path's origin, skipping the known and starting at the true frontier of their competence.
- Sequence up a difficulty gradient. Order the steps so each is reachable from the last and difficulty rises smoothly; the ramp, not just the content, is the design.
- Advance and re-render. As the state marker moves, recompute the remaining route so the "next step" stays current and appropriately sized.
What distinguishes it from its siblings is personalization to state and goal: it is one climbing route for one learner, not a reference web (documentation map), a cohort-wide program (curriculum map), or the raw dependency structure (prerequisite tree) it draws on.
Tuning parameters¶
- Gradient steepness — gentle ramps keep more learners in flow but take longer; steeper ramps are efficient for the prepared but shed those who fall behind.
- Personalization depth — heavily state-adapted paths fit each learner but need reliable signals about what they know; one-size routes are simpler but strand the atypical.
- Path rigidity — a locked sequence guarantees prerequisites are met but frustrates learners who want to skip ahead; a suggested-but-skippable route respects autonomy at the risk of gaps.
- Goal granularity — many small sub-goals give frequent wins and fine steering; a single distant goal is motivating but offers little mid-route feedback.
When it helps, and when it misleads¶
Its strength is producing a doable next step at every point toward a real goal — it converts an overwhelming body of material into a route sized to one learner, which is what keeps motivation and momentum alive where a raw topic list kills both.
Its failure modes come from bad reads of state and goal. If the estimate of what the learner already knows is wrong, the path starts in the wrong place — too easy and they disengage, too hard and they stall. An overly linear route can also imply there is only one way to learn something when there are many. The classic misuse is optimizing the path for completion metrics (keep them clicking "next") rather than for actual capability, producing a smooth route that arrives nowhere. The discipline is to tie the path to demonstrated competence at the goal, not to progress-bar motion, and to re-locate the learner honestly as evidence of their real state arrives.
How it implements the components¶
A Learning Path Guide fills the archetype's goal-directed routing slots:
navigation_goal— the explicit destination the whole route is built backward from.navigation_path— the ordered sequence of steps between the learner's start and the goal.difficulty_gradient— the deliberate pacing so each step is reachable from the last.user_state_marker— the learner's current-knowledge position, which sets the origin and re-renders the remaining route as it advances.
It does not encode the raw prerequisite dependencies it draws on (prerequisite_link — that's Prerequisite Tree), serve a whole program across a cohort (cluster_boundary at program level — that's Curriculum Map), or offer undirected reference routes (alternate_route, cross_reference_bridge — that's Documentation Navigation Map).
Related¶
- Instantiates: Knowledge Map Navigation — the Learning Path Guide is the personalized, goal-directed route through a body of knowledge.
- Consumes: Prerequisite Tree supplies the dependency ordering that a valid path must respect.
- Sibling mechanisms: Prerequisite Tree · Curriculum Map · Documentation Navigation Map · Domain Map · Concept Map · Ontology Map · Knowledge Graph · Research Landscape Map · Knowledge Gap Register · Map Navigation User Test
Notes¶
A Learning Path Guide is a single route for one learner; a Curriculum Map is a program serving a whole cohort against shared outcomes. The guide is often a personalized traversal of the same underlying material a curriculum lays out institutionally, differing in that it starts from an individual's state rather than a fixed programme structure.
References¶
[1] The "zone of proximal development" — Lev Vygotsky's term for the band of tasks a learner can't yet do alone but can do with support, just beyond current independent ability. Keeping each step inside that band is the pedagogical basis for tuning the difficulty gradient. ↩