geist-learning-lab
12
总安装量
1
周安装量
#25795
全站排名
安装命令
npx skills add https://github.com/vercel-labs/skill-geist-learning-labs --skill geist-learning-lab
Agent 安装分布
amp
1
opencode
1
cursor
1
codex
1
github-copilot
1
Skill 文档
Geist Learning Lab
Build interactive learning experiences that teach by making the learner do something, get feedback, and iterate â using Geist’s dark-first, minimal, precise UI language.
Design Philosophy
- Learning loops, not pages â Every screen completes: prompt â attempt â feedback â refinement â checkpoint
- Cognitive load management â Progressive disclosure, chunking, one concept + one action at a time
- Error-friendly design â Mistakes are expected; the UI normalizes them and turns them into learning moments
- Interactive representations â Sliders, toggles, diagrams, live code â not just text
- Geist precision â Dark backgrounds, tight tracking, semantic color, 4px grid, Swiss typography
Critical Rules
- Every lesson must include at least one attempt+feedback loop â No passive-only pages
- Every interactive control must have a visible effect â Within ~100ms or show loading state
- Progress/review must exist even in a prototype â Track steps completed, checkpoints passed
- Active attempt before explanation â Ask a question or show a task, then explain
- Immediate, specific feedback â “Correct” isn’t enough; explain why
- Multiple representations â Always at least 2 of: text, code, visual, interactive, real data
- Color is learning signal â Green=correct, Red=incorrect, Amber=hint/warning, Blue=info/definition
- Progressive disclosure by default â Depth behind “Why?”, “Edge Cases”, “Formal Definition”
- URL state for exploration â Shareable slider/toggle configurations via search params
- Misconception-first design â Bake in common traps: “Most people get this wrong because…”
The Learning Loop (Central Doctrine)
Every lesson repeats this cycle:
| Step | What Happens | Component |
|---|---|---|
| Orient | What you’ll learn in 5-10 min | Heading + learning objective |
| Attempt | Learner predicts/answers/edits first | QuickCheck, CodePlayground, ParameterDock |
| Feedback | Immediate + specific response | Feedback surface (green/red panel) |
| Explain | Short explanation anchored to their attempt | Callout, WorkedExample |
| Extend | Variation, edge case, or transfer task | BeforeAfterSplit, ConceptExplorer |
| Checkpoint | Quick recall question | QuickCheck with ConfidenceRating |
| Reflect | “What changed in your understanding?” | Optional text input or self-rating |
“Aha Moment” Design Patterns
| Pattern | How It Works | When to Use |
|---|---|---|
| Prediction Gap | “What do you think happens if…?” then reveal | Before introducing a concept |
| Contrast Pair | Two near-identical cases with different outcomes | Clarifying subtle distinctions |
| Slider to Failure | Let learner push a parameter until it breaks | Understanding boundaries/limits |
| Time Travel | Scrub algorithm step-by-step, watch invariants | Algorithms, state machines |
| Misconception Trap | Tempting wrong option, then explain why wrong | Common errors in a domain |
Quick Color Reference (Learning Semantics)
| Signal | Color Token | Hex | Usage |
|---|---|---|---|
| Correct | green-700 | #46A758 |
Success feedback, completed steps |
| Incorrect | red-700 | #E5484D |
Error feedback, failed checks |
| Hint/Caution | amber-700 | #FFB224 |
Hints, warnings, “watch out” |
| Info/Definition | blue-700 | #0070F3 |
Definitions, current step, links |
| Default | gray-400 | #737373 |
Everything else: borders, muted text |
| Progress done | green-700 dot | #46A758 |
Completed step indicator |
| Progress current | blue-700 ring | #0070F3 |
Current step focus state |
| Progress pending | gray-400 dot | #737373 |
Upcoming steps |
Component Library (23 Patterns)
Lesson Flow & Progress
<LessonShell /> <ProgressRail /> <StepFlow /> <CheckpointCard /> <ResumeBanner />
Explorable Explanations
<ParameterDock /> <LiveOutputPanel /> <ConceptExplorer /> <InteractiveDiagram /> <BeforeAfterSplit /> <TimelineExplorer /> <ConceptMap />
Code Learning
<CodePlayground /> <DiffEditor /> <TaskRunner /> <SnippetCopy />
Quizzes & Active Recall
<QuickCheck /> <ConfidenceRating /> <HintLadder /> <MistakeAnalyzer />
Reading Support
<GlossaryPopover /> <Callout /> <WorkedExample />
Typography in Learning Context
| Element | What It Means | Style |
|---|---|---|
| Big heading | “What you’re doing” | text-heading-{32|24} semibold, negative tracking |
| Small label | “Where you are” | text-label-{14|12} gray-400 |
| Mono | “What the computer sees” | text-copy-14-mono or text-label-14-mono |
| Body | Reading content | text-copy-14 or text-copy-16, max-w-2xl |
Layout Patterns
| Context | Max Width | Structure |
|---|---|---|
| Reading content | max-w-2xl / max-w-4xl |
Single column, comfortable line length |
| Interactive lab | max-w-6xl |
Two panels: explanation + playground |
| Full explorer | max-w-7xl |
Three zones: nav + content + lab panel |
App Router Structure
/ â Landing / course picker
/learn â Course catalog + resume
/learn/[courseSlug] â Course overview, modules, progress
/learn/[courseSlug]/[moduleSlug] â Module overview
/learn/[courseSlug]/[moduleSlug]/[lessonSlug] â Lesson shell
File Organization
content/courses/<courseSlug>/course.json â Metadata, module order
content/courses/<courseSlug>/<module>/<lesson>.mdx â Lesson content
components/learning/ â Reusable learning components
lib/learning/progress.ts â Schema + storage adapters
lib/learning/grading.ts â Quiz validation, code tests
lib/learning/spaced.ts â Review scheduling
References
references/lesson-shell.mdâ LessonShell, ProgressRail, StepFlow, CheckpointCard, ResumeBanner TSX patternsreferences/explorable-explanations.mdâ ParameterDock, LiveOutputPanel, ConceptExplorer, InteractiveDiagram, BeforeAfterSplit, TimelineExplorer, ConceptMapreferences/code-learning.mdâ CodePlayground (read-only/guided/free), DiffEditor, TaskRunner, SnippetCopyreferences/quiz-assessment.mdâ QuickCheck, ConfidenceRating, HintLadder, MistakeAnalyzer with feedback patternsreferences/reading-support.mdâ GlossaryPopover, Callout variants, WorkedExample with stepwise revealreferences/pedagogical-framework.mdâ The Learning Loop doctrine, progressive disclosure rules, aha patterns, scaffolded complexityreferences/architecture.mdâ Next.js App Router routing, MDX content system, state management, file organizationreferences/progress-state.mdâ Progress schema, localStorage adapter, spaced repetition, URL state for explorationsreferences/learning-animations.mdâ Step transitions, feedback reveals, diagram animations, reduced-motion compliance