Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

caring-courseforge关爱课程

Agent Skill

caring-courseforge 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

41,010

周安装

1,726

GitHub Stars

2

下载量

14,360
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:caring-courseforge(关爱课程)
来源仓库:https://github.com/michaeljmoody/caring-courseforge
安装命令:
openclaw skills install caring-courseforge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install caring-courseforge

简介

通过 CourseForge API (caringcourseforge.com) 创建和管理在线课程。当用户想要创建课程、模块、课程、生成 AI 内容、导出到 SCORM/xAPI、管理知识库或与 CourseForge 平台交互时使用。处理课程构建、内容生成、测验、可访问性验证和课程导出。

SKILL.md

name
courseforge
description
Create and manage online courses via the CourseForge API (caringcourseforge.com). Use when the user wants to create courses, modules, lessons, generate AI content, export to SCORM/xAPI, manage knowledge libraries, or interact with the CourseForge platform. Handles course building, content generation, quizzes, accessibility validation, and course export.
metadata
openclaw
emoji
📚
requires
bins
["node"]
env
["COURSEFORGE_API_KEY"]
install
kind
npm
package
courseforge-mcp-client
global
true
bins
["courseforge-mcp"]
label
Install CourseForge MCP client (npm)

CourseForge

Build and manage courses on Caring CourseForge via the MCP client.

Source: npm — courseforge-mcp-client Publisher: Caring Consulting Co (caringcos.com)

Setup

  1. Install: npm install -g courseforge-mcp-client
  2. Set COURSEFORGE_API_KEY in your environment:

- Get your key: caringcourseforge.com → Settings → API Keys - Store securely via your gateway environment config or shell profile (export COURSEFORGE_API_KEY=cf_prod_...). Do not store API keys in plaintext workspace files.

  1. Verify: courseforge-mcp starts without errors

Calling Tools

Use the wrapper script to call any of the 89 CourseForge tools:

node scripts/courseforge.mjs <tool_name> '<json_args>'

The script requires COURSEFORGE_API_KEY in the environment (set via gateway env or shell profile).

node scripts/courseforge.mjs list_courses '{}'

Output is clean JSON (the MCP envelope is stripped automatically).

Available Tools (89)

  • Courses (7): list_courses, create_course, get_course, update_course, delete_course, get_course_settings, update_course_settings
  • Modules (5): create_module, update_module, delete_module, reorder_modules, get_module
  • Lessons (7): create_lesson, get_lesson, update_lesson, delete_lesson, reorder_lessons, move_lesson, duplicate_lesson
  • Content Blocks (6): add_content_block, get_content_block, update_content_block, delete_content_block, reorder_content_blocks, move_content_block
  • Course Management (3): validate_course, duplicate_module, export_course
  • Knowledge Library (5): list_collections, create_collection, list_documents, delete_document, search_knowledge
  • AI & Generation (26): ai_chat_assistant, ai_chat_with_research, generate_course_outline, generate_lesson_content, generate_quiz_from_content, generate_image, generate_job_aid_pdf, suggest_improvements, auto_fix_quality_issues, translate_content, summarize_document, convert_document_to_pdf, analyze_image, marketing_support_chat, web_search, fetch_url_content, get_youtube_metadata, get_youtube_captions, scrape_web_to_knowledge, upload_to_knowledge, manage_knowledge_files, search_user_media, list_storage_files, delete_storage_file, get_storage_usage, get_openapi_spec
  • Search & Media (2): search_stock_media, search_youtube
  • Recordings (1): list_recordings
  • API Keys (3): list_api_keys, create_api_key, revoke_api_key
  • Skills (2): list_skills, get_skill
  • Agentic UI Control (22): lock_canvas, unlock_canvas, refresh_canvas, notify_user, show_progress, request_confirmation, request_choice, scroll_to_element, select_element, expand_sidebar_item, focus_content_block, get_canvas_state, open_preview, close_preview, open_settings, toggle_sidebar, create_checkpoint, rollback_to_checkpoint, list_checkpoints, add_annotation, remove_annotation, highlight_issues

For full parameter details on any tool, read references/tools.md.

Common Workflows

Create a course from scratch

  1. create_course — title, description, difficulty (beginner/intermediate/advanced)
  2. create_module — for each section, pass courseId
  3. create_lesson — for each lesson, pass courseId + moduleId
  4. add_content_block — add text, images, quizzes to lessons
  5. validate_course — check quality and accessibility
  6. export_course — export to SCORM 1.2, SCORM 2004, xAPI, or HTML

AI-powered course generation

  1. generate_course_outline — provide topic, audience, difficulty → get full structure
  2. create_course + create_module + create_lesson — build the structure from the outline
  3. generate_lesson_content — auto-generate content for each lesson
  4. generate_quiz_from_content — create assessments from lesson content
  5. suggest_improvements — get AI suggestions for quality
  6. auto_fix_quality_issues — automatically fix issues

Use domain skills for specialized content

  1. list_skills — see all 17 available specialist skills
  2. get_skill — load a skill (e.g., "Instructional Designer", "HR Specialist")
  3. Use the skill context when generating content with ai_chat_assistant

Export a course

node scripts/courseforge.mjs export_course '{"courseId":"xxx","format":"scorm12"}'

Formats: scorm12, scorm2004, xapi, html

Content block types

When using add_content_block, the type field accepts:

  • text — Rich text/HTML content
  • image — Image with URL and alt text
  • video — Embedded video (YouTube, Vimeo, URL)
  • quiz — Interactive quiz/assessment
  • tabs — Tabbed content sections
  • accordion — Collapsible sections
  • callout — Highlighted callout box
  • divider — Visual separator
  • code — Code block with syntax highlighting
  • embed — External embed (iframe)
  • hotspot — Interactive image hotspot
  • flashcard — Flashcard for review
  • sortable — Drag-and-drop sorting activity
  • timeline — Timeline visualization
  • process — Step-by-step process
  • labeled_graphic — Image with labels
  • knowledge_check — Quick knowledge check
  • scenario — Branching scenario

Notes

  • All IDs are Firestore document IDs (alphanumeric strings)
  • Courses have a hierarchy: Course → Modules → Lessons → Content Blocks
  • The Knowledge Library stores reference documents that AI tools can use for generation
  • Agentic UI Control tools require the user to have the course editor open in their browser
  • Rate limits apply to AI generation tools based on the user's subscription tier

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.19%
按下载量换算11,515

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills