Required elements and organization of a chapter index.md file
A chapter index.md file serves as the foundation for content generation. It contains metadata and structured information that skills use to generate detailed educational content.
Format: # Chapter 5: Learning Graphs
Purpose: Main chapter heading displayed in navigation and content
Required: Yes - exactly one H1 per file
Format: 2-3 paragraphs describing chapter scope and goals
Purpose: Provides context for content generation and reader orientation
Required: Yes
Example:
## Summary
This chapter introduces learning graphs as a tool for organizing
educational content. You'll learn how to create concept maps,
define dependencies, and validate graph quality.
We'll explore both manual and automated approaches to learning
graph creation, with hands-on examples using CSV files and
Python scripts.
Format: Numbered list of concepts from learning graph
Purpose: Maps chapter to specific learning graph concepts
Required: Yes - typically 5-12 concepts per chapter
Example:
## Concepts Covered
1. Graph Theory Basics
2. Directed Acyclic Graphs (DAGs)
3. Concept Dependencies
4. Learning Graph CSV Format
5. Graph Quality Metrics
Format: Bulleted list with links to prerequisite chapters
Purpose: Establishes learning sequence and dependencies
Required: Yes (may be empty for first chapters)
Example:
## Prerequisites
- [Chapter 1: Introduction](../01/index.md)
- [Chapter 3: Educational Frameworks](../03/index.md)
Purpose: Metadata for static site generators
Common fields: title, date, author, template
Example:
---
title: "Learning Graphs"
date: 2025-11-17
author: "Claude AI"
---
Initial state: TODO: Content to be generated
Purpose: Marks where detailed content will be inserted
Generated by: chapter-content-generator skill
Contains: Detailed explanations, examples, diagrams, exercises
# Chapter 5: Learning Graphs
## Summary
This chapter introduces learning graphs...
## Concepts Covered
1. Graph Theory Basics
2. DAG Structure
3. Concept Dependencies
## Prerequisites
- [Chapter 1: Introduction](../01/index.md)
## Introduction to Learning Graphs
[Generated content begins here...]