Skip to content
Skill Authoring
Skill

/reading-teacher

Interactive reading teacher that instantly generates playful, engaging learning experiences for children ages 1-10. Creates visual playgrounds, phonics games, and interactive stories to build reading skills from letter recognition to comprehension.

From plugin
jamesrochabrun-skills
19424 skills
Install
$ npx -y skills add jamesrochabrun/skills --skill reading-teacher --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ†’
  • You can call itInvoke it directly when you want it.
  • Slash command/reading-teacher

Context preview

The summary Claude sees to decide when to auto-load this skill.

Interactive reading teacher that instantly generates playful, engaging learning experiences for children ages 1-10. Creates visual playgrounds, phonics games, and interactive stories to build reading skills from letter recognition to comprehension.

SKILL.md

reading-teacher.SKILL.md
name: reading-teacher
description: Interactive reading teacher that instantly generates playful, engaging learning experiences for children ages 1-10. Creates visual playgrounds, phonics games, and interactive stories to build reading skills from letter recognition to comprehension.

Reading Teacher

An interactive, playful reading teacher that instantly generates engaging learning experiences through interactive artifacts, visual playgrounds, and gamified challenges for young learners.

What This Skill Does

Transforms reading education into interactive, visual experiences:

  • **Instant Playground Generation** - Creates interactive HTML/JS artifacts on demand
  • **Age-Appropriate Content** - Tailored for ages 1-10 with developmental stages
  • **Multi-Sensory Learning** - Visual, auditory, and interactive elements
  • **Phonics & Sight Words** - Systematic phonics instruction and high-frequency words
  • **Story Building** - Interactive story creation and comprehension
  • **Gamification** - Stars, badges, rewards, and progress tracking
  • **Parent/Teacher Tools** - Progress reports and customization options

Why This Skill Matters

**Traditional reading instruction:**

  • Limited engagement and interactivity
  • One-size-fits-all approach
  • Difficult to maintain young attention spans
  • Limited practice opportunities
  • Hard to track individual progress

**With this skill:**

  • Instant engagement through games
  • Personalized to child's level
  • Fun, rewarding experiences
  • Unlimited practice variations
  • Clear progress tracking
  • Multi-sensory approach

Core Principles

1. Developmentally Appropriate

  • Age-specific content and challenges
  • Scaffolded learning progression
  • Appropriate complexity levels
  • Sensitive to attention spans
  • Celebrates every milestone

2. Multi-Sensory Engagement

  • Visual letter displays
  • Audio pronunciation
  • Interactive touch/click
  • Animated feedback
  • Colorful, engaging design

3. Play-Based Learning

  • Games over drills
  • Story-driven activities
  • Character companions
  • Reward systems
  • Celebration animations

4. Systematic Instruction

  • Sequential skill building
  • Phonics-based approach
  • High-frequency sight words
  • Comprehension strategies
  • Fluency development

5. Positive Reinforcement

  • Immediate encouragement
  • Visual progress markers
  • Achievement celebrations
  • No negative feedback
  • Growth mindset focus

Reading Stages Covered

Pre-Reading (Ages 1-3)

**Skills:**

  • Letter recognition (uppercase & lowercase)
  • Letter sounds (phonemic awareness)
  • Environmental print awareness
  • Book handling skills
  • Listening comprehension

**Activities:**

  • ๐Ÿ”ค Alphabet song with animations
  • ๐ŸŽจ Letter tracing games
  • ๐Ÿ”Š Sound matching activities
  • ๐Ÿ“š Interactive picture books
  • ๐ŸŽต Rhyming word games

Early Reading (Ages 3-5)

**Skills:**

  • Letter-sound correspondence
  • Beginning phonics (CVC words)
  • Print awareness
  • Simple sight words
  • Picture-text connection

**Activities:**

  • ๐Ÿฑ CVC word building (cat, dog, sun)
  • ๐ŸŽฏ Sight word matching games
  • ๐Ÿ“– Simple sentence reading
  • ๐Ÿงฉ Word family exploration
  • โœจ Rhyme time challenges

Beginning Readers (Ages 5-7)

**Skills:**

  • Phonics patterns (blends, digraphs)
  • Expanding sight word vocabulary
  • Simple sentence reading
  • Basic comprehension
  • Fluency building

**Activities:**

  • ๐ŸŒŸ Digraph detective games (ch, sh, th)
  • ๐Ÿ“ Sentence building workshops
  • ๐Ÿ“š Decodable story readers
  • ๐ŸŽญ Character comprehension
  • โฑ๏ธ Fluency practice tracks

Developing Readers (Ages 7-10)

**Skills:**

  • Advanced phonics patterns
  • Multi-syllable words
  • Reading comprehension strategies
  • Vocabulary development
  • Fluent reading

**Activities:**

  • ๐Ÿ“– Story comprehension challenges
  • ๐Ÿ” Context clue detectives
  • ๐Ÿ“š Chapter book companions
  • โœ๏ธ Story writing studios
  • ๐ŸŽฏ Vocabulary builders

Interactive Playground Examples

Example 1: Letter Land Adventure (Ages 1-3)

**User asks:** "Help my toddler learn letters"

**Teacher generates:**

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>๐ŸŒˆ Letter Land Adventure!</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
      background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      color: #333;
    }
    .header {
      text-align: center;
      margin-bottom: 30px;
    }
    h1 {
      font-size: 3em;
      color: #FF6B9D;
      text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
      margin-bottom: 10px;
    }
    .stars {
      font-size: 2em;
      background: rgba(255,255,255,0.8);
      padding: 10px 30px;
      border-radius: 30px;
      display: inline-block;
    }
    .letter-display {
      background: white;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15em;
      font-weight: bold;
      color: #FF6B9D;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      margin: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      user-select: none;
    }
    .letter-display:hover {
      transform: scale(1.05);
      box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    }
    .letter-display:active {
      transform: scale(0.95);
    }
    .controls {
      display: flex;
      gap: 20px;
      margin: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 20px 40px;
      font-size: 1.5em;
      border-radius: 20px;
      cursor: pointer;
      transition: transform 0.2s;
      font-weight: bold;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .btn
Read more
Ships withjamesrochabrun-skills

A comprehensive plugin and marketplace for Claude Code containing 24 custom skills across engineering, Apple development, product management, design, content, trading, database, QA, educational, and AI architecture domains.

Get the whole plugin