← Back to Skills Marketplace
516
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install junior-high-math-research-plans
Description
提供基于人教版2024新版初中数学教材的完整教学资源、教学计划、练习题制作和教学进度分析支持。
README (SKILL.md)
初中数学研学案技能包
概述
基于人教版2024新版教材的初中数学全套研学案技能包,包含七年级、八年级、九年级所有章节的知识训练学案、教学课件、同步练习和复习资料。
功能特性
- 完整的教学体系:覆盖初中数学全部教学内容
- 分层教学设计:基础+培优,满足不同层次学生需求
- 配套资源丰富:学案+答案+课件+教案+练习全套
- 中考备考支持:九年级中考专题复习资料
- 自动化工具:快速生成教学计划和复习资料
包含内容
七年级
- 第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): 初始版本发布,包含初中数学全套研学案
作者
阿锋的教学资源整理
许可证
教育用途免费使用,禁止商业用途
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install junior-high-math-research-plans - After installation, invoke the skill by name or use
/junior-high-math-research-plans - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
junior-high-math-research-plans v1.0.0
- 首次发布初中数学研学案技能包,基于人教版2024新版教材
- 覆盖七、八、九年级全部章节,含知识训练学案、课件、练习及复习资料
- 支持教学资源查找、教学/复习计划生成、练习题制作、教学进度分析
- 整合配套答案、模板和自动化工具
- 适用于中考专项复习,满足分层教学需求
Metadata
Frequently Asked Questions
What is junior-high-math-research-plans?
提供基于人教版2024新版初中数学教材的完整教学资源、教学计划、练习题制作和教学进度分析支持。 It is an AI Agent Skill for Claude Code / OpenClaw, with 516 downloads so far.
How do I install junior-high-math-research-plans?
Run "/install junior-high-math-research-plans" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is junior-high-math-research-plans free?
Yes, junior-high-math-research-plans is completely free (open-source). You can download, install and use it at no cost.
Which platforms does junior-high-math-research-plans support?
junior-high-math-research-plans is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created junior-high-math-research-plans?
It is built and maintained by ymf508 (@ymf508); the current version is v1.0.0.
More Skills