AI 訓練課程設計

Human → AI

AI 根據學習目標設計課程,講師審查後再發佈。

5 個節點 · 5 條連接education
agenthumanapi
視覺化
定義學習目標human

管理員指定技能、能力等級、時數與目標受眾。

sequentialAI 課程設計
AI 課程設計agent

建構模組架構、排列主題順序並規劃先修條件。

sequential內容對應
內容對應system

將課程與現有內容庫進行對應並識別缺口。

sequential講師審查
講師審查human

領域專家審查教學流程與內容準確性。

conditional發佈至 LMS
loopAI 課程設計
發佈至 LMSapi

將核准的課程部署至學習管理系統。

uc-training-curriculum.osop.yaml
osop_version: "1.0"
id: "ai-training-curriculum"
name:"AI 訓練課程設計"
description:"AI 根據學習目標設計課程,講師審查後再發佈。"

nodes:
  - id: "objectives"
    type: "human"
    subtype: "input"
    name: "定義學習目標"
    description: "管理員指定技能、能力等級、時數與目標受眾。"

  - id: "design_curriculum"
    type: "agent"
    subtype: "llm"
    name: "AI 課程設計"
    description: "建構模組架構、排列主題順序並規劃先修條件。"

  - id: "content_mapping"
    type: "system"
    name: "內容對應"
    description: "將課程與現有內容庫進行對應並識別缺口。"

  - id: "instructor_review"
    type: "human"
    subtype: "review"
    name: "講師審查"
    description: "領域專家審查教學流程與內容準確性。"
    security:
      approval_gate: true

  - id: "publish_lms"
    type: "api"
    subtype: "rest"
    name: "發佈至 LMS"
    description: "將核准的課程部署至學習管理系統。"

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"