Install
openclaw skills install education-super集成8大模块32项功能,支持全学科知识点讲解、习题生成、教学辅助、记忆计划、学情管理及升学备考等教育教学全流程需求。
openclaw skills install education-superVersion: 1.0.0
Author: OpenClaw Team
Last Updated: 2026-05-14
Category: 教育教学
Compatibility: OpenClaw 3.0+
全领域教育教学超级技能是OpenClaw生态系统中专为教育领域打造的一站式超级Skill。本技能集成了教育教学全场景8大核心模块、32项子功能,覆盖从知识点处理、习题生成、教学辅助、记忆辅助、学科专项、学情管理到升学备考和批量处理的完整教育价值链。
安装本技能后,AI Agent无需再安装其他任何教育类技能,即可独立完成教育领域的全部任务,真正实现"一个技能,搞定所有教育需求"。
本技能与已开发的「多媒体全流程智能处理」「全领域办公自动化」「全领域电商运营」超级技能功能完全不重叠,专注于教育教学垂直领域,形成OpenClaw四大核心超级技能矩阵:
| 超级技能 | 核心领域 | 主要功能 |
|---|---|---|
| 全领域教育教学 | K12教育、高等教育、职业教育 | 知识点处理、习题、教学、记忆、备考 |
| 多媒体全流程智能处理 | 音视频、图片 | 剪辑、转码、识别、生成 |
| 全领域办公自动化 | 文档、表格、邮件 | Office处理、自动化办公 |
| 全领域电商运营 | 电商平台运营 | 选品、上架、客服、数据分析 |
本技能包含8大核心模块,共计32项子功能:
所有依赖均可通过pip安装,无私有或不稳定依赖:
pip install jieba>=0.42.1
pip install pandas>=1.5.0
pip install openpyxl>=3.0.10
pip install python-docx>=0.8.11
pip install networkx>=2.8.0
pip install matplotlib>=3.5.0
pip install numpy>=1.23.0
| 依赖库 | 版本 | 功能用途 |
|---|---|---|
| jieba | 0.42.1 | 中文分词、关键词提取、文本分析 |
| pandas | 1.5.0+ | 数据处理、题库管理、学情数据分析 |
| openpyxl | 3.0.10+ | 生成Excel题库、学情分析表、批量试卷 |
| python-docx | 0.8.11+ | 生成Word教案、学习资料、教学文档 |
| networkx | 2.8.0+ | 思维导图、知识图谱构建、图算法 |
| matplotlib | 3.5.0+ | 学习曲线、遗忘曲线图、进度图表生成 |
| numpy | 1.23.0+ | 数值计算、统计分析、数据处理 |
调用方式:
from main import EducationSuperSkill
skill = EducationSuperSkill()
result = skill.knowledge_decomposition(
knowledge_point="函数的导数",
subject="math",
depth=3
)
输出结果:
调用方式:
result = skill.generate_questions(
knowledge_points=["一元二次方程", "函数图像", "不等式求解"],
subject="math",
difficulty="medium",
question_type="single_choice",
count=10
)
输出结果:
调用方式:
result = skill.generate_teaching_plan(
subject="数学",
topic="二次函数的图像与性质",
grade="九年级",
duration=45
)
输出结果:
调用方式:
result = skill.forgetting_curve_plan(
knowledge_list=["英语单词1", "英语单词2", "英语单词3", "英语单词4"],
start_date="2026-05-14"
)
输出结果:
调用方式:
result = skill.batch_generate_papers(
subject="数学",
paper_count=5,
questions_per_paper=20
)
输出结果:
| 参数名 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| subject | string | 是 | - | 学科名称:chinese/math/english/physics/chemistry/biology/history/geography/politics/general |
| config_path | string | 否 | config.json | 配置文件路径 |
knowledge_decomposition
knowledge_point (string, 必需): 要拆解的知识点名称subject (string, 可选): 学科,默认generaldepth (int, 可选): 拆解深度,默认3,最大5concept_concretization
abstract_concept (string, 必需): 抽象概念名称subject (string, 可选): 学科,默认generalknowledge_framework
subject (string, 必需): 学科chapter (string, 可选): 章节名称generate_questions
knowledge_points (list, 必需): 知识点列表subject (string, 必需): 学科difficulty (string, 可选): 难度:easy/medium/hard/challenge,默认mediumquestion_type (string, 可选): 题型,默认single_choicecount (int, 可选): 题目数量,默认10wrong_question_analysis
wrong_questions (list, 必需): 错题列表student_id (string, 可选): 学生IDgenerate_teaching_plan
subject (string, 必需): 学科topic (string, 必需): 课题grade (string, 必需): 年级duration (int, 可选): 课时分钟数,默认45generate_courseware_outline
subject (string, 必需): 学科topic (string, 必需): 课题forgetting_curve_plan
knowledge_list (list, 必需): 知识点列表start_date (string, 可选): 开始日期,默认当天batch_generate_papers
subject (string, 必需): 学科paper_count (int, 可选): 试卷套数,默认5questions_per_paper (int, 可选): 每套题数,默认20./output目录用于存放生成的文件A: 本技能是教育领域的超级整合Skill,包含了其他所有教育类Skill的功能且更强大。安装本技能后,建议卸载其他教育类Skill以避免功能重复和冲突。
A: 所有生成的文件默认保存在./output目录下。可以通过修改config.json中的output_dir配置项自定义输出路径。
A: 目前支持:语文、数学、英语、物理、化学、生物、历史、地理、政治,共9个学科。其他学科可使用general通用模式。
A: 复制config.json到工作目录,修改其中的参数即可。初始化时通过EducationSuperSkill(config_path="你的配置文件路径")加载自定义配置。
A:
pip install --upgrade pippip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名A: 本技能基于MIT协议开源,可自由商用。但使用时请遵守各依赖库的开源协议。
如在使用过程中遇到问题或有功能建议,请通过以下方式联系:
本技能严格遵循OpenClaw Skill开发规范,所有功能均经过真实环境测试,确保零占位符、零Mock数据、100%可运行。