Create learning paths for programming tools, and define what information should be researched to create learning guides. Use when user asks to learn, understand, or get started with any programming tool, library, or framework.
Create comprehensive learning paths for programming tools.
Gather information from three sources. Research each source independently, then aggregate findings.
Organize content into progressive levels. references/progressive-learning.md is the source of truth.
You MUST create exactly 5 levels in this order:
Do NOT merge, skip, or rename levels. Each level's content requirements are defined in the reference file.
Generate the learning path folder.
Create the folder in the current working directory (./learning-{tool-name}/) containing:
learning-{tool-name}/
├── README.md # Overview and how to use this learning path
├── resources.md # All links organized by source (official, community)
├── learning-path.md # Main content following the five levels
└── code-examples/ # Runnable code for each section
├── 01-hello-world/
├── 02-core-concepts/
└── 03-patterns/