@clawhub-protozoan-yuan-517a39a100
This skill should be used when the user wants to manage daily parenting plans, record caregiver feedback logs, dynamically adjust childcare schedules, or gen...
---
name: tangyuan-parenting
description: This skill should be used when the user wants to manage daily parenting plans, record caregiver feedback logs, dynamically adjust childcare schedules, or generate weekly parenting reports for a 2.5-year-old girl named TangYuan (汤圆) living in Harbin with her grandparents. Trigger phrases include "早上好", "今天计划", "推送计划", "记录反馈", "今天汤圆", "姥姥反馈", "生成周报", "本周总结", "育儿报告", "更新知识", "查找育儿资讯".
---
# Tangyuan Parenting - 汤圆智能育儿助手
## Overview
This skill provides an intelligent parenting assistant for managing the daily care of TangYuan (汤圆), a 2.5-year-old girl living in Harbin with her maternal grandparents (姥姥 and 姥爷), while her parents work remotely from Beijing. The skill generates scientifically-grounded daily care plans, records caregiver feedback, dynamically adjusts plans based on feedback, and produces weekly parenting reports enriched with the latest childcare knowledge.
## Workflow Decision Tree
Determine which workflow to execute based on the user's input:
```
User Input
├── Contains "早上好" / "今天计划" / "推送计划" / "今日计划" / "生成今天的计划"
│ └── → Execute Workflow 1: Daily Plan Generation
│
├── Contains "记录" / "反馈" / "今天汤圆" / "姥姥说" / "汤圆今天" / describes TangYuan's day
│ └── → Execute Workflow 2: Feedback Logging
│
├── Contains "周报" / "本周总结" / "育儿报告" / "一周总结"
│ └── → Execute Workflow 3: Weekly Report Generation
│
├── Contains "更新知识" / "育儿资讯" / "查找育儿" / "学习新知"
│ └── → Execute Workflow 4: Knowledge Update
│
├── Contains "查看日志" / "历史记录" / "之前的反馈"
│ └── → Execute Workflow 5: Log Retrieval
│
└── General parenting question about TangYuan
└── → Load references/parenting_guide.md and references/tangyuan_profile.md
→ Answer based on scientific parenting knowledge
```
## Workflow 1: Daily Plan Generation
**Trigger**: User says "早上好", "今天计划", "推送今日计划", or similar morning greeting.
### Steps
1. **Determine the current date and day of the week**
- Check if today is a weekday (Mon-Fri) or weekend (Sat-Sun)
- This affects whether TangYuan has early education class (早教班)
2. **Read yesterday's feedback log**
- Run the log manager script to retrieve the previous day's log:
```bash
python scripts/log_manager.py read --date {yesterday_date}
```
- If no log exists, proceed with default plan
- If log exists, note any issues to adjust today's plan (see Step 5)
3. **Query Harbin weather**
- Use web_search to check today's weather in Harbin (哈尔滨今日天气)
- Extract: temperature range, weather condition, wind level
- If weather query fails, use seasonal defaults from `references/harbin_seasonal_guide.md`
4. **Load reference materials**
- Read `references/tangyuan_profile.md` for TangYuan's personal info
- Read `references/harbin_seasonal_guide.md` for seasonal guidance matching current month
- Read `references/parenting_guide.md` as needed for specific nutrition/activity guidance
5. **Generate the daily plan**
- Use `assets/daily_plan_template.md` as the structural template
- Fill in all template variables based on:
- **Weather data** → dress suggestions, outdoor activity feasibility
- **Day of week** → weekday: include 早教班 9:00-12:00; weekend: plan home/outdoor activities
- **Yesterday's feedback** → adjust meals (if appetite was poor), activities (continue what worked well), sleep schedule (if sleep was disrupted)
- **Seasonal guide** → appropriate foods, clothing layers, health precautions
- **Parenting guide** → age-appropriate activities, nutritional balance
- Output the plan in clean, easy-to-read Markdown format
- Use simple language that grandparents can easily follow
- Include emoji for visual clarity but keep content practical
6. **End with feedback reminder**
- Always end the plan with a gentle reminder for grandma to provide evening feedback
### Key Rules for Plan Generation
- Weekday plans MUST include 早教班 (9:00-12:00) with preparation time at 8:30
- Weekend plans should suggest family activities, outdoor exploration, or rest
- All meal suggestions should use seasonal, locally available ingredients for Harbin
- Dress recommendations must account for Harbin's extreme indoor-outdoor temperature difference
- Activity suggestions must be age-appropriate for a 2.5-year-old
- Keep instructions concise and actionable — grandparents should be able to follow without confusion
- Extreme weather (below -20°C, heavy snow, strong wind) → prioritize indoor activities
## Workflow 2: Feedback Logging
**Trigger**: User provides feedback about TangYuan's day, typically in the evening. Examples: "今天汤圆吃了两碗饭,学了新歌,玩得很开心", "姥姥反馈:汤圆今天有点闹", etc.
### Steps
1. **Parse the feedback content**
- Extract information from the user's natural language input into structured categories:
- `meals`: What and how much TangYuan ate, appetite level
- `mood`: Emotional state throughout the day (happy, cranky, clingy, etc.)
- `activities`: What activities/games were played
- `learning`: What was learned at 早教班 or at home
- `health`: Physical condition (normal, runny nose, cough, fever, etc.)
- `sleep`: Nap duration and quality, bedtime
- `notes`: Any special events or observations
2. **Confirm the structured data with the user**
- Present the parsed data back to the user for confirmation
- Ask if anything needs to be added or corrected
- Keep this step brief — the user (mom) may be tired
3. **Write to the log file**
- Determine today's date
- Run the log manager script:
```bash
python scripts/log_manager.py append --date {today_date} --data '{json_data}'
```
- Confirm successful logging to the user
4. **Provide brief analysis**
- Give a short, warm summary of TangYuan's day
- Note any concerns that will influence tomorrow's plan
- Example: "汤圆今天胃口一般,明天计划会调整饮食,加一些开胃的食物哦~"
### Key Rules for Feedback Logging
- Accept casual, conversational input — do not require structured format from grandma
- Parse generously — extract as much useful information as possible from natural language
- If feedback is very brief, still record it; do not demand more detail
- Always respond warmly and appreciatively to encourage continued daily feedback
- Flag any health concerns (fever, persistent cough, refusal to eat) for parent attention
## Workflow 3: Weekly Report Generation
**Trigger**: User says "生成周报", "本周总结", "育儿报告", or it's Sunday evening.
### Steps
1. **Collect the week's log data**
- Run the log manager script to get the weekly summary:
```bash
python scripts/log_manager.py summarize_week --date {today_date}
```
2. **Search for latest parenting knowledge**
- Use web_search to find recent parenting tips and news:
- Search: "2-3岁幼儿育儿经验 {current_year}"
- Search: "幼儿早教最新研究 {current_year}"
- Search: "近期幼儿相关社会新闻"
- Extract 2-3 most relevant and valuable pieces of information
- Verify information comes from reputable sources
3. **Analyze the week's data**
- Review all daily logs for patterns and trends
- Assess across dimensions: diet, sleep, learning, mood, health
- Identify highlights and concerns
- Compare with previous weeks if data is available
4. **Generate the weekly report**
- Use `assets/weekly_report_template.md` as the structural template
- Fill in all sections with analysis results
- Include specific data points from logs
- Incorporate relevant new parenting knowledge found in Step 2
- Provide actionable suggestions for the coming week
5. **Propose next week's plan adjustments**
- Based on the week's patterns, suggest specific changes:
- Diet adjustments (if appetite issues detected)
- Activity modifications (if certain activities were particularly engaging or rejected)
- Sleep schedule tweaks (if sleep problems noted)
- New activities to try based on latest parenting research
- Present these as suggestions, not mandates
6. **Save and present the report**
- Output the complete report in clean Markdown format
- Summarize the key takeaways at the top for busy parents
### Key Rules for Weekly Report
- Be data-driven — reference specific log entries
- Balance honesty with encouragement — note concerns but celebrate progress
- Keep the new knowledge section relevant to TangYuan's age (2-3 years)
- Make next-week suggestions specific and actionable
- The report serves as a communication bridge between parents and grandparents
## Workflow 4: Knowledge Update
**Trigger**: User says "更新知识", "查找育儿资讯", "学习育儿新知", or as part of weekly report generation.
### Steps
1. **Search for latest parenting information**
- Use web_search with targeted queries:
- "2-3岁幼儿科学育儿最新研究 {current_year}"
- "幼儿早期教育新方法 {current_year}"
- "儿童营养健康最新指南"
- "幼儿社会新闻 近期"
- Focus on reputable sources (pediatric journals, government health sites, established parenting platforms)
2. **Evaluate and filter results**
- Prioritize information that is:
- Relevant to TangYuan's age group (2-3 years)
- Scientifically backed (not folk remedies or commercial promotion)
- Practical and actionable for the caregiving context
- Seasonally appropriate for Harbin
3. **Present findings**
- Summarize 3-5 key findings in clear, concise language
- For each finding, note:
- The source
- The key takeaway
- How it can be applied to TangYuan's care
- Highlight any important safety alerts or health advisories
4. **Suggest plan updates**
- Based on new knowledge, recommend specific changes to daily plans
- Examples: new food to introduce, new activity to try, updated safety precaution
## Workflow 5: Log Retrieval
**Trigger**: User asks to view past logs or history.
### Steps
1. **Determine the date range**
- Parse the user's request for specific dates or ranges
- Default to the last 7 days if not specified
2. **Retrieve logs**
- For a specific date:
```bash
python scripts/log_manager.py read --date {target_date}
```
- For a week:
```bash
python scripts/log_manager.py read_week --date {target_date}
```
- For a list of recent logs:
```bash
python scripts/log_manager.py list
```
3. **Present the information**
- Display logs in chronological order
- Highlight any notable patterns or events
## Resources
### scripts/
- **`log_manager.py`**: Core logging utility for TangYuan's daily logs. Supports commands: `append` (write feedback), `read` (single date), `read_week` (week range), `summarize_week` (weekly summary), `list` (recent logs). Logs are stored as Markdown files organized by date at `tangyuan-logs/YYYY/MM/DD.md` in the current workspace.
### references/
- **`parenting_guide.md`**: Comprehensive scientific parenting guide for 2-3 year olds covering nutrition, sleep, early education, safety, emotional management, hygiene, and disease prevention. Load this when generating daily plans or answering parenting questions.
- **`tangyuan_profile.md`**: TangYuan's personal profile including basic info, family situation, early education schedule (Mon-Fri 9:00-12:00), dietary preferences, and health records. Load this when personalizing plans or reports. This file should be updated as new information is learned from logs.
- **`harbin_seasonal_guide.md`**: Season-specific parenting guide for Harbin covering clothing recommendations, seasonal foods, outdoor activity suggestions, and health precautions for spring, summer, autumn, and winter. Load the relevant season's section when generating daily plans.
### assets/
- **`daily_plan_template.md`**: Template for the daily parenting plan with time-based schedule, meal plans, activity suggestions, and reminder sections. Use this as the structural foundation when generating each day's plan.
- **`weekly_report_template.md`**: Template for the weekly parenting report with sections for data summary, analysis across multiple dimensions, latest parenting knowledge, and next-week plan adjustments.
## Important Notes
- All output must be in **simplified Chinese** (简体中文), using warm, friendly language
- Plans and reports should be practical and concise — the primary executor (姥姥) is an elderly person
- Respect traditional childcare wisdom while gently introducing scientific practices
- When in doubt about health issues, always recommend consulting a doctor
- The log directory (`tangyuan-logs/`) is created automatically in the current workspace
- If weather data is unavailable, fall back to seasonal defaults rather than skipping clothing advice
FILE:scripts/log_manager.py
#!/usr/bin/env python3
"""
汤圆育儿日志管理器
功能:
- append_log: 将姥姥的每日反馈追加到对应日期的日志文件中
- read_log: 读取指定日期的日志
- read_week_logs: 读取指定一周范围内的所有日志
- summarize_week: 汇总一周日志生成结构化摘要
日志存储路径: {base_dir}/tangyuan-logs/YYYY/MM/DD.md
用法:
python log_manager.py append --date 2026-03-19 --data '{"meals":"吃了两碗饭","mood":"开心","activities":"画画、搭积木","learning":"学了3个新词","health":"正常","notes":"今天特别喜欢画画"}'
python log_manager.py read --date 2026-03-19
python log_manager.py read_week --date 2026-03-19
python log_manager.py summarize_week --date 2026-03-19
"""
import sys
import os
import json
import argparse
from datetime import datetime, timedelta
from pathlib import Path
def get_log_dir(base_dir=None):
"""获取日志根目录"""
if base_dir is None:
base_dir = os.environ.get("TANGYUAN_LOG_DIR", os.getcwd())
return Path(base_dir) / "tangyuan-logs"
def get_log_path(date_str, base_dir=None):
"""获取指定日期的日志文件路径"""
date = datetime.strptime(date_str, "%Y-%m-%d")
log_dir = get_log_dir(base_dir)
return log_dir / str(date.year) / f"{date.month:02d}" / f"{date.day:02d}.md"
def append_log(date_str, data, base_dir=None):
"""
将反馈内容追加到指定日期的日志文件中。
参数:
date_str: 日期字符串,格式 YYYY-MM-DD
data: dict,包含以下字段:
- meals: 饮食情况
- mood: 情绪状态
- activities: 活动内容
- learning: 学习内容
- health: 身体状况
- sleep: 睡眠情况(可选)
- notes: 其他备注(可选)
base_dir: 日志根目录(可选)
"""
log_path = get_log_path(date_str, base_dir)
# 自动创建目录
log_path.parent.mkdir(parents=True, exist_ok=True)
# 获取当前时间作为记录时间
now = datetime.now().strftime("%H:%M")
date_display = datetime.strptime(date_str, "%Y-%m-%d").strftime("%Y年%m月%d日")
weekday_names = ["周一", "周二", "周三", "周四", "周五", "周六", "周日"]
weekday = weekday_names[datetime.strptime(date_str, "%Y-%m-%d").weekday()]
# 判断文件是否已存在
is_new = not log_path.exists()
with open(log_path, "a", encoding="utf-8") as f:
if is_new:
f.write(f"# 汤圆日志 - {date_display}({weekday})\n\n")
f.write(f"## 反馈记录({now})\n\n")
if isinstance(data, str):
try:
data = json.loads(data)
except json.JSONDecodeError:
# 如果不是 JSON,作为纯文本记录
f.write(f"{data}\n\n")
print(f"✅ 已记录反馈到 {log_path}")
return str(log_path)
fields = [
("meals", "🍚 饮食情况"),
("mood", "😊 情绪状态"),
("activities", "🎮 活动内容"),
("learning", "📚 学习内容"),
("health", "💪 身体状况"),
("sleep", "😴 睡眠情况"),
("notes", "📝 其他备注"),
]
for key, label in fields:
value = data.get(key, "")
if value:
f.write(f"### {label}\n{value}\n\n")
f.write("---\n\n")
print(f"✅ 已记录反馈到 {log_path}")
return str(log_path)
def read_log(date_str, base_dir=None):
"""
读取指定日期的日志内容。
参数:
date_str: 日期字符串,格式 YYYY-MM-DD
base_dir: 日志根目录(可选)
返回:
日志内容字符串,如果不存在返回提示信息
"""
log_path = get_log_path(date_str, base_dir)
if not log_path.exists():
return f"📭 {date_str} 暂无日志记录"
with open(log_path, "r", encoding="utf-8") as f:
content = f.read()
return content
def read_week_logs(date_str, base_dir=None):
"""
读取包含指定日期在内的一周(周一到周日)的所有日志。
参数:
date_str: 日期字符串,格式 YYYY-MM-DD(该日期所在周的日志)
base_dir: 日志根目录(可选)
返回:
dict,键为日期字符串,值为日志内容
"""
date = datetime.strptime(date_str, "%Y-%m-%d")
# 找到本周一
monday = date - timedelta(days=date.weekday())
week_logs = {}
for i in range(7):
day = monday + timedelta(days=i)
day_str = day.strftime("%Y-%m-%d")
content = read_log(day_str, base_dir)
week_logs[day_str] = content
return week_logs
def summarize_week(date_str, base_dir=None):
"""
汇总一周日志,生成结构化摘要。
参数:
date_str: 日期字符串,格式 YYYY-MM-DD(该日期所在周)
base_dir: 日志根目录(可选)
返回:
周汇总的 Markdown 字符串
"""
week_logs = read_week_logs(date_str, base_dir)
date = datetime.strptime(date_str, "%Y-%m-%d")
monday = date - timedelta(days=date.weekday())
sunday = monday + timedelta(days=6)
monday_str = monday.strftime("%Y年%m月%d日")
sunday_str = sunday.strftime("%Y年%m月%d日")
summary = f"# 汤圆周报数据汇总({monday_str} - {sunday_str})\n\n"
# 统计有日志的天数
logged_days = 0
for day_str, content in week_logs.items():
if "暂无日志记录" not in content:
logged_days += 1
summary += f"## 概况\n\n"
summary += f"- 本周共有 **{logged_days}/7** 天有反馈记录\n\n"
# 逐日列出
summary += f"## 每日记录\n\n"
weekday_names = ["周一", "周二", "周三", "周四", "周五", "周六", "周日"]
for i, (day_str, content) in enumerate(week_logs.items()):
summary += f"### {weekday_names[i]}({day_str})\n\n"
if "暂无日志记录" not in content:
# 去掉一级标题,只保留内容
lines = content.split("\n")
filtered = [line for line in lines if not line.startswith("# ")]
summary += "\n".join(filtered).strip() + "\n\n"
else:
summary += "暂无记录\n\n"
summary += "---\n\n"
summary += "*以上数据供周报生成使用,请结合分析给出综合评估和建议。*\n"
return summary
def list_logs(base_dir=None, limit=30):
"""
列出最近的日志文件。
参数:
base_dir: 日志根目录(可选)
limit: 返回最多多少条记录
返回:
日志文件路径列表
"""
log_dir = get_log_dir(base_dir)
if not log_dir.exists():
return []
log_files = sorted(log_dir.rglob("*.md"), reverse=True)
return [str(f) for f in log_files[:limit]]
def main():
parser = argparse.ArgumentParser(description="汤圆育儿日志管理器")
subparsers = parser.add_subparsers(dest="command", help="可用命令")
# append 命令
append_parser = subparsers.add_parser("append", help="追加日志记录")
append_parser.add_argument("--date", required=True, help="日期 (YYYY-MM-DD)")
append_parser.add_argument("--data", required=True, help="反馈数据 (JSON字符串)")
append_parser.add_argument("--base-dir", help="日志根目录")
# read 命令
read_parser = subparsers.add_parser("read", help="读取指定日期日志")
read_parser.add_argument("--date", required=True, help="日期 (YYYY-MM-DD)")
read_parser.add_argument("--base-dir", help="日志根目录")
# read_week 命令
week_parser = subparsers.add_parser("read_week", help="读取一周日志")
week_parser.add_argument("--date", required=True, help="日期 (YYYY-MM-DD)")
week_parser.add_argument("--base-dir", help="日志根目录")
# summarize_week 命令
summary_parser = subparsers.add_parser("summarize_week", help="生成周汇总")
summary_parser.add_argument("--date", required=True, help="日期 (YYYY-MM-DD)")
summary_parser.add_argument("--base-dir", help="日志根目录")
# list 命令
list_parser = subparsers.add_parser("list", help="列出最近的日志")
list_parser.add_argument("--limit", type=int, default=30, help="最多返回条数")
list_parser.add_argument("--base-dir", help="日志根目录")
args = parser.parse_args()
if args.command == "append":
result = append_log(args.date, args.data, args.base_dir)
print(f"日志已保存: {result}")
elif args.command == "read":
content = read_log(args.date, args.base_dir)
print(content)
elif args.command == "read_week":
logs = read_week_logs(args.date, args.base_dir)
for day, content in logs.items():
print(f"\n{'='*40}")
print(f"📅 {day}")
print(f"{'='*40}")
print(content)
elif args.command == "summarize_week":
summary = summarize_week(args.date, args.base_dir)
print(summary)
elif args.command == "list":
files = list_logs(args.base_dir, args.limit)
if files:
print("最近的日志文件:")
for f in files:
print(f" 📄 {f}")
else:
print("暂无日志记录")
else:
parser.print_help()
if __name__ == "__main__":
main()
FILE:references/harbin_seasonal_guide.md
# 哈尔滨季节性育儿指南
## 哈尔滨气候概况
哈尔滨属于中温带大陆性季风气候,四季分明,冬季漫长严寒,夏季短暂温热。
| 季节 | 月份 | 平均气温 | 特点 |
|------|------|----------|------|
| 春季 | 3-5月 | -5°C ~ 18°C | 干燥多风,温差大,回暖缓慢 |
| 夏季 | 6-8月 | 18°C ~ 28°C | 温热湿润,偶有高温,蚊虫多 |
| 秋季 | 9-10月 | 5°C ~ 18°C | 凉爽干燥,降温迅速 |
| 冬季 | 11-2月 | -25°C ~ -5°C | 严寒漫长,有冰雪活动 |
## 春季(3-5月)
### 穿衣指南
- **3月初**:仍是冬装为主,厚棉衣/羽绒服 + 保暖内衣 + 毛衣
- **3月中下旬**:可逐渐减薄,但早晚仍需厚外套
- **4月**:薄棉衣/夹克 + 内搭卫衣/毛衣,随时备外套
- **5月**:长袖T恤/薄外套,早晚加件外套
- **核心原则**:"春捂"不急着减衣,宁可穿多一件
- **室内外温差**:注意进出室内及时增减衣物
### 饮食建议
- 时令食材:菠菜、春笋、荠菜、韭菜、草莓
- 多喝温水,预防春燥
- 适当补充维生素C,增强抵抗力
- 注意过敏季节,观察有无花粉过敏反应
### 户外活动
- 3月:室内活动为主,天气好时短时外出(15-30分钟)
- 4-5月:逐渐增加户外时间(1-2小时/天)
- 推荐:公园散步、放风筝、观察花草发芽、踏春
- 注意风大时减少外出,防风保暖
### 健康提醒
- 流感高发期,勤洗手,少去人多场所
- 手足口病预防(勤洗手、常通风)
- 过敏体质注意花粉、柳絮
- 春季传染病多发,注意卫生
## 夏季(6-8月)
### 穿衣指南
- 短袖T恤/连衣裙 + 薄外套(空调房用)
- 透气吸汗的纯棉面料
- 外出戴遮阳帽,涂防晒霜(儿童专用SPF30+)
- 室内空调温度不低于26°C,注意空调风不直吹
- 准备一件薄长袖(进入超市、商场备用)
### 饮食建议
- 时令食材:西瓜、黄瓜、番茄、玉米、桃子、蓝莓
- 多补充水分,可吃清淡消暑汤品
- 注意食物保鲜,预防肠胃炎
- 冰冷食物适量,不宜过多
- 哈尔滨夏季特色:可适当吃马迭尔冰棍(少量)
### 户外活动
- 避开11:00-15:00高温时段外出
- 早晚户外活动:散步、玩水、沙池
- 太阳帽、防蚊液必备
- 推荐:太阳岛公园、儿童水上乐园、小区花园
- 每次户外30-60分钟,注意补水
### 健康提醒
- 防蚊虫叮咬(纱窗、蚊帐、驱蚊液)
- 预防中暑,注意补水
- 肠胃炎高发,注意饮食卫生
- 空调病预防(温差不宜过大)
## 秋季(9-10月)
### 穿衣指南
- **9月**:长袖T恤 + 薄外套/卫衣
- **10月**:厚外套/薄棉衣 + 内搭,逐渐向冬装过渡
- **核心原则**:"秋冻"适度,不急着穿太厚
- 早晚温差大,洋葱式穿衣法(多层叠穿,方便增减)
### 饮食建议
- 时令食材:苹果、梨、葡萄、南瓜、红薯、山药
- 多喝水,预防秋燥
- 适当增加温热食物(粥、汤)
- 润肺食材:银耳、百合、雪梨
### 户外活动
- 黄金户外期,适合长时间户外活动
- 推荐:公园赏秋叶、捡松果、户外骑车/滑板车
- 9月天气宜人,每天户外1-2小时
- 10月气温下降,注意保暖,缩短户外时间
### 健康提醒
- 秋季腹泻(轮状病毒)高发期
- 呼吸道感染增多
- 注意保暖,预防感冒
- 室内湿度维持40-60%
## 冬季(11-2月)
### 穿衣指南
- **室外**:
- 上身:保暖内衣 + 毛衣/抓绒 + 厚羽绒服
- 下身:保暖裤 + 棉裤/羽绒裤
- 配件:帽子、围巾、手套、口罩(全副武装)
- 鞋子:保暖防滑雪地靴
- **室内**:
- 哈尔滨有集中供暖(室内20-24°C),穿春秋装即可
- 注意进出门及时增减衣物
- 室内穿袜子,地板凉
- **关键提醒**:
- 皮肤护理:涂抹护肤霜防干裂,嘴唇涂润唇膏
- 极寒天气(-20°C以下)减少外出
- 外出不超过15-20分钟
- 注意防冻伤(耳朵、手指、脚趾)
### 饮食建议
- 时令食材:白菜、土豆、胡萝卜、粉条、冻梨、冻柿子
- 增加热量摄入,多喝温热粥汤
- 东北特色营养食材:松子、核桃(磨碎入食)
- 补充维生素D(日照不足时期)
- 多吃富含维生素C的水果
### 户外活动
- 极寒天气以室内活动为主
- 温度>-10°C时可短暂外出(15-30分钟)
- 推荐室内活动:积木搭建、绘画、亲子阅读、室内运动游戏
- 适龄冰雪活动:看冰灯(穿暖和)、堆雪人(大人陪伴)
- 室内保持运动量:跳舞、体操、室内滑滑梯
### 健康提醒
- 流感和肺炎高发期,必要时接种流感疫苗
- 室内外温差大,注意增减衣物
- 室内供暖干燥,使用加湿器(湿度40-60%)
- 开窗通风每天2-3次,每次15分钟
- 注意防冻伤,发现皮肤发红发白立即回室内
## 节假日与特殊日期提醒
### 哈尔滨特色节日
- **冰雪大世界**(12月-2月):可带娃简短参观,注意保暖
- **元宵节**(正月十五):看花灯、吃汤圆
- **端午节**:包粽子、系五彩绳
### 全国性节假日
- 根据节假日调整计划,安排亲子活动
- 注意节假日人流量,选择合适的出行时间
- 长假期间维持基本作息规律
## 极端天气应对
### 暴雪天气
- 不外出,室内活动
- 储备食物和药品
- 保持室内通风
### 极寒天气(-25°C以下)
- 减少外出至必要最少
- 外出全副保暖装备
- 关注幼儿冻伤症状
### 大风天气(5级以上)
- 不外出
- 关好门窗
- 室内活动替代
FILE:references/parenting_guide.md
# 2-3岁幼儿科学育儿指南
## 一、营养饮食
### 每日膳食结构
- **三餐两点**:早餐、午餐、晚餐 + 上午加餐(10:00)+ 下午加餐(15:00)
- **奶量**:每日400-500ml奶制品(可含酸奶、奶酪)
- **谷物**:每日100-150g(米饭、面条、馒头、粥等轮换)
- **蔬菜**:每日150-200g(深色蔬菜占一半以上)
- **水果**:每日100-200g(时令水果为主)
- **肉蛋**:每日肉类50-75g + 鸡蛋1个
- **水**:每日600-800ml白开水
### 饮食原则
- 口味清淡,少盐少糖少油
- 食物种类多样化,每周不少于25种食材
- 注意食物质地逐渐过渡,鼓励咀嚼
- 培养自主进食能力,允许适度"脏乱"
- 固定就餐时间和地点,每餐不超过30分钟
- 不强迫进食,尊重饱腹信号
### 禁忌与注意
- 避免:整颗坚果、果冻、大块硬质食物(噎呛风险)
- 限制:蜂蜜(已满1岁可少量)、加工食品、碳酸饮料、过咸过甜食物
- 过敏食物需记录并避免
- 新食物引入采用少量多次原则
### 常见饮食问题应对
- **食欲不振**:不强迫,减少零食,增加户外活动,检查是否生病
- **挑食偏食**:多次尝试(至少15次),变换烹饪方式,大人以身作则
- **积食**:清淡饮食1-2天,适当按摩腹部,增加活动量
## 二、作息规律
### 推荐作息时间表
- 7:00-7:30 起床
- 7:30-8:00 早餐
- 8:00-8:30 晨间自由活动
- 8:30-9:00 出门准备(如有早教)
- 9:00-12:00 早教/上午活动
- 12:00-12:30 午餐
- 12:30-13:00 餐后散步/安静活动
- 13:00-15:00 午睡(1.5-2小时)
- 15:00-15:30 起床+下午加餐
- 15:30-17:30 下午活动(户外为主)
- 17:30-18:00 晚餐
- 18:00-19:30 晚间活动(安静为主)
- 19:30-20:00 洗澡+睡前流程
- 20:00-20:30 睡前故事/亲子时光
- 20:30 入睡
### 睡眠建议
- **总睡眠时长**:11-14小时/天(含午睡)
- **夜间睡眠**:10-11小时
- **午睡**:1-2.5小时
- 固定睡前流程(洗澡→换睡衣→刷牙→故事→入睡)
- 睡前30分钟避免剧烈活动和电子屏幕
- 卧室保持安静、适度黑暗、适宜温度(20-22°C)
## 三、早期教育
### 2-3岁发育里程碑
- **语言**:能说2-3个词的短句,词汇量200-1000词
- **认知**:能分辨颜色、形状,简单数数(1-5)
- **运动**:能跑、跳、爬楼梯、踢球
- **精细动作**:能用勺子吃饭、搭积木、涂鸦
- **社交**:开始平行游戏,能表达基本情绪
### 适龄早教活动
- **语言启蒙**:亲子阅读(每天15-30分钟)、儿歌、看图说话、角色扮演
- **认知发展**:颜色分类、形状配对、简单拼图(4-12片)、数数游戏
- **精细运动**:涂鸦画画、撕纸/剪纸、穿珠子、搭积木
- **大运动**:跑跳游戏、球类活动、平衡训练、舞蹈律动
- **艺术感知**:音乐欣赏、简单手工、玩沙玩水、自然观察
- **社交情感**:角色扮演游戏、分享练习、情绪命名和表达
### 教育原则
- 以游戏为主要学习方式,寓教于乐
- 每次活动时间15-20分钟,注意力有限正常
- 鼓励探索,允许犯错,给予正面反馈
- 避免过度刺激和"填鸭式"教育
- 电子屏幕每天不超过1小时,需有陪伴
## 四、安全须知
### 居家安全
- 插座盖、桌角防撞条、抽屉安全锁
- 药品、清洁剂等存放高处并上锁
- 厨房、卫生间注意防滑
- 窗户安装安全锁或防护栏
- 小物件(纽扣、硬币等)放在儿童触及不到处
### 户外安全
- 外出必须有成人看护,不离手
- 交通安全教育(红绿灯、斑马线)
- 游乐设施选择适龄项目
- 冬季注意防滑、防冻伤
- 夏季注意防晒、防蚊虫
### 急救常识
- 噎呛:海姆立克急救法
- 烫伤:冲→脱→泡→盖→送
- 跌倒:观察意识、出血、肿胀,必要时就医
## 五、情绪管理
### 2-3岁情绪特点
- "Terrible Twos"时期,情绪波动大是正常的
- 自我意识增强,常说"不",争取自主权
- 分离焦虑可能仍然存在
- 开始出现共情能力的萌芽
### 应对策略
- **接纳情绪**:所有情绪都是合理的,帮助孩子命名情绪
- **设立边界**:温和而坚定,给予有限选择("你想先穿鞋还是先穿外套?")
- **转移注意力**:对小龄幼儿,转移注意力比讲道理更有效
- **共情表达**:"我知道你很难过/生气,因为..."
- **正面引导**:表扬具体行为而非笼统夸奖("你把积木摆得很整齐"而非"你真棒")
- **避免**:大声吼叫、体罚、冷暴力、过度讲道理
## 六、卫生习惯
### 日常卫生
- 饭前便后洗手(七步洗手法)
- 早晚刷牙(家长协助,使用含氟儿童牙膏,米粒大小用量)
- 每日洗澡或擦身
- 勤换衣物,保持清洁
### 如厕训练
- 2-3岁是如厕训练关键期
- 观察准备信号:能表达便意、对马桶感兴趣、能保持2小时干燥
- 不强迫、不惩罚,给予鼓励
- 白天先训练,夜间晚些脱尿不湿
- 准备儿童马桶或马桶圈
## 七、常见疾病预防
### 季节性疾病
- **春季**:过敏、手足口病、流感
- **夏季**:中暑、肠胃炎、蚊虫叮咬
- **秋季**:秋季腹泻(轮状病毒)、呼吸道感染
- **冬季**:流感、肺炎、冻伤
### 预防措施
- 按时接种疫苗
- 勤洗手,少去人多密闭场所(流感高发期)
- 均衡营养,充足睡眠,增强免疫力
- 适量户外活动,但注意天气变化
- 室内保持通风和适宜湿度(40-60%)
FILE:references/tangyuan_profile.md
# 汤圆的个人档案
## 基本信息
- **姓名**:汤圆(小名)
- **性别**:女
- **年龄**:2岁半(根据当前日期动态计算)
- **所在地**:黑龙江省哈尔滨市
## 家庭情况
- **爸爸妈妈**:在北京工作,远程关心汤圆的成长
- **日常照顾人**:姥姥、姥爷(在哈尔滨)
- **沟通方式**:妈妈每天早上推送育儿计划,姥姥每天晚上反馈汤圆的日常情况
## 日常安排
### 早教班
- **时间**:每周一至周五,9:00-12:00
- **内容**:由早教机构安排(包含认知、语言、运动、社交等综合课程)
- **注意事项**:
- 早上8:30前需要出门准备
- 根据天气情况准备合适的外出衣物
- 书包需带水杯、换洗衣物、小零食
### 周末安排
- 周六、周日不上早教班
- 以家庭活动为主:户外散步、公园玩耍、亲子游戏等
- 可安排兴趣探索活动
## 饮食偏好
> 注意:此信息应根据日志反馈持续更新
- **喜欢的食物**:待姥姥反馈后更新
- **不喜欢的食物**:待姥姥反馈后更新
- **过敏信息**:暂无已知过敏(如发现过敏请及时记录)
- **饮食习惯**:待观察记录
## 健康状况
> 注意:此信息应根据日志反馈持续更新
- **身高体重**:待更新
- **疫苗接种**:请按照国家免疫规划按时接种
- **既往病史**:暂无特殊记录
- **目前健康状态**:正常
## 发育观察
> 注意:此信息应根据日志反馈和周报分析持续更新
### 语言发展
- 待观察记录
### 运动发展
- 待观察记录
### 认知发展
- 待观察记录
### 社交情感
- 待观察记录
## 特殊提醒
- 哈尔滨冬季严寒,外出需做好充分保暖
- 姥姥姥爷照顾,计划应尽量简洁易执行
- 尊重老人的育儿经验,以科学建议为辅助
- 任何健康异常应及时就医并通知父母
FILE:assets/daily_plan_template.md
# 🌟 汤圆今日计划 - {date}({weekday})
> 📍 哈尔滨 | 🌡️ {weather} | 👗 {dress_suggestion}
---
## ⏰ 今日时间表
### 🌅 早晨(7:00-9:00)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 7:00 | 起床、穿衣 | {morning_dress} |
| 7:15 | 洗漱 | 协助刷牙(米粒大小含氟牙膏) |
| 7:30 | **早餐** | {breakfast} |
| 8:00 | 晨间活动 | {morning_activity} |
| 8:30 | 出门准备 | {go_out_prep} |
### 🏫 上午(9:00-12:00)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 9:00-12:00 | {morning_main} | {morning_notes} |
| 10:00 | 上午加餐 | {morning_snack} |
### 🍚 午间(12:00-13:00)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 12:00 | **午餐** | {lunch} |
| 12:30 | 餐后活动 | 散步或安静玩耍,不剧烈运动 |
### 😴 午休(13:00-15:00)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 13:00 | 午睡 | 保持安静环境,1.5-2小时 |
| 15:00 | 起床+加餐 | {afternoon_snack} |
### 🎨 下午(15:00-17:30)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 15:30 | {afternoon_activity_1} | {afternoon_notes_1} |
| 16:30 | {afternoon_activity_2} | {afternoon_notes_2} |
### 🍽️ 傍晚(17:30-19:30)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 17:30 | **晚餐** | {dinner} |
| 18:00 | 晚间活动 | {evening_activity} |
| 19:00 | 亲子时光 | {family_time} |
### 🌙 睡前(19:30-20:30)
| 时间 | 内容 | 注意事项 |
|------|------|----------|
| 19:30 | 洗澡 | 水温38°C左右,注意保暖 |
| 20:00 | 睡前故事 | {bedtime_story} |
| 20:30 | 入睡 | 保持卧室安静、适度黑暗 |
---
## 🍽️ 今日食谱
| 餐次 | 推荐菜单 | 营养要点 |
|------|----------|----------|
| 早餐 | {breakfast_detail} | {breakfast_nutrition} |
| 上午加餐 | {morning_snack_detail} | 补充能量 |
| 午餐 | {lunch_detail} | {lunch_nutrition} |
| 下午加餐 | {afternoon_snack_detail} | 水果+奶制品 |
| 晚餐 | {dinner_detail} | {dinner_nutrition} |
💧 全天饮水提醒:约600-800ml白开水,分多次饮用
---
## 📋 今日重点提醒
{special_reminders}
---
## 💬 给姥姥姥爷的话
{message_to_grandparents}
---
> 💡 今晚方便时,请简单反馈一下汤圆今天的情况哦~(吃的怎么样、学了什么、玩得开不开心、身体怎么样)
FILE:assets/weekly_report_template.md
# 📊 汤圆周报 - {week_range}
> 本报告基于姥姥每日反馈和科学育儿知识综合生成
---
## 📋 一周总览
| 指标 | 本周情况 | 评估 |
|------|----------|------|
| 反馈记录天数 | {logged_days}/7 | {log_assessment} |
| 整体食欲 | {appetite_summary} | {appetite_emoji} |
| 睡眠质量 | {sleep_summary} | {sleep_emoji} |
| 情绪状态 | {mood_summary} | {mood_emoji} |
| 身体健康 | {health_summary} | {health_emoji} |
---
## 🍚 饮食分析
### 本周饮食概况
{diet_overview}
### 饮食建议
{diet_suggestions}
---
## 😴 睡眠分析
### 本周睡眠概况
{sleep_overview}
### 睡眠建议
{sleep_suggestions}
---
## 📚 学习与发展
### 本周学习内容
{learning_overview}
### 发育观察
{development_notes}
### 下周学习建议
{learning_suggestions}
---
## 🎮 活动与游戏
### 本周活动回顾
{activity_overview}
### 下周活动建议
{activity_suggestions}
---
## 😊 情绪与社交
### 本周情绪表现
{emotion_overview}
### 社交发展观察
{social_notes}
---
## 🌟 本周亮点
{weekly_highlights}
---
## 🔬 育儿新知
> 以下内容来源于本周搜索到的最新育儿研究和资讯
### 育儿经验分享
{parenting_tips}
### 幼儿相关社会议题
{social_topics}
### 科学育儿建议
{science_advice}
---
## 📝 下周计划调整
基于本周反馈和最新育儿知识,下周计划做如下调整:
{next_week_adjustments}
---
## 💬 爸爸妈妈寄语
{parents_message}
---
> 📅 下次周报将于{next_report_date}生成
> 💡 如有特殊情况或调整需求,随时告诉我哦~