← Back to Skills Marketplace
中国学生教科书目录
by
MakiWinster72
· GitHub ↗
· v1.0.0
· MIT-0
53
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install chinese-students-textbook
Description
教科书目录读取。用户问「这学期要学哪些古诗词」「《朝花夕拾》在哪个单元」时,直接读取对应 JSON 文件回答。
README (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 内容并回答。
添加新书
用户发送新课本目录时:
- 接收文本(文字或图片)
- 手动整理成 JSON 格式
- 写入
textbooks/书名.json
回复:「✅ 已收录《书名》,共 X 个单元、Y 篇精读篇目、Z 首古诗词」
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install chinese-students-textbook - After installation, invoke the skill by name or use
/chinese-students-textbook - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
现在只有初一-初三:人教版语文, 数学, 忘记什么出版社的物理, 化学全一册
Metadata
Frequently Asked Questions
What is 中国学生教科书目录?
教科书目录读取。用户问「这学期要学哪些古诗词」「《朝花夕拾》在哪个单元」时,直接读取对应 JSON 文件回答。 It is an AI Agent Skill for Claude Code / OpenClaw, with 53 downloads so far.
How do I install 中国学生教科书目录?
Run "/install chinese-students-textbook" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 中国学生教科书目录 free?
Yes, 中国学生教科书目录 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 中国学生教科书目录 support?
中国学生教科书目录 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 中国学生教科书目录?
It is built and maintained by MakiWinster72 (@makiwinster72); the current version is v1.0.0.
More Skills