Install
openclaw skills install @protozoan-yuan/tangyuan-parentingThis 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 "早上好", "今天计划", "推送计划", "记录反馈", "今天汤圆", "姥姥反馈", "生成周报", "本周总结", "育儿报告", "更新知识", "查找育儿资讯".
openclaw skills install @protozoan-yuan/tangyuan-parentingThis 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.
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
Trigger: User says "早上好", "今天计划", "推送今日计划", or similar morning greeting.
Determine the current date and day of the week
Read yesterday's feedback log
python scripts/log_manager.py read --date {yesterday_date}
Query Harbin weather
references/harbin_seasonal_guide.mdLoad reference materials
references/tangyuan_profile.md for TangYuan's personal inforeferences/harbin_seasonal_guide.md for seasonal guidance matching current monthreferences/parenting_guide.md as needed for specific nutrition/activity guidanceGenerate the daily plan
assets/daily_plan_template.md as the structural templateEnd with feedback reminder
Trigger: User provides feedback about TangYuan's day, typically in the evening. Examples: "今天汤圆吃了两碗饭,学了新歌,玩得很开心", "姥姥反馈:汤圆今天有点闹", etc.
Parse the feedback content
meals: What and how much TangYuan ate, appetite levelmood: Emotional state throughout the day (happy, cranky, clingy, etc.)activities: What activities/games were playedlearning: What was learned at 早教班 or at homehealth: Physical condition (normal, runny nose, cough, fever, etc.)sleep: Nap duration and quality, bedtimenotes: Any special events or observationsConfirm the structured data with the user
Write to the log file
python scripts/log_manager.py append --date {today_date} --data '{json_data}'
Provide brief analysis
Trigger: User says "生成周报", "本周总结", "育儿报告", or it's Sunday evening.
Collect the week's log data
python scripts/log_manager.py summarize_week --date {today_date}
Search for latest parenting knowledge
Analyze the week's data
Generate the weekly report
assets/weekly_report_template.md as the structural templatePropose next week's plan adjustments
Save and present the report
Trigger: User says "更新知识", "查找育儿资讯", "学习育儿新知", or as part of weekly report generation.
Search for latest parenting information
Evaluate and filter results
Present findings
Suggest plan updates
Trigger: User asks to view past logs or history.
Determine the date range
Retrieve logs
python scripts/log_manager.py read --date {target_date}
python scripts/log_manager.py read_week --date {target_date}
python scripts/log_manager.py list
Present the information
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.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.
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.
tangyuan-logs/) is created automatically in the current workspace