Skill Progression Ladder¶
Workflow — instantiates Mastery-Gate Progression
Sequences capability into ordered rungs, each with its own criterion and gate, so mastery advances one dependency step at a time.
A Skill Progression Ladder is the multi-rung structure that strings a whole domain of capability into an ordered sequence — a chain of levels where each rung has its own criterion and its own gate, and clearing one unlocks the next. Its defining property is sequence at scale: it is not a single gate but the ordered arrangement of many, laying out the entire path from novice to mastery so the ladder itself expresses the dependency order. A learner always knows which rung they are on, what the next rung requires, and that they cannot skip ahead. Where the individual gates verify one boundary, the ladder is the map of all the boundaries and the order they must be crossed in.
Example¶
A Brazilian jiu-jitsu academy runs its curriculum as a belt ladder: white, blue, purple, brown, black, each belt a rung with its own defined competencies and its own promotion gate. The order is not decorative — it encodes dependency. A white belt must reliably escape bad positions before a blue belt's work (building attacking sequences) makes sense; purple-belt teaching (chaining submissions) assumes the positional control blue belt certifies. You cannot be promoted to purple without passing through blue, because purple's material is built on blue's.
Each rung has a criterion (the techniques and live-rolling standard for that belt) and a gate (the instructor's promotion decision). A student's belt is their progress record — it publicly marks how far up the ladder they have climbed and what they have already mastered. New students see the whole ladder at once, which turns a formless "get good at jiu-jitsu" into an ordered path: master this rung's standard, get gated to the next, repeat. The ladder is the structure that makes the sequence legible and enforces its order.
How it works¶
The engineering is ordering by dependency, then gating each rung. First, decompose the domain into levels and order them so each rung depends on the one below — the sequence is the dependency map made walkable. Second, give each rung its own criterion, defining what that level requires distinctly from its neighbors. Third, place a gate between rungs so advancement is one step at a time and skipping is structurally impossible. Fourth, track each learner's current rung as a standing record of how far they have climbed. The ladder's job is the arrangement and enforcement of order; it delegates the actual mastery check at each rung to whatever assessment fits (a checkoff, a quiz, a review) rather than performing the check itself.
Tuning parameters¶
- Rung granularity — how many levels the domain is cut into. More rungs give finer feedback and gentler steps but multiply gates and slow the climb; fewer rungs move faster but make each jump steeper.
- Step size — how much new capability each rung adds over the last. Small steps keep each gate within reach; large steps risk stalling learners at a wall.
- Skip / test-out policy — whether an advanced learner can gate past lower rungs by proving the criterion directly. Allowing it respects prior mastery but risks hidden gaps if the test-out is loose.
- Visibility — how openly the whole ladder and each rung's criterion are published. Full visibility orients learners but can invite fixation on the next belt over the underlying skill.
When it helps, and when it misleads¶
Its strength is that ordering by dependency keeps each next rung within reach of the last — each step sits in the learner's zone of proximal development, just beyond current capability but attainable with the rung below already mastered.[n1] The ladder makes a large capability climbable and its order legible, and its per-rung gates keep hidden gaps from compounding across levels.
It misleads when rungs multiply past the real dependencies. Gate inflation — adding levels and gates that mark status rather than genuine capability boundaries — creates friction, bottlenecks, and credential-chasing, where learners grind for the next rung rather than the underlying skill. A too-rigid ladder also denies capable learners any way to skip what they already own. The guarding discipline is to place rungs only at true dependency boundaries and to allow a validated test-out, so the ladder tracks capability rather than ceremony.
How it implements the components¶
prerequisite_dependency_map— the ordered sequence of rungs is the dependency map made walkable: each rung's position encodes what it depends on.mastery_criterion— it assigns each rung its own distinct standard, so every level defines what it requires.progression_gate— it places a gate between each pair of rungs, enforcing one-step-at-a-time advance and making skips structurally impossible.mastery_progress_record— a learner's current rung is a standing record of how far up the ladder they have climbed and what they have already cleared.
It does not implement assessment_evidence gathering or an advancement_release_decision at any single rung — those belong to the assessment mechanisms it delegates to, such as Competency Checkoff; the ladder arranges and orders the gates but does not perform the check at each one.
Related¶
- Instantiates: Mastery-Gate Progression — it is the multi-rung structure that arranges the archetype's gates into an ordered path.
- Consumes: Competency Checkoff — the per-rung mastery check the ladder delegates each gate to.
- Sibling mechanisms: Prerequisite Test · Mastery Quiz · Competency Checkoff · Simulation Checkout · Remediation Cycle · Portfolio Mastery Review · Criterion Rubric · Conditional Release Protocol
Editorial Notes¶
Form Classification¶
Form family: Experiment, Test & Rehearsal
Rationale: Skill Progression Ladder operates by orders dependent skill rungs and requires demonstrated practice at each criterion before advancement. That concrete deployed or enacted form is Experiment, Test & Rehearsal under the frozen taxonomy.
Nearest alternative: Protocol, Workflow & Routine — Although Protocol, Workflow & Routine can support this mechanism, the frozen evidence makes its operative form the act that orders dependent skill rungs and requires demonstrated practice at each criterion before advancement; the alternative is therefore secondary rather than defining.
Review outcome: Adjudicated after independent review; high confidence.
Origin Attribution¶
Primary origin: Education & Pedagogy
Origin pattern: Convergent development
Present-day reach: Universal
Rationale: Sequencing dependent capabilities into criterion-gated levels is mastery learning and competency-based education.
Related originating lineages:
- Organizational & Management Science — Career frameworks define increasing role capability and authorization.
- Psychology — Skill acquisition progresses through staged complexity and automatization.
- Sport Science & Kinesiology — Coaching curricula gate advanced movements on foundational mastery.
Review resolution: The blind reviewers agree that education_pedagogy is the primary origin and differ only on alternate origin disagreement, origin mode disagreement, domain reach disagreement, encyclopedia synthesis disagreement. I preserve every independently explained alternate from both records rather than imposing a numeric cap. I retain convergent because the combined evidence shows independent disciplinary development. The broader reach of universal records portability separately from historical provenance; encyclopedia_synthesis=true preserves the affirmative synthesis judgment where either reviewer identified one.
Encyclopedia synthesis: The exact catalogued form synthesizes established practice rather than reproducing a single standard historical label.
Review outcome: Reconciled after independent review; high confidence.
Notes¶
[n1] The zone of proximal development, Lev Vygotsky's term, is the band of tasks a learner cannot yet do alone but can do with the right support or prerequisite in place. A well-ordered ladder keeps each rung inside it — reachable precisely because the rung below has been mastered. ↩