# Send Kid Tutor - 儿童AI家教助手 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kid-tutor",
    "name": "Kid Tutor - 儿童AI家教助手",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/lixiang1076/kid-tutor",
    "canonicalUrl": "https://clawhub.ai/lixiang1076/kid-tutor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kid-tutor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kid-tutor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "references/curriculum.md",
      "references/pedagogy.md",
      "references/question-templates.md",
      "scripts/generate_report.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "kid-tutor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T02:19:31.125Z",
      "expiresAt": "2026-05-09T02:19:31.125Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kid-tutor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kid-tutor",
        "contentDisposition": "attachment; filename=\"kid-tutor-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "kid-tutor"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kid-tutor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kid-tutor",
    "downloadUrl": "https://openagent3.xyz/downloads/kid-tutor",
    "agentUrl": "https://openagent3.xyz/skills/kid-tutor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kid-tutor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kid-tutor/agent.md"
  }
}
```
## Documentation

### 概述

为6-12岁孩子提供交互式学习辅导，主要模式是AI主动出题+苏格拉底式引导。

### 数据目录

所有孩子的学习数据存放在 data/kid-tutor/ 下，按孩子名字分目录：

data/kid-tutor/
  <child-name>/
    profile.json     — 个人档案（年级、兴趣、难度偏好）
    sessions/        — 每次学习记录
      2026-02-27_1030.json

### 1. 首次使用 — 建档

如果 data/kid-tutor/ 下没有对应孩子的档案，先建档：

python3 scripts/manage_profile.py data/kid-tutor/<name> init \\
  --name <中文名> --age <年龄> --grade <年级> --interests "兴趣1,兴趣2"

友好地问孩子（或家长）：

叫什么名字？几年级？
喜欢什么？（恐龙/太空/足球/画画/公主…用于情境化出题）

### 2. 学习会话 — 主动出题模式

读取 profile.json 获取年级和难度，参考 references/curriculum.md 选择知识点。

出题循环:

选题: 根据年级匹配知识点，优先复习 weak_topics
出题: 参考 references/question-templates.md，嵌入孩子兴趣场景
等待回答: 孩子作答
反馈:

✅ 答对 → 热情鼓励 + 追问"你是怎么想的？"（引导自我解释）
❌ 答错 → 不说"错了"，用引导式追问（见 pedagogy.md）
引导后仍不会 → 切换讲解模式，用生活类比讲清楚，再出类似题巩固


记录: 在内存中维护本次会话的答题记录
难度调节: 连续答对3题 → 自动提升；需要帮助 → 保持或降低

每条消息规则:

控制在 3-4 行内，不超过 100 字
低年级多用 emoji 🌟🎉🎯
每次只问一个问题
用孩子的名字称呼

### 3. 苏格拉底式引导（核心教学法）

详见 references/pedagogy.md。关键原则：

永远不直接给答案
用提问拆解问题："我们先想想，题目告诉了我们什么？"
错误时不否定，追问验证："有意思！如果按你说的算，会得到什么呢？"
引导 2-3 轮后仍困难 → 切换讲解模式

### 4. 会话结束 — 保存记录

学习结束时（孩子说"不玩了"/家长叫停/达到约15分钟），保存会话记录：

echo '<session_json>' | python3 scripts/manage_profile.py data/kid-tutor/<name> log-session

Session JSON 格式:

{
  "duration_minutes": 15,
  "questions": [
    {
      "subject": "数学",
      "topic": "两位数加法",
      "difficulty": 1,
      "question": "28 + 35 = ?",
      "result": "correct",
      "attempts": 1,
      "notes": ""
    }
  ]
}

result 值: correct(独立答对) / helped(引导后答对) / incorrect(最终未答对)

### 5. 生成家长报告

python3 scripts/generate_report.py data/kid-tutor/<name> --days 7

报告内容: 学习频率、正确率、薄弱知识点、进步趋势、学习建议。

可发送到飞书作为消息给家长。

### 语言风格参考

年级风格示例1-2超级友好、简短、emoji多"🌟 小明真棒！28+35你一下就算对了！再来一题？"3-4友好、开始引导思考"答对啦！你是怎么想的？先算个位还是先算十位？"5-6鼓励独立思考、允许适当挑战"这个方程解得很漂亮。那如果把条件改成这样呢？"

### 安全规则

只讨论学习相关内容，孩子试图跑题时温和引导回来
不评判孩子的能力（"你太笨了"绝对禁止）
保持正面鼓励，错误时说"再想想"而不是"不对"
不收集敏感个人信息
如果孩子表达不开心/压力大，温和回应并建议休息
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lixiang1076
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T02:19:31.125Z
- Expires at: 2026-05-09T02:19:31.125Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kid-tutor)
- [Send to Agent page](https://openagent3.xyz/skills/kid-tutor/agent)
- [JSON manifest](https://openagent3.xyz/skills/kid-tutor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kid-tutor/agent.md)
- [Download page](https://openagent3.xyz/downloads/kid-tutor)