中国学生教科书目录

v1.0.0

教科书目录读取。用户问「这学期要学哪些古诗词」「《朝花夕拾》在哪个单元」时,直接读取对应 JSON 文件回答。

0· 45·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for makiwinster72/chinese-students-textbook.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "中国学生教科书目录" (makiwinster72/chinese-students-textbook) from ClawHub.
Skill page: https://clawhub.ai/makiwinster72/chinese-students-textbook
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install chinese-students-textbook

ClawHub CLI

Package manager switcher

npx clawhub@latest install chinese-students-textbook
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk976e0e562gwx4tasj1drkbs2s85mg9c
45downloads
0stars
1versions
Updated 23h ago
v1.0.0
MIT-0

教科书目录 (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 首古诗词」

Comments

Loading comments...