AI Training Curriculum Design

Human → AI

AI designs curriculum from learning objectives; instructor reviews before publishing.

5 nodes · 5 edgeseducation
agenthumanapi
Visual
Define Learning Objectiveshuman

Admin specifies skills, competency levels, duration, and audience.

sequentialAI Curriculum Design
AI Curriculum Designagent

Structure modules, sequence topics, and map prerequisites.

sequentialContent Mapping
Content Mappingsystem

Match curriculum to existing content library and identify gaps.

sequentialInstructor Review
Instructor Reviewhuman

Subject matter expert reviews pedagogical flow and accuracy.

conditionalPublish to LMS
loopAI Curriculum Design
Publish to LMSapi

Deploy approved curriculum to learning management system.

uc-training-curriculum.osop.yaml
osop_version: "1.0"
id: "ai-training-curriculum"
name: "AI Training Curriculum Design"
description: "AI designs curriculum from learning objectives; instructor reviews before publishing."

nodes:
  - id: "objectives"
    type: "human"
    subtype: "input"
    name: "Define Learning Objectives"
    description: "Admin specifies skills, competency levels, duration, and audience."

  - id: "design_curriculum"
    type: "agent"
    subtype: "llm"
    name: "AI Curriculum Design"
    description: "Structure modules, sequence topics, and map prerequisites."

  - id: "content_mapping"
    type: "system"
    name: "Content Mapping"
    description: "Match curriculum to existing content library and identify gaps."

  - id: "instructor_review"
    type: "human"
    subtype: "review"
    name: "Instructor Review"
    description: "Subject matter expert reviews pedagogical flow and accuracy."
    security:
      approval_gate: true

  - id: "publish_lms"
    type: "api"
    subtype: "rest"
    name: "Publish to LMS"
    description: "Deploy approved curriculum to learning management system."

edges:
  - from: "objectives"
    to: "design_curriculum"
    mode: "sequential"
  - from: "design_curriculum"
    to: "content_mapping"
    mode: "sequential"
  - from: "content_mapping"
    to: "instructor_review"
    mode: "sequential"
  - from: "instructor_review"
    to: "publish_lms"
    mode: "conditional"
    when: "review.approved == true"
  - from: "instructor_review"
    to: "design_curriculum"
    mode: "loop"
    label: "Revise curriculum structure"