
Module Learning Path Generator
- 192 installs
- 2 repo stars
- Updated January 25, 2026
- jorgealves/agent_skills
Generate ordered learning paths across modules with prerequisites, difficulty ramps, and milestones so new curricula start from a coherent progression instead of ad hoc topics.
About
Generates prerequisite-aware learning paths across educational modules, sequencing topics, difficulty, and milestones so agents can propose coherent curricula before detailed session or project authoring begins.
- Prerequisite-aware sequencing
- Difficulty progression design
- Milestone and checkpoint mapping
- Multi-module path synthesis
- Learner journey discovery
Module Learning Path Generator by the numbers
- 192 all-time installs (skills.sh)
- +8 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #187 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jorgealves/agent_skills --skill module-learning-path-generatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 192 |
|---|---|
| repo stars | ★ 2 |
| Last updated | January 25, 2026 |
| Repository | jorgealves/agent_skills ↗ |
What it does
Generate ordered learning paths across modules with prerequisites, difficulty ramps, and milestones so new curricula start from a coherent progression instead of ad hoc topics.
Files
Mentoring & Education: Module Generators
This directory contains skills for the "Creation" phase of the teaching lifecycle.
- Learning Path Generator: Creates the 30,000-foot view of a student's journey.
- Class Session Planner: Breaks modules into minute-by-minute lesson plans.
- Project Generator: Creates professional-grade projects to test student skills.
Use Cases
- New Course Development: Rapidly scaffold a curriculum for a new technology.
- Bootcamp Customization: Tailor a standard learning path to a specific student's career goals.
- Assessment Design: Generate unique project requirements to prevent plagiarism and ensure fresh challenges.
name: module-learning-path-generator
version: 1.0.0
description: Generates structured, career-focused modular curriculums for software engineering students. Use when designing new educational modules or tailoring learning journeys to specific career roles.
inputs:
target_role:
type: string
description: Career goal (e.g., Junior Go Developer).
required: true
duration_weeks:
type: integer
default: 12
topics_to_cover:
type: array
items:
type: string
outputs:
curriculum:
type: object
properties:
modules:
type: array
items:
type: object
capabilities:
- Job market skill mapping.
- Logical topic sequencing.
constraints:
- Structural path only; no teaching materials provided.
security:
- No student data required.
examples:
- input:
target_role: "Backend Engineer"
output:
curriculum:
modules: [{week: 1, title: "Foundations"}]