Skip to main content

EduVis Schema

An open, curriculum-aware framework and knowledge representation for learning experiences.

๐Ÿš€ Try the Live EduVis Studio IDE

EduVis describes the educational meaning of learning experiences โ€” separating semantic pedagogical structure from raw presentation rendering. Inspired by the philosophy of Markdown, Mermaid, and Model Context Protocol (MCP), it aims to standardize how learning environments are modeled, compiled, and visualized.

EduVis consists of two complementary projects:

  • EduVis Core: The stable educational Intermediate Representation (IR), compiler pipeline, schema validator, and reference SVG renderer.
  • EduVis Studio: A browser-based educational IDE built on Pyodide/WASM that acts as the primary authoring, visualization, and debugging environment for educational content designers.

Inspired by the philosophy of separating meaning from rendering:

Separate meaning from rendering.


Who Is EduVis For?

If you are a... EduVis helps you...
Teacher / Educator Generate curriculum-aligned assessment papers, diagnostic quizzes, and structured lesson decks.
Curriculum Designer Model reusable concept DAGs, prerequisite networks, and pedagogical progression rules.
AI / Agent Developer Build educational agents that output deterministically validated IR instead of raw, unconstrained LLM text.
EdTech Company Integrate educational IR, spaced repetition (SM-2), study plans, and adaptive remediation into your stack.
Researcher Experiment with cognitive graphs, mastery decay models, and structured learning representations.

Getting Started

Requirements: Python 3.10+

Option 1: Install from PyPI (Recommended for general use)

# Core framework only
pip install eduvis

# With Agentic Generation substrate (v1.3 with LangGraph & FastAPI)
pip install "eduvis[agent]"

Option 2: Clone and run locally with uv (Recommended for development)

git clone https://github.com/seehiong/eduvis
cd eduvis
uv sync --all-extras

Then prefix commands with uv run (or use the globally installed eduvis if installed via PyPI/pip):

# Validate showcase lessons
uv run eduvis validate showcase/lessons/negative-numbers-confidence-ladder-lesson.yaml
uv run eduvis validate showcase/features/adaptive-remediation-branching-lesson.yaml
uv run eduvis validate showcase/features/visual-elements-catalog-lesson.yaml
uv run eduvis validate showcase/features/assessment-schemas-lesson.yaml

# Render all showcase assets to showcase/assets/
uv run python scripts/build_showcase.py

# Or render a single showcase lesson to a custom directory
uv run eduvis render showcase/lessons/negative-numbers-confidence-ladder-lesson.yaml -o output/negatives/

# Utility commands
uv run eduvis docs --subjects math
uv run eduvis schema -o eduvis/schemas/

# Curriculum graph inspection
uv run eduvis graph inspect showcase/reference/showcase-curriculum.yaml
uv run eduvis graph prereqs showcase/reference/showcase-curriculum.yaml rational_numbers --transitive
uv run eduvis graph dependents showcase/reference/showcase-curriculum.yaml integers
uv run eduvis graph path showcase/reference/showcase-curriculum.yaml integers real_numbers

# Mastery projection
uv run eduvis mastery project showcase/reference/showcase-curriculum.yaml showcase/reference/sample-learner-state.yaml

# Study plan generation
uv run eduvis study-plan showcase/reference/showcase-curriculum.yaml showcase/reference/sample-learner-state.yaml --mode exam_prep --hours 2

# Schema migration (auto-detects current version, or override with --from-ver)
uv run eduvis migrate showcase/lessons/ --to-ver 1.0

# Graph-driven lesson generation
uv run eduvis generate lesson showcase/reference/showcase-curriculum.yaml integers negative_numbers -o new_lesson.yaml

Option 3: Install locally with pip

git clone https://github.com/seehiong/eduvis
cd eduvis
pip install -e .

Run the Tests

# Sync all dev and agent test dependencies
uv sync --all-extras

# Run full test suite (including core & agent tests)
uv run pytest tests/ -v

# Or run agent tests specifically
uv run pytest tests/test_agent.py -v

Verify the Agentic Pipeline End-to-End

Use scripts/verify_agent.py to prove the full 3-stage agent pipeline is working against your local Ollama instance:

# Requires: ollama serve (in a separate terminal) with at least one model pulled
python scripts/verify_agent.py

This script runs through three stages and prints a clear verdict for each:

Stage What it does
Step 0 Checks Ollama is reachable and lists installed models
Step 1 Fires a direct smoke-test call to the LLM (say hello)
Step 2 Invokes the full LangGraph workflow โ€” intent parsing โ†’ LLM question generation โ†’ EduVis Core blueprint validation
Step 3 Prints a pass/fail verdict, the raw LLM response, and whether questions are real LLM output or deterministic fallback

Success criteria: Status: success, Is Valid: True, and LLM-sourced questions: 10 in the output. If Fallback questions: 10 appears instead, the LLM produced unusable JSON and the deterministic fallback fired โ€” re-run once the model is warm in VRAM.

Code Quality and Maintainability Checks

To keep the codebase maintainable and clean, we enforce code quality and maintainability limits locally. These checks monitor:

  1. Cyclomatic Complexity: Functions must have a McCabe complexity $\le 10$.
  2. Function Length: Functions are restricted to a maximum of 50 statements.
  3. Nesting Depth: Block nesting depth is restricted to at most 3 levels.
  4. Duplication Detection: Code replication/duplication of 4 or more lines is flagged.
  5. Module Size: Python files (modules) are limited to a maximum of 1000 lines.

To run these checks, ensure your development dependencies are synced:

uv sync --all-extras

Then run all quality checks with a single command:

uv run python scripts/run_checks.py

Alternatively, you can run the individual tools manually:

# Run Ruff for style, complexity, and function length
uv run ruff check eduvis agent tests scripts

# Run Pylint for nesting depth, module size, and duplication
uv run pylint eduvis agent tests scripts

[!TIP] Troubleshooting Pylint Crashes: If Pylint crashes with an astroid error or reports bogus wrong-import-position errors on every file (especially common on Python 3.12+), it usually means uv run is falling back to an outdated global installation. Force an update of your local virtual environment by running uv sync --all-extras to fix this.

To see every registered element type rendered to SVG in one pass:

uv run eduvis render showcase/reference/exhaustive-element-catalog.yaml -o output/exhaustive_catalog/

This produces one SVG per element type (test_number_line.svg, test_text_list.svg, test_math_grid.svg, test_solid_cube.svg, โ€ฆ test_solid_cylinder.svg) โ€” useful for checking renderer output after code changes.


What EduVis Is

EduVis is not an SVG schema.

EduVis is a machine-readable instructional model.

It captures the structure of good tutoring โ€” the same structure behind effective human instructors: no skipped steps, visual intuition before abstraction, confidence-building before challenge, and retrieval to lock it in long-term.

Crucially, it separates presentation (how to deliver), curriculum (what to learn), and student cognition (what is mastered) into orthogonal layers, allowing learning paths to adapt dynamically.

EduVis is to educational experiences what Markdown is to documents, Mermaid is to diagrams, and Model Context Protocol (MCP) is to context.

A specification can be rendered as SVG, PDF, slides, interactive lessons, or animated videos while preserving pedagogical intent.


The Problem

Most diagram libraries describe visuals. EduVis describes learning experiences.

A number line in a textbook, a number line used to discover a rule, and a number line shown during a recall exercise are pedagogically different objects. They happen to look the same. Today's tools treat them identically.

# What every library gives you
type: number_line
range: [-10, 10]
highlight: [-3, 5]

EduVis preserves the meaning that gets lost the moment most tools export to SVG:

id: explore_number_line
type: number_line
placement:
  lesson_phase: explore
  memory_role: anchor
  difficulty: starter
actions:
  conceptual:
    - compare: [-3, 5]
range: [-10, 10]

But more importantly, EduVis describes where this element sits inside a proven teaching pattern โ€” something no diagram library models at all.


Specification Status & Tooling

This is not a theoretical schema. The placement model, element types, and LLM prompt vocabulary have been validated in real educational pipelines and are designed for production use.

The EduVis Studio is the primary IDE for educational design. EduVis Studio is not another YAML editor. It is a multi-projection educational IDE where text, graphs, diagnostics, and compiler views are synchronized representations of the same educational specification. Every projection is a synchronized view over the same educational specification; no projection owns the data.

A single educational specification is projected instantly into six interactive views, supported by a cross-cutting inspector:

             Educational Specification (Source of Truth)
                                โ”‚
      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
      โ–ผ                         โ–ผ                         โ–ผ
  Curriculum View        Storyboard View        Assessment View
  Learner Projection      Compiler View        Specification View
                                โ”‚
 โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
                                โ–ผ
         Universal Relationship Explorer (Cross-cutting)

The Studio runs entirely client-side via WebAssembly (Pyodide), providing real-time curriculum graph visualization, lesson progression storyboards, diagnostic engines, and learner mastery projections. For design specifications, refer to docs/studio.md.

Running the Studio IDE Locally

To run and test the Studio workspace on your local machine:

  1. Prepare Python WASM Assets:
    uv run python scripts/pack_studio.py
    
  2. Start Development Server:
    cd studio
    npm install
    npm run dev
    
    Open http://localhost:5173 in your browser.

Running the EduVis Agent Service (v1.3 Agentic Generation)

The agent/ package provides a stateful generation toolchain powered by LangGraph, Pydantic IR, and local model inference (Ollama / Qwen3.5), using EduVis Core as a deterministic validator.

  1. Start Local Ollama Model (Homelab): Ensure Ollama is running locally with your target Qwen3.5 model:

    ollama run qwen3.5:9b
    
  2. Start the Agent FastAPI Server: Run from the repository root directory (eduvis/):

    python -m agent.server
    # Or using uv
    uv run python -m agent.server
    

    This launches the Agent API server at http://localhost:8000.

  3. Verify Server Health:

    curl http://localhost:8000/health
    

โšก 5-Minute Agent Walkthrough: From Prompt to Validated Spec

Instead of asking an LLM to directly invent complex YAML specifications, the EduVis Agent separates proposals from deterministic compilation:

Suppose a teacher requests:

"Generate a 60-mark Secondary 1 Math practice paper on Negative Numbers with 10 questions and 20% diagnostic questions."

USER PROMPT
   โ”‚
   โ–ผ
[Step 1: Intent Interpreter]   โ”€โ”€โ–บ  LLM maps prompt into structured GenerationIntent IR
   โ”‚
   โ–ผ
[Step 2: Context Enricher]     โ”€โ”€โ–บ  EduVis Core injects prerequisite DAGs & concept rules
   โ”‚
   โ–ผ
[Step 3: Candidate Generator]   โ”€โ”€โ–บ  Local LLM proposes candidate question items
   โ”‚
   โ–ผ
[Step 4: EduVis Validator]     โ”€โ”€โ–บ  Deterministic check (Pass / Retry with Critique Feedback)
   โ”‚
   โ–ผ
[Step 5: Paper Compiler]       โ”€โ”€โ–บ  Compiles final validated assessment_paper specification

Try It via REST API:

curl -X POST http://localhost:8000/api/generate/paper \
  -H "Content-Type: application/json" \
  -d '{
        "prompt": "Create a 60-mark Secondary 1 paper on negative numbers",
        "curriculum_yaml": "concepts:\n  - code: negative_numbers\n    name: Negative Numbers\nskills:\n  - code: order_integers\n    concept: negative_numbers\nmisconceptions: []\ndependencies: []",
        "target_marks": 60
      }'

Output:

{
  "status": "success",
  "intent": {
    "subject": "mathematics",
    "level": "Secondary 1",
    "topic": "negative_numbers",
    "total_marks": 60,
    "question_count": 10,
    "objective_distribution": { "AO1_recall": 0.4, "AO2_analysis": 0.4, "AO3_synthesis": 0.2 }
  },
  "candidate_questions": [...],
  "validation_errors": []
}

๐Ÿ“– For full state-diagrams, Pydantic IR field definitions, and architecture specs, read docs/agentic_generation.md.

Running the Standalone Live Editor (Static Playground)

For a quick, zero-install client-side playground, run the HTTP server from the repository root (or navigate into showcase/ directly):

Option A: From Repository Root

uv run python -m http.server 8000 --directory showcase

Option B: From showcase/ Directory

cd showcase
uv run python -m http.server 8000

Then open http://localhost:8000/editor.html in your browser.

[!NOTE] Unlike the React-based EduVis Studio, the Showcase Live Editor is a lightweight single-page tool. It runs in-browser by dynamically loading Pyodide and mounting your local Python files to sync engine and rendering logic changes on the fly.

Documentation Reference Map

EduVis is fully documented in the docs/ directory. Please refer to these resources for detailed specifications:

  • docs/philosophy.md: Core design principles, primitive guidelines, and architecture philosophy.
  • docs/architecture.md: The four decoupled layers (Knowledge, Assessment, Learner State, Presentation) and schema classifications.
  • docs/compiler.md: The v1.0 compiler pipeline execution context, Planners, Assemblers, and CLI compile stages.
  • docs/five_pillars.md: Full reference specification for the Five Pillars (Elements, Actions, Relationships, Placement, Progression) and geometric solid shapes.
  • docs/engines.md: Detailed algorithms and mathematical formulas for Spaced Repetition (SM-2), Study Plan Priority Scoring, Remediation Trace Paths, and Greedy Paper Assembly.
  • docs/ecosystem.md: Ecosystem framing, comparison matrix, and out-of-scope boundaries.
  • docs/llm_system_prompt.md: Structured prompt vocabulary for injecting EduVis schema rules directly into LLM prompts.
  • docs/studio.md: Design goals, multi-projection workspace, bidirectional editing, and local Pyodide/WASM compiler architecture for EduVis Studio.
  • docs/agentic_generation.md: Agentic generation architecture, GenerationIntent IR, Educational Generation Graph, and FastAPI service for EduVis v1.3.
  • docs/roadmap.md: Project priority guidelines, version timelines (v1.2 - v1.5), and strategic extensibility planning.

Project Structure

eduvis/ (repository root)
โ”œโ”€โ”€ eduvis/                  โ† Python package source (core models, validator, compiler, renderers)
โ”œโ”€โ”€ agent/                   โ† EduVis Agent service (LangGraph workflows, Pydantic IR, FastAPI server)
โ”œโ”€โ”€ studio/                  โ† EduVis Studio web application (React, TypeScript, Pyodide WASM)
โ”œโ”€โ”€ docs/                    โ† Conceptual, architectural, and studio documentation files
โ”œโ”€โ”€ showcase/                โ† Reference lesson files, feature catalogs, and learner state configurations
โ”œโ”€โ”€ scripts/                 โ† Build, packaging (pack_studio), and maintenance scripts
โ””โ”€โ”€ tests/                   โ† Unit and integration test suite

License

This project is licensed under the Apache License 2.0. See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eduvis-1.3.0.tar.gz (180.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eduvis-1.3.0-py3-none-any.whl (178.0 kB view details)

Uploaded Python 3

File details

Details for the file eduvis-1.3.0.tar.gz.

File metadata

  • Download URL: eduvis-1.3.0.tar.gz
  • Upload date:
  • Size: 180.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eduvis-1.3.0.tar.gz
Algorithm Hash digest
SHA256 6249c314bc7960e1a1b963ffd98dd7aed1ec47f6013125e87a3a18c7ce57b85b
MD5 d46e965aef7840ff0f64c70b59d5d167
BLAKE2b-256 c948c31cc9a5f7ef2484bde949fd80a5227ac13290435f51b632819d0df0a181

See more details on using hashes here.

Provenance

The following attestation bundles were made for eduvis-1.3.0.tar.gz:

Publisher: publish.yml on seehiong/eduvis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eduvis-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: eduvis-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 178.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for eduvis-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 70012c8dad95a94882c931d2549af6b4a97d17f9bc123896bfcb1a9ccff661a6
MD5 91c95bb1d05042bf9351b1b4c9262899
BLAKE2b-256 f1aabdef450ce6ee3177e80fddda767228f0e117794ab6af9241a29369cac132

See more details on using hashes here.

Provenance

The following attestation bundles were made for eduvis-1.3.0-py3-none-any.whl:

Publisher: publish.yml on seehiong/eduvis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.3.0 This release

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page