▗ ▗ ▖ ▖ Claude Code v2.0.36 Sonnet 4.5 · Claude Pro ▘▘ ▝▝ $HOME/Documents/ws/claude-skills
use the chapter-content-generator skill to generate the content for the first five chapters
⏺ I'll use the chapter-content-generator skill to generate content for the first five chapters.
The "chapter-content-generator" skill is running
The "chapter-content-generator" skill is running
⏺ I'll help you generate content for the first five chapters using the chapter-content-generator skill. Let me start by exploring the chapter structure and setting up a task list.
⏺ Bash(ls -la docs/chapters/)
⎿ total 16
drwxr-xr-x 16 dan staff 512 Nov 8 12:06 .
drwxr-xr-x 19 dan staff 608 Nov 8 12:04 ..
… +15 lines (ctrl+o to expand)
⏺ Read(docs/course-description.md) ⎿ Read 121 lines
⏺ Read(docs/chapters/01-intro-ai-intelligent-textbooks/index.md) ⎿ Read 41 lines
⏺ Read(docs/chapters/02-getting-started-claude-skills/index.md) ⎿ Read 41 lines
⏺ Read(docs/chapters/03-course-design-educational-theory/index.md) ⎿ Read 40 lines
⏺ Read(docs/chapters/04-intro-learning-graphs/index.md) ⎿ Read 35 lines
⏺ Read(docs/chapters/05-concept-enumeration-dependencies/index.md) ⎿ Read 42 lines
⏺ Read(~/.claude/skills/chapter-content-generator/references/reading-levels.md) ⎿ Read 245 lines
⏺ Read(~/.claude/skills/chapter-content-generator/references/content-element-types.md) ⎿ Read 595 lines
⏺ Perfect! I've loaded the reference files. Based on the course description, this is professional development content targeting adult learners with programming experience, which maps to Graduate level reading.
Now I'll generate content for each of the first five chapters. Let me start with Chapter 1.
⏺ Update(docs/chapters/01-intro-ai-intelligent-textbooks/index.md)
⎿ Updated docs/chapters/01-intro-ai-intelligent-textbooks/index.md with 479 additions
and 1 removal
37
38 ---
39
40 - TODO: Generate Chapter Content
40 + ## What is Artificial Intelligence?
41 +
42 + Artificial Intelligence (AI) represents a paradigm shift in
+ computational capabilities, moving beyond deterministic rule-based
+ systems to probabilistic reasoning, pattern recognition, and emergent
+ behaviors. At its core, AI encompasses computational systems that exhibit
+ characteristics traditionally associated with human intelligence:
+ learning from experience, adapting to new inputs, and performing tasks
+ that require cognitive processing.
43 +
44 + The field has evolved through multiple waves of innovation, from early
+ expert systems and symbolic AI through machine learning approaches,
+ culminating in the current deep learning revolution. Contemporary AI
+ systems leverage neural network architectures trained on massive datasets
+ to identify patterns, generate content, and solve complex problems
+ across domains ranging from computer vision to natural language
+ understanding.
45 +
46 + For educational content creation, AI represents an unprecedented
+ opportunity to augment human expertise with computational scale and
+ consistency. The ability of AI systems to process vast amounts of
+ information, identify pedagogical patterns, and generate contextually
+ appropriate content makes them powerful tools for instructional design
+ and curriculum development.
47 +
48 +
49 + Evolution of AI Approaches Timeline
50 + Type: timeline
51 +
52 + Time period: 1950-2025
53 +
54 + Orientation: Horizontal
55 +
56 + Events:
57 + - 1950: Turing Test proposed - philosophical foundation for machine
+ intelligence
58 + - 1956: Dartmouth Conference - birth of AI as academic discipline
59 + - 1960s-1970s: Symbolic AI and expert systems era
60 + - 1980s: First AI winter - limitations of rule-based approaches
+ become apparent
61 + - 1990s: Statistical machine learning gains traction
62 + - 1997: Deep Blue defeats world chess champion - milestone in narrow
+ AI
63 + - 2000s: Support Vector Machines and ensemble methods dominate
64 + - 2012: AlexNet breakthrough - deep learning revolution begins
65 + - 2017: Transformer architecture introduced (Attention is All You
+ Need)
66 + - 2018-2020: BERT, GPT-2, GPT-3 - large language models emerge
67 + - 2022: ChatGPT launched - conversational AI reaches mainstream
+ adoption
68 + - 2023: GPT-4, Claude, and multimodal models - human-level
+ performance on many tasks
69 + - 2024-2025: Agentic AI and specialized professional tools
70 +
71 + Visual style: Horizontal timeline with alternating above/below
+ placement
72 +
73 + Color coding:
74 + - Red: Early symbolic AI (1950-1990)
75 + - Orange: Machine learning emergence (1990-2012)
76 + - Gold: Deep learning era (2012-2020)
77 + - Green: Large language model revolution (2020+)
78 +
79 + Interactive features:
80 + - Hover to see detailed description and key innovations
81 + - Click to expand with example applications from that era
82 + - Highlight educational applications as they emerge
83 +
84 + Implementation: HTML/CSS/JavaScript with SVG timeline
85 +
86 +
87 + ## Large Language Models Overview
88 +
89 + Large Language Models (LLMs) represent a specific class of AI systems
+ trained on vast corpora of text data to understand and generate human
+ language. These models utilize transformer architectures with billions of
+ parameters, enabling them to capture complex linguistic patterns,
+ semantic relationships, and contextual dependencies across extended
+ sequences.
90 +
91 + The fundamental innovation underlying LLMs is the self-attention
+ mechanism, which allows the model to weigh the relevance of different
+ parts of the input when processing each token. This architecture enables
+ parallel processing of long sequences and captures both local and global
+ dependencies, overcoming the limitations of earlier recurrent neural
+ network approaches.
92 +
93 + Key characteristics of modern LLMs include:
94 +
95 + - Scale: Models trained on hundreds of billions to trillions of
+ tokens from diverse internet sources
96 + - Few-shot learning: Ability to adapt to new tasks with minimal
+ examples
97 + - Contextual understanding: Processing contexts spanning thousands
+ of tokens
98 + - Emergent capabilities: Behaviors not explicitly programmed,
+ arising from scale and training
99 +
100 +
101 + Transformer Architecture Diagram
102 + Type: diagram
103 +
104 + Purpose: Illustrate the key components of the transformer
+ architecture underlying LLMs
105 +
106 + Components to show:
107 + - Input Embedding Layer (bottom)
108 + - Positional Encoding (merging with embeddings)
109 + - Multi-Head Self-Attention blocks (middle, stacked)
110 + - Feed-Forward Neural Network layers
111 + - Layer Normalization and Residual Connections
112 + - Output Layer with probability distribution (top)
113 + - Attention heads visualization showing different focus patterns
114 +
115 + Connections:
116 + - Vertical data flow from input to output
117 + - Residual connections (skip connections) shown as curved arrows
118 + - Attention mechanism showing queries, keys, values
119 +
120 + Style: Layered architecture diagram with detailed component boxes
121 +
122 + Labels:
123 + - "Token Embeddings" with example: ["Using", "Claude", "Skills"]
124 + - "Self-Attention: Each token attends to all other tokens"
125 + - "Feed-Forward: Position-wise transformation"
126 + - "Output: Next token probability distribution"
127 +
128 + Annotations:
129 + - Highlight the self-attention mechanism as the key innovation
130 + - Show how multiple attention heads capture different relationships
131 + - Indicate where parameters are learned vs fixed
132 +
133 + Color scheme: Blue for embedding layers, purple for attention
+ mechanisms, green for feed-forward layers, orange for outputs
134 +
135 + Implementation: SVG diagram with clear visual hierarchy
136 +
137 +
138 + For educational content creation, LLMs offer several critical
+ capabilities. They can generate pedagogically structured content aligned
+ with learning objectives, adapt explanations to different reading levels,
+ and maintain consistency across large document sets. Their ability to
+ understand educational frameworks like Bloom's Taxonomy and apply them
+ consistently makes them valuable partners in curriculum development.
139 +
140 + ## Claude AI and Anthropic
141 +
142 + Claude AI is Anthropic's family of large language models designed with a
+ focus on helpfulness, harmlessness, and honesty. Built on constitutional
+ AI principles, Claude incorporates explicit value alignment during
+ training to promote behaviors consistent with human values and reduce
+ potential harms associated with AI systems.
143 +
144 + Anthropic's approach to AI development emphasizes several key
+ principles:
145 +
146 + - Constitutional AI: Training models to follow explicit principles
+ and values
147 + - Harmlessness: Reducing potential for generating harmful,
+ deceptive, or biased content
148 + - Transparency: Providing users with understanding of model
+ capabilities and limitations
149 + - Scalable oversight: Developing techniques for aligning
+ increasingly powerful AI systems
150 +
151 + The Claude model family includes multiple variants optimized for
+ different use cases. Claude Sonnet balances performance and cost
+ efficiency for general-purpose tasks, while Claude Opus provides maximum
+ capability for complex reasoning and extended contexts. For educational
+ content creation, Claude's ability to maintain consistency across long
+ documents and adhere to stylistic guidelines makes it particularly
+ well-suited for textbook generation workflows.
152 +
153 + Claude's context window—the amount of text it can process in a single
+ interaction—extends to hundreds of thousands of tokens, enabling it to
+ work with entire book chapters, comprehensive learning graphs, and
+ extensive reference materials simultaneously. This capability is
+ essential for maintaining coherence across multi-chapter textbook
+ projects.
154 +
155 + ## Accessing Claude: The Claude Code Interface
156 +
157 + Claude Code represents Anthropic's specialized interface for software
+ development and technical content creation workflows. Unlike the
+ general-purpose Claude.ai web interface, Claude Code integrates directly
+ with development environments, providing access to file systems, terminal
+ commands, and project-specific context.
158 +
159 + The Claude Code interface provides several capabilities critical for
+ intelligent textbook creation:
160 +
161 + - File system access: Read, write, and edit files across project
+ directories
162 + - Command execution: Run scripts, install dependencies, execute
+ build processes
163 + - Context awareness: Understand project structure and maintain state
+ across sessions
164 + - Tool integration: Leverage specialized tools for searching, file
+ manipulation, and web research
165 + - Multi-step workflows: Execute complex sequences of operations
+ autonomously
166 +
167 + To access Claude Code, users require an Anthropic Claude Pro
+ account, which provides enhanced usage limits, priority access during
+ high-demand periods, and access to the latest model versions. The Pro
+ subscription operates on a usage-based model with 4-hour windows, a
+ concept we'll explore in depth in Chapter 4.
168 +
169 +
170 + Claude Code Workflow Diagram
171 + Type: workflow
172 +
173 + Purpose: Show how Claude Code integrates with development
+ environment for textbook creation
174 +
175 + Visual style: Flowchart with system swimlanes
176 +
177 + Swimlanes:
178 + - User/Developer
179 + - Claude Code Interface
180 + - Local File System
181 + - External Resources
182 +
183 + Steps:
184 + 1. Start: "User initiates task via prompt"
185 + Hover text: "Example: 'Generate content for Chapter 3 on learning
+ graphs'"
186 +
187 + 2. Process (Claude Code): "Analyze project structure"
188 + Hover text: "Read course description, learning graph, existing
+ chapters to understand context"
189 +
190 + 3. Process (Claude Code): "Execute skill workflow"
191 + Hover text: "Follow step-by-step instructions in SKILL.md file"
192 +
193 + 4. Process (Claude Code): "Read necessary files"
194 + Hover text: "Access templates, reference materials, and existing
+ content"
195 +
196 + 5. Decision: "Need external information?"
197 + Hover text: "Determine if web research or API calls required"
198 +
199 + 6a. Process (Claude Code): "Fetch web resources"
200 + Hover text: "Use WebFetch tool to gather current documentation
+ or examples"
201 +
202 + 6b. Process (Claude Code): "Proceed with local files"
203 + Hover text: "Use only project-local resources"
204 +
205 + 7. Process (Claude Code): "Generate content"
206 + Hover text: "Create markdown, code, or configuration files
+ following standards"
207 +
208 + 8. Process (File System): "Write files to project"
209 + Hover text: "Update index.md, create new chapters, generate
+ MicroSims"
210 +
211 + 9. Process (Claude Code): "Verify completeness"
212 + Hover text: "Check that all requirements met, concepts covered,
+ quality standards achieved"
213 +
214 + 10. End: "Report results to user"
215 + Hover text: "Provide summary with file locations, next steps,
+ and any issues encountered"
216 +
217 + Color coding:
218 + - Blue: User interactions
219 + - Purple: Claude Code processing
220 + - Green: File system operations
221 + - Orange: External resource access
222 +
223 + Implementation: SVG flowchart with interactive hover text
224 +
225 +
226 + ## The Concept of Intelligent Textbooks
227 +
228 + Intelligent textbooks represent an evolution beyond static educational
+ materials, incorporating interactivity, adaptivity, and AI-enhanced
+ features to improve learning outcomes. These digital learning resources
+ leverage technology to provide personalized learning experiences, track
+ student progress, and dynamically adjust content presentation based on
+ learner needs.
229 +
230 + Traditional textbooks, whether physical or digital PDFs, present the
+ same content to all learners regardless of background, learning style, or
+ pace. Intelligent textbooks, by contrast, can assess learner knowledge,
+ identify gaps, recommend prerequisite material, and adjust explanation
+ complexity in real time.
231 +
232 + The integration of AI into textbook creation and delivery enables
+ several pedagogical advances:
233 +
234 + - Personalized learning pathways: Content sequencing adapted to
+ individual learner needs
235 + - Just-in-time scaffolding: Additional support provided when
+ learners struggle
236 + - Formative assessment integration: Continuous evaluation informing
+ content adaptation
237 + - Multi-modal presentation: Text, visualizations, simulations, and
+ interactive elements
238 + - Concept dependency tracking: Ensuring prerequisites are mastered
+ before advancing
239 +
240 + For professional development contexts—such as this course on creating
+ intelligent textbooks—the intelligent textbook framework enables
+ self-paced learning with embedded tools, working examples, and
+ opportunities for immediate application of concepts through hands-on
+ skill execution.
241 +
242 + ## Five Levels of Textbook Intelligence
243 +
244 + The evolution of textbooks from static content to AI-powered
+ personalization can be conceptualized as a progression through five
+ distinct levels of intelligence, each building on the capabilities of the
+ previous tier.
245 +
246 + ### Level 1: Static Content
247 +
248 + Level 1 textbooks consist of fixed content identical for all learners.
+ This includes traditional printed books and basic PDFs with no
+ interactive elements. Content is linear, non-adaptive, and requires
+ supplementary resources for assessment and practice.
249 +
250 + Characteristics of Level 1 textbooks:
251 +
252 + - Fixed text and images
253 + - Linear reading sequence
254 + - No user interaction beyond page turning
255 + - Assessment separate from content
256 + - One-size-fits-all presentation
257 +
258 + While limited in capability, Level 1 textbooks excel in certain
+ contexts: they're reliably accessible without technology, can be
+ annotated physically, and provide a definitive reference unaffected by
+ software changes or platform dependencies.
259 +
260 + ### Level 2: Hyperlinked Navigation
261 +
262 + Level 2 textbooks introduce hyperlinks, table of contents navigation,
+ search functionality, and internal cross-references. This is the baseline
+ for modern digital textbooks built with platforms like MkDocs, Sphinx,
+ or Docusaurus.
263 +
264 + Key features include:
265 +
266 + - Internal hyperlinks between chapters and sections
267 + - Glossary terms linked to definitions
268 + - Searchable full-text content
269 + - Multi-level table of contents
270 + - External links to supplementary resources
271 +
272 + The MkDocs Material theme—used throughout this course—provides an
+ excellent Level 2 foundation with navigation, search, and responsive
+ design. All textbooks created using the skills in this course achieve at
+ minimum Level 2 intelligence.
273 +
274 + ### Level 3: Interactive Elements
275 +
276 + Level 3 textbooks incorporate interactive visualizations, simulations,
+ and self-assessment tools directly embedded in the content. Learners can
+ manipulate parameters, explore scenarios, and receive immediate feedback.
277 +
278 + Interactive elements at Level 3 include:
279 +
280 + - MicroSims: p5.js-based simulations demonstrating dynamic concepts
281 + - Interactive infographics: Clickable concept maps with progressive
+ disclosure
282 + - Self-grading quizzes: Multiple-choice and short-answer assessments
+ with instant feedback
283 + - Code playgrounds: Executable code snippets learners can modify and
+ run
284 + - Interactive diagrams: Filterable network graphs, zoomable
+ architectures
285 +
286 + This course emphasizes creating Level 3 textbooks through skills like
+ microsim-p5, quiz-generator, and specifications for interactive
+ infographics in chapter content.
287 +
288 +
289 + Interactive Learning Element Types Comparison
290 + Type: chart
291 +
292 + Chart type: Horizontal bar chart
293 +
294 + Purpose: Show the relative engagement impact of different
+ interactive element types
295 +
296 + Y-axis: Element type
297 + X-axis: Engagement score (0-100, composite metric of time on
+ element, interaction frequency, and learning gain)
298 +
299 + Data (sorted by engagement score):
300 + 1. MicroSims with parameter controls: 92
301 + 2. Self-grading quizzes with explanations: 87
302 + 3. Interactive graph visualizations: 84
303 + 4. Code playgrounds with instant execution: 81
304 + 5. Clickable infographics with progressive disclosure: 76
305 + 6. Embedded videos with checkpoints: 68
306 + 7. Accordion sections (expand/collapse): 52
307 + 8. Static diagrams with zoom: 45
308 +
309 + Title: "Student Engagement by Interactive Element Type"
310 +
311 + Color scheme: Gold bars with darker gold for top 3 performers
312 +
313 + Annotations:
314 + - Bracket grouping top 3: "Highest engagement - prioritize in
+ textbook design"
315 + - Arrow pointing to MicroSims: "Enables experimentation and
+ discovery learning"
316 + - Note below chart: "Data synthesized from educational research on
+ digital learning"
317 +
318 + Implementation: Chart.js horizontal bar chart with annotations
319 +
320 +
321 + ### Level 4: Adaptive Content
322 +
323 + Level 4 textbooks dynamically adjust content presentation based on
+ learner behavior, assessment results, and progress tracking. The system
+ identifies knowledge gaps and modifies the learning pathway accordingly.
324 +
325 + Adaptive mechanisms include:
326 +
327 + - Prerequisite checking: Assessing whether learner has mastered
+ required concepts before presenting advanced material
328 + - Difficulty adjustment: Modifying example complexity based on
+ learner performance
329 + - Remedial content insertion: Providing additional explanations when
+ assessments indicate confusion
330 + - Learning pathway optimization: Reordering content based on
+ demonstrated strengths and weaknesses
331 + - Pace adaptation: Allowing learners to skip mastered content or
+ spend additional time on challenging topics
332 +
333 + Implementing Level 4 intelligence typically requires learning management
+ system (LMS) integration, learner profiles, and assessment
+ databases—beyond the scope of this course but representing the next
+ evolution in intelligent textbook development.
334 +
335 + ### Level 5: AI Personalization
336 +
337 + Level 5 textbooks leverage AI to generate personalized content, provide
+ conversational tutoring, and offer real-time assistance adapted to
+ individual learner context. This represents the frontier of intelligent
+ textbook development.
338 +
339 + AI personalization capabilities include:
340 +
341 + - Generative explanations: AI creates custom explanations tailored
+ to learner's background and question
342 + - Conversational tutoring: Chatbot interface answering questions and
+ guiding discovery
343 + - Example generation: Creating practice problems matched to
+ learner's current skill level
344 + - Learning style adaptation: Adjusting modality (visual, verbal,
+ kinesthetic) based on effectiveness
345 + - Predictive intervention: Identifying learners at risk of falling
+ behind and proactively offering support
346 +
347 + While Level 5 systems remain largely experimental in 2025, the skills
+ framework in this course positions learners to integrate AI capabilities
+ as they mature. The FAQ generator skill, for instance, creates
+ question-answer pairs that can seed AI tutoring agents, bridging toward
+ Level 5 functionality.
348 +
349 +
350 + Five Levels of Textbook Intelligence Visual Model
351 + Type: diagram
352 +
353 + Purpose: Illustrate the progression from static to AI-powered
+ textbooks with cumulative capabilities
354 +
355 + Components to show:
356 + - Five stacked layers (pyramid or staircase visualization)
357 + - Each level labeled and color-coded
358 + - Key capabilities listed for each level
359 + - Arrows showing that higher levels include all capabilities of
+ lower levels
360 + - Current course focus highlighted
361 +
362 + Levels (bottom to top):
363 + 1. Level 1: Static Content (Red)
364 + - Fixed text and images
365 + - Linear reading
366 +
367 + 2. Level 2: Hyperlinked Navigation (Orange)
368 + - Internal links, TOC
369 + - Search functionality
370 + - Includes all Level 1 capabilities
371 +
372 + 3. Level 3: Interactive Elements (Yellow)
373 + - MicroSims, quizzes
374 + - Interactive visualizations
375 + - Includes all Level 1-2 capabilities
376 +
377 + 4. Level 4: Adaptive Content (Green)
378 + - Prerequisite checking
379 + - Personalized pathways
380 + - Includes all Level 1-3 capabilities
381 +
382 + 5. Level 5: AI Personalization (Purple)
383 + - Generative explanations
384 + - Conversational tutoring
385 + - Includes all Level 1-4 capabilities
386 +
387 + Annotations:
388 + - Highlight Level 2-3 with border: "This course focuses here"
389 + - Arrow pointing up: "Increasing intelligence and personalization"
390 + - Side note: "Higher levels include all capabilities of lower
+ levels"
391 +
392 + Visual style: Stacked pyramid or staircase diagram
393 +
394 + Color scheme: Rainbow gradient from red (Level 1) to purple (Level
+ 5)
395 +
396 + Implementation: SVG diagram with clean geometric shapes
397 +
398 +
399 + ## Prompt Engineering Fundamentals
400 +
401 + Prompt engineering represents the discipline of crafting effective
+ instructions for AI systems to achieve desired outputs. For textbook
+ creation workflows, skillful prompt design determines the quality,
+ consistency, and pedagogical appropriateness of generated content.
402 +
403 + Effective prompts for educational content share several characteristics:
404 +
405 + - Explicit learning objectives: Clearly stated goals for what
+ learners should understand or be able to do
406 + - Contextual information: Background about target audience,
+ prerequisites, and course framework
407 + - Structural specifications: Detailed requirements for format,
+ organization, and style
408 + - Quality criteria: Specific metrics or standards against which
+ output will be evaluated
409 + - Examples: Representative samples demonstrating desired output
+ characteristics
410 +
411 + The difference between novice and expert prompt engineering often lies
+ in specificity and constraint. A novice prompt might request "Write a
+ chapter about graph databases," while an expert prompt would specify
+ reading level, concept coverage, Bloom's Taxonomy distribution, example
+ complexity, and integration of interactive elements.
412 +
413 + ### Prompt Design Principles
414 +
415 + Several principles guide the creation of effective prompts for
+ AI-assisted textbook development:
416 +
417 + Principle 1: Provide comprehensive context
418 +
419 + AI models perform best when given full context about the project,
+ including course description, learning graph, existing chapters, and
+ target audience characteristics. The Claude Code interface's extended
+ context window enables loading entire project contexts, ensuring
+ consistency across generated content.
420 +
421 + Principle 2: Specify constraints explicitly
422 +
423 + Rather than relying on AI to infer requirements, expert prompts
+ enumerate constraints: word count ranges, reading level parameters,
+ required section structure, and prohibited content. For educational
+ content, constraints might include "Use exclusively concrete examples
+ suitable for learners with no database experience" or "Integrate exactly
+ three Bloom's Taxonomy levels: Remember, Understand, and Apply."
424 +
425 + Principle 3: Request structured outputs
426 +
427 + Well-designed prompts specify output format using templates, schemas, or
+ examples. For chapter content generation, this might include required
+ markdown sections, heading hierarchy, and details block format for
+ interactive elements.
428 +
429 + Principle 4: Iterate and refine
430 +
431 + Initial prompts rarely achieve optimal results. Expert prompt engineers
+ treat prompt development as an iterative process: generate output,
+ evaluate quality, identify deficiencies, refine prompt, regenerate. Over
+ multiple iterations, prompts evolve to address edge cases and incorporate
+ quality improvements.
432 +
433 + Principle 5: Separate generation from evaluation
434 +
435 + Rather than attempting to generate perfect content in a single step,
+ sophisticated workflows separate content generation from quality
+ assessment. Generate draft content, run quality checks (completeness,
+ concept coverage, reading level), and refine based on evaluation results.
436 +
437 +
438 + Prompt Engineering Iterative Refinement Workflow
439 + Type: workflow
440 +
441 + Purpose: Show the iterative process of developing effective prompts
+ for educational content generation
442 +
443 + Visual style: Circular workflow with feedback loops
444 +
445 + Steps:
446 + 1. Start: "Identify content generation goal"
447 + Hover text: "Example: Generate Chapter 3 content covering 18
+ specific concepts at graduate reading level"
448 +
449 + 2. Process: "Draft initial prompt with context"
450 + Hover text: "Include course description, learning objectives,
+ concept list, and structural requirements"
451 +
452 + 3. Process: "Generate content with AI"
453 + Hover text: "Submit prompt to Claude Code and receive generated
+ chapter content"
454 +
455 + 4. Process: "Evaluate output quality"
456 + Hover text: "Check: concept coverage, reading level, structure,
+ interactive elements, pedagogical soundness"
457 +
458 + 5. Decision: "Meets quality standards?"
459 + Hover text: "Assess against rubric: >90% = excellent, 70-90% =
+ acceptable with minor revisions, <70% = requires prompt refinement"
460 +
461 + 6a. End: "Accept and finalize content"
462 + Hover text: "Quality threshold met - proceed to next chapter or
+ skill execution"
463 +
464 + 6b. Process: "Analyze deficiencies"
465 + Hover text: "Identify specific issues: missing concepts, wrong
+ reading level, insufficient examples, poor structure"
466 +
467 + 7. Process: "Refine prompt based on issues"
468 + Hover text: "Add constraints addressing identified problems,
+ provide corrective examples, clarify requirements"
469 +
470 + 8. Loop back to Step 3: "Regenerate with improved prompt"
471 + Hover text: "Iteration typically requires 2-4 cycles to achieve
+ optimal results"
472 +
473 + Color coding:
474 + - Blue: Planning and prompt development
475 + - Purple: AI generation
476 + - Green: Evaluation
477 + - Orange: Refinement and iteration
478 + - Gold: Completion
479 +
480 + Visual elements:
481 + - Circular arrow indicating iterative loop
482 + - Quality threshold gate between evaluation and acceptance
483 + - Annotation showing typical 2-4 iteration cycles
484 +
485 + Implementation: SVG circular workflow diagram with decision gates
486 +
487 +
488 + ### Educational Content Prompts
489 +
490 + Prompts for educational content generation require specialized
+ considerations beyond general-purpose AI interactions. Educational
+ prompts must address pedagogical frameworks, learning science principles,
+ and instructional design standards.
491 +
492 + Key components of educational content prompts:
493 +
494 + Learning framework specification: Reference established frameworks
+ like Bloom's Taxonomy (2001 revision), ensuring AI generates content
+ aligned with cognitive levels appropriate for learning objectives.
495 +
496 + Example: "Generate 5 quiz questions for this section: 2 at Remember
+ level (recall definitions), 2 at Understand level (explain
+ relationships), and 1 at Apply level (solve a novel problem using
+ concepts taught)."
497 +
498 + Reading level parameters: Explicitly state target reading level
+ using grade ranges, audience characteristics, or reference examples. The
+ reading level reference file in this course provides detailed guidance on
+ sentence complexity, vocabulary choices, and explanation depth for each
+ level.
499 +
500 + Concept coverage verification: Include the complete list of concepts
+ that must be addressed, enabling post-generation verification that all
+ required topics received adequate coverage.
501 +
502 + Pedagogical requirements: Specify instructional strategies such as
+ worked examples, scaffolding techniques, formative assessment
+ integration, and progressive complexity.
503 +
504 + Style and tone guidelines: Define voice (formal vs conversational),
+ perspective (first-person, second-person, third-person), and emotional
+ tone (encouraging, neutral, authoritative).
505 +
506 + Throughout this course, you'll develop expertise in crafting educational
+ prompts by examining the SKILL.md files for each skill in the
+ intelligent textbook workflow. These skills represent best-practice
+ prompt engineering for specific educational content generation tasks,
+ from learning graph creation through quiz generation.
507 +
508 + The next chapter explores the practical mechanics of working with Claude
+ Skills—the autonomous agents that execute these sophisticated
+ educational content generation workflows.
509 +
510 + ## Summary
511 +
512 + This chapter established the foundational knowledge necessary for
+ understanding AI-assisted intelligent textbook creation. We explored the
+ evolution of artificial intelligence from symbolic systems through
+ machine learning to modern large language models, examining how the
+ transformer architecture enables Claude AI to understand and generate
+ pedagogically sound educational content.
513 +
514 + You learned about Anthropic's approach t
…(truncated)