← 返回 Skills 市场
makiwinster72

中国学生教科书目录

作者 MakiWinster72 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
53
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install chinese-students-textbook
功能描述
教科书目录读取。用户问「这学期要学哪些古诗词」「《朝花夕拾》在哪个单元」时,直接读取对应 JSON 文件回答。
使用说明 (SKILL.md)

教科书目录 (Textbook Reader)

文件位置

actives_skills/textbook-reader/textbooks/
├── 七年级语文上册.json
├── 七年级语文下册.json
├── 高一数学必修一.json
└── ...

每本书一个 JSON,文件名即书名。

JSON 格式

{
  "name": "七年级语文上册",
  "units": [
    {
      "name": "第一单元",
      "阅读": [
        { "Title": "春", "Author": "朱自清", "Type": "精读", "Sub": [] },
        {
          "Title": "古代诗歌四首",
          "Author": "",
          "Type": "精读",
          "Sub": [
            { "Title": "观沧海", "Author": "曹操" },
            { "Title": "次北固山下", "Author": "王湾" }
          ]
        }
      ],
      "写作": ["热爱写作,学会观察"],
      "综合性学习": [],
      "整本书阅读": ["《朝花夕拾》"],
      "课外古诗词": [{ "Title": "峨眉山月歌", "Author": "李白" }]
    }
  ]
}

使用方式

当用户问及以下类型问题时,直接读取对应 JSON 文件并回答:

用户问 回答内容
「七年级语文上册有哪些古诗词」 遍历所有单元的 课外古诗词 + 阅读中的 Sub 子条目
「《朝花夕拾》在哪个单元」 在各单元 整本书阅读 中搜索
「第一单元有哪些课文」 读取对应册的 JSON,列出该单元 阅读 列表
「这学期要学哪些必读篇目」 列出所有 Type: "精读" 的篇目
「某首诗的作者是谁」 阅读.Sub课外古诗词 中搜索
「某册有哪些单元」 直接列 units 中的 name

执行方式

直接用 read 工具读取文件:

read: actives_skills/textbook-reader/textbooks/七年级语文上册.json

读取后根据用户问题解析 JSON 内容并回答。

添加新书

用户发送新课本目录时:

  1. 接收文本(文字或图片)
  2. 手动整理成 JSON 格式
  3. 写入 textbooks/书名.json

回复:「✅ 已收录《书名》,共 X 个单元、Y 篇精读篇目、Z 首古诗词」

安全使用建议
This skill appears to do what it says: read local textbook JSONs and answer catalog questions. Before installing, confirm the runtime will only allow it to access its own skill folder (not arbitrary system files). Be aware of two practical issues: the SKILL.md refers to a specific path that may not match your runtime layout (fix mapping if needed), and the JSON files use inconsistent field names (the agent may need robust parsing). When allowing users to add new books, ensure the skill validates input and avoids silently overwriting files. There are no requests for credentials or network downloads in this package.
功能分析
Type: OpenClaw Skill Name: chinese-students-textbook Version: 1.0.0 The skill bundle is a textbook directory reader designed to help students query contents, authors, and units from various Chinese middle school textbooks. It consists of structured JSON data files and clear instructions in SKILL.md and README.md for the AI agent to read and update these files. No indicators of data exfiltration, malicious execution, or harmful prompt injection were found; the code and instructions are entirely consistent with the stated educational purpose.
能力评估
Purpose & Capability
The name/description (textbook index reader) aligns with the files included and the runtime instructions: it reads local JSON files containing textbook catalogs and answers queries about units, poems, required readings, etc.
Instruction Scope
Runtime instructions are narrowly scoped to reading/writing files under the skill's textbooks directory (using the provided `read` tool) and to parsing JSON to answer queries. Two operational notes: (1) SKILL.md shows a path 'actives_skills/textbook-reader/textbooks/' while registry slug is 'chinese-students-textbook' — this path mismatch may cause runtime lookup errors unless the agent runtime maps paths accordingly; (2) JSON field names vary across files (e.g., Title vs title, Author vs author, units vs chapters), so the agent must handle multiple schemas. Adding new books requires writing JSON files but the SKILL.md does not specify validation or overwrite protections.
Install Mechanism
No install spec and no binaries are required; the skill is instruction-only and includes data files. Nothing is downloaded or written to system directories beyond the skill's own textbooks folder according to the instructions.
Credentials
The skill requests no environment variables, credentials, or config paths. Its data access is limited to bundled JSON files and user-provided new-book content, which is proportionate to the stated purpose.
Persistence & Privilege
always:false and the skill is user-invocable (normal). The SKILL.md allows writing new JSON files into its textbooks directory when users submit new books — this is reasonable for the feature but operators should note the agent could add/modify files in its own skill folder. The skill does not request broader system modifications or other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install chinese-students-textbook
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /chinese-students-textbook 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
现在只有初一-初三:人教版语文, 数学, 忘记什么出版社的物理, 化学全一册
元数据
Slug chinese-students-textbook
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

中国学生教科书目录 是什么?

教科书目录读取。用户问「这学期要学哪些古诗词」「《朝花夕拾》在哪个单元」时,直接读取对应 JSON 文件回答。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 53 次。

如何安装 中国学生教科书目录?

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

中国学生教科书目录 是免费的吗?

是的,中国学生教科书目录 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

中国学生教科书目录 支持哪些平台?

中国学生教科书目录 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 中国学生教科书目录?

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

💬 留言讨论