MCP HubMCP Hub
スキル一覧に戻る

curriculum-package-lms

majiayu000
更新日 Today
21 閲覧
58
9
58
GitHubで表示
メタgeneral

について

このClaudeスキルは、SCORM、Canvas、Moodleなどの形式でLMS対応のコースパッケージを生成します。適切なコース構造、シーケンシング、およびエクスポート用の成績返送を処理します。「LMSにエクスポート」や「SCORMパッケージを作成」などのフレーズでトリガーされた際に、開発者はこのスキルを使用すべきです。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/majiayu000/claude-skill-registry
Git クローン代替
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/curriculum-package-lms

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

LMS Package Generation

Create distribution-ready Learning Management System packages with proper structure, navigation, assessments, and completion tracking.

When to Use

  • Export curriculum to LMS
  • Create SCORM 1.2/2004 packages
  • Generate Canvas course export
  • Create Moodle backup
  • Package for Blackboard/D2L

Required Inputs

  • Curriculum Materials: Lessons, assessments, resources
  • LMS Platform: SCORM, Canvas, Moodle, Blackboard, D2L
  • Configuration: Course settings, grading, prerequisites

Workflow

1. Gather All Course Components

Collect:

  • Syllabus and course info
  • Learning objectives
  • Lesson content
  • Assessment items and rubrics
  • Multimedia elements
  • Resources and handouts

2. Generate SCORM Package

# SCORM 1.2 or 2004 structure
course-package/
├── imsmanifest.xml        # Package manifest
├── adlcp_rootv1p2.xsd     # Schema
├── index.html             # Launch file
├── content/
│   ├── lessons/
│   ├── assessments/
│   └── resources/
└── scripts/
    └── scorm-api.js       # SCORM communication

Manifest Structure:

<manifest identifier="COURSE_ID" version="1.0">
  <metadata>
    <schema>ADL SCORM</schema>
    <schemaversion>2004 4th Edition</schemaversion>
  </metadata>
  <organizations default="ORG_ID">
    <organization identifier="ORG_ID">
      <title>Course Title</title>
      <item identifier="UNIT1" identifierref="RES_UNIT1">
        <title>Unit 1: Introduction</title>
        <item identifier="LESSON1" identifierref="RES_LESSON1">
          <title>Lesson 1.1</title>
        </item>
      </item>
    </organization>
  </organizations>
  <resources>
    <resource identifier="RES_LESSON1" type="webcontent" href="content/lesson1.html">
      <file href="content/lesson1.html"/>
    </resource>
  </resources>
</manifest>

3. Generate Canvas Export

{
  "course": {
    "name": "Course Title",
    "course_code": "COURSE-101",
    "term": "Fall 2024",
    "modules": [
      {
        "id": 1,
        "name": "Unit 1: Introduction",
        "position": 1,
        "items": [
          {
            "type": "Page",
            "title": "Lesson 1.1",
            "content": "...",
            "position": 1
          },
          {
            "type": "Assignment",
            "title": "Unit 1 Assessment",
            "points_possible": 100,
            "rubric": {...}
          }
        ]
      }
    ],
    "assignments": [...],
    "quizzes": [...],
    "rubrics": [...]
  }
}

4. Generate Moodle Backup

<moodle_backup>
  <information>
    <name>Course Backup</name>
    <moodle_version>4.1</moodle_version>
    <backup_date>...</backup_date>
  </information>
  <contents>
    <activities>
      <activity id="1" moduleid="1" modulename="page">...</activity>
      <activity id="2" moduleid="2" modulename="quiz">...</activity>
    </activities>
  </contents>
</moodle_backup>

5. CLI Interface

# SCORM package
/curriculum.package-lms --format "scorm2004" --materials "curriculum-artifacts/" --output "course.zip"

# Canvas export
/curriculum.package-lms --format "canvas" --materials "curriculum-artifacts/" --course-code "BIO-101"

# Moodle backup
/curriculum.package-lms --format "moodle" --materials "curriculum-artifacts/"

# Help
/curriculum.package-lms --help

Exit Codes

  • 0: Package created successfully
  • 1: Invalid LMS format
  • 2: Missing required materials
  • 3: Package generation failed

GitHub リポジトリ

majiayu000/claude-skill-registry
パス: skills/curriculum-package-lms

関連スキル

algorithmic-art

メタ

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

スキルを見る

subagent-driven-development

開発

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

スキルを見る

executing-plans

デザイン

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

スキルを見る

cost-optimization

その他

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

スキルを見る