← 返回 Skills 市场
ymf508

junior-high-math-research-plans

作者 ymf508 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
516
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install junior-high-math-research-plans
功能描述
提供基于人教版2024新版初中数学教材的完整教学资源、教学计划、练习题制作和教学进度分析支持。
使用说明 (SKILL.md)

初中数学研学案技能包

概述

基于人教版2024新版教材的初中数学全套研学案技能包,包含七年级、八年级、九年级所有章节的知识训练学案、教学课件、同步练习和复习资料。

功能特性

  1. 完整的教学体系:覆盖初中数学全部教学内容
  2. 分层教学设计:基础+培优,满足不同层次学生需求
  3. 配套资源丰富:学案+答案+课件+教案+练习全套
  4. 中考备考支持:九年级中考专题复习资料
  5. 自动化工具:快速生成教学计划和复习资料

包含内容

七年级

  • 第4章:一元一次方程(5个课时)
  • 第5章:图形的初步
  • 有理数:基础概念和运算
  • 整式的加减:代数基础

八年级

  • 第13章:三角形(13.1-13.3)
  • 第14章:全等三角形
  • 第15章:轴对称
  • 第16章:整式的乘法与因式分解
  • 第17章:分式

九年级

  • 二次函数:图像、性质、应用
  • 旋转:图形变换
  • :性质、定理、计算
  • 一元二次方程:解法、应用
  • 中考专题复习:全套备考资料

使用方法

1. 快速查找教学资源

查找 七年级 一元一次方程 教学资源
查找 八年级 三角形 知识训练学案
查找 九年级 二次函数 中考复习

2. 生成教学计划

生成 七年级 第4章 教学计划
生成 八年级 第13-15章 复习计划
生成 九年级 中考复习时间表

3. 制作练习题

生成 一元一次方程 练习题(10题)
生成 三角形证明 培优题(5题)
生成 二次函数 中考真题(3题)

4. 分析教学进度

分析 七年级 教学进度
分析 八年级 知识点掌握情况
分析 九年级 中考备考进度

文件结构

初中数学研学案技能包/
├── SKILL.md                    # 技能说明文档
├── package.json                # 技能包配置
├── skills/
│   ├── 教学资源查找.js         # 资源查找功能
│   ├── 教学计划生成.js         # 计划生成功能
│   ├── 练习题制作.js           # 题目生成功能
│   └── 教学进度分析.js         # 进度分析功能
├── resources/
│   ├── 七年级/                 # 七年级教学资源索引
│   ├── 八年级/                 # 八年级教学资源索引  
│   └── 九年级/                 # 九年级教学资源索引
├── templates/
│   ├── 教学计划模板.md         # 教学计划模板
│   ├── 学案模板.md             # 知识训练学案模板
│   └── 复习计划模板.md         # 复习计划模板
└── scripts/
    ├── 资源索引生成.js         # 自动生成资源索引
    └── 模板填充.js             # 模板自动填充

安装要求

  • OpenClaw 环境
  • 基本的文件读写权限
  • 建议配合文档处理技能使用

更新日志

  • v1.0.0 (2026-02-25): 初始版本发布,包含初中数学全套研学案

作者

阿锋的教学资源整理

许可证

教育用途免费使用,禁止商业用途

安全使用建议
This package appears to implement the advertised teaching-plan and resource-search features and includes all resources and templates in the bundle. Before installing or enabling it for an agent, consider the following: 1) Inspect package.json's openclaw.permissions — it requests 'exec' though the code doesn't use child_process; prefer to remove that permission unless you trust the author. 2) The resource-search class contains a hard-coded basePath ('E:\\教学资料') and the resource index files reference E:\ paths — verify the skill will only read its packaged resources (resources/*.md) and will not be pointed at arbitrary local directories on your machine unless you intentionally configure it. 3) The release-prep script writes files into the skill directory (报告, CHANGELOG) — that's expected, but review what it writes and where. 4) There are no network calls or secret requirements, which reduces exfiltration risk; still, run the skill in a sandbox or with limited permissions first and review the code if you plan to install in a production environment. 5) Note the license: "教育用途免费,禁止商业用途" — ensure the license terms meet your needs.
功能分析
Type: OpenClaw Skill Name: junior-high-math-research-plans Version: 1.0.0 The skill is classified as suspicious primarily due to the `package.json` file requesting `"exec"` permission within its `openclaw.permissions` array. While the provided JavaScript files (`skills/教学资源查找.js`, `skills/教学计划生成.js`, `scripts/发布准备.js`) do not contain any code that explicitly utilizes this high-risk capability (e.g., `child_process.exec`), requesting `exec` permission without a clear, demonstrated need in the existing code is a significant security concern. This grants the skill the ability to execute arbitrary commands, posing a potential remote code execution vulnerability if the agent were to be compromised or if future, unreviewed code were added. Other file system operations (read/write) are consistent with the skill's stated purpose of managing teaching resources and generating reports.
能力评估
Purpose & Capability
Name/description match the included code and resources: modules generate lesson/chapter/semester plans, search packaged resource index files, and provide templates. However package.json declares openclaw.permissions: ["read","write","exec"], and the MathResourceFinder contains a hard-coded basePath ('E:\\教学资料') — these are larger privileges or environment assumptions than strictly necessary for the packaged functionality.
Instruction Scope
SKILL.md usage examples and runtime instructions stay within the described educational scope (find resources, generate plans, create exercises, analyze progress). The instructions ask only for basic file read/write permissions which matches the code behavior. The SKILL.md does not instruct the agent to contact external endpoints or read unrelated system secrets.
Install Mechanism
This is an instruction+code skill with no external install spec and no network downloads; all files are included. There are no URLs, archives, or third-party installers fetched at install time — low install risk.
Credentials
No environment variables or credentials are required (none declared). That is appropriate. Minor disproportion: package.json requests 'exec' permission in addition to read/write; the code does not invoke child processes or exec external binaries, so 'exec' may be unnecessary and broad. Also the presence of a hard-coded Windows path in MathResourceFinder suggests an expectation of access to user-local teaching directories (though current code reads packaged resources from the skill folder).
Persistence & Privilege
Skill does not request 'always: true' and does not modify other skills or global agent settings. Scripts write files only within the skill folder (reports and CHANGELOG), which is normal for a packaged skill; no system-wide changes are made.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install junior-high-math-research-plans
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /junior-high-math-research-plans 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
junior-high-math-research-plans v1.0.0 - 首次发布初中数学研学案技能包,基于人教版2024新版教材 - 覆盖七、八、九年级全部章节,含知识训练学案、课件、练习及复习资料 - 支持教学资源查找、教学/复习计划生成、练习题制作、教学进度分析 - 整合配套答案、模板和自动化工具 - 适用于中考专项复习,满足分层教学需求
元数据
Slug junior-high-math-research-plans
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

junior-high-math-research-plans 是什么?

提供基于人教版2024新版初中数学教材的完整教学资源、教学计划、练习题制作和教学进度分析支持。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 516 次。

如何安装 junior-high-math-research-plans?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install junior-high-math-research-plans」即可一键安装,无需额外配置。

junior-high-math-research-plans 是免费的吗?

是的,junior-high-math-research-plans 完全免费(开源免费),可自由下载、安装和使用。

junior-high-math-research-plans 支持哪些平台?

junior-high-math-research-plans 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 junior-high-math-research-plans?

由 ymf508(@ymf508)开发并维护,当前版本 v1.0.0。

💬 留言讨论