Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

parenting-growth-partner育儿成长伙伴

Agent Skill

parenting-growth-partner 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,970

周安装

125

GitHub Stars

公开资料未说明

下载量

1,040
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:parenting-growth-partner(育儿成长伙伴)
来源仓库:https://github.com/harrylabsj/parenting-growth-partner
安装命令:
openclaw skills install parenting-growth-partner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install parenting-growth-partner

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于人工智能伴侣提供基于证据的儿童发展评估、积极育儿指导等活动。
  • 通过 clawhub 安装,结合来源仓库和原始 README 核验具体用法,支持儿童发展分析。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前主要用于研究检索类任务,需配合具体育儿需求使用。

SKILL.md

Parenting Growth Partner / 育儿成长伙伴

Overview

Parenting Growth Partner is an AI-powered companion for parents and caregivers, providing evidence-based guidance on child development, positive parenting techniques, and age-appropriate activities. The skill helps parents navigate the challenges of raising children from infancy through preschool years.

育儿成长伙伴是一个为父母和照顾者提供基于科学证据的育儿指导的AI伴侣,涵盖儿童发展里程碑、正向管教技巧和适龄活动推荐。帮助父母应对从婴儿期到学龄前儿童的育儿挑战。

Core Features

1. Child Development Milestone Tracking

  • Assess developmental milestones across 6 domains: gross motor, fine motor, language, cognitive, social-emotional, adaptive
  • Identify potential red flags based on age
  • Generate personalized recommendations

2. Age-Appropriate Activity Recommendations

  • Recommend developmentally appropriate activities
  • Filter by available time and preferred developmental domains
  • Include safety notes and step-by-step instructions

3. Positive Communication Guidance

  • Provide evidence-based techniques for common parenting scenarios
  • Offer age-appropriate communication scripts
  • Help prevent common communication mistakes

4. Behavior Analysis & Positive Discipline

  • Analyze behavior patterns and underlying causes
  • Recommend positive discipline techniques
  • Create customized behavior intervention plans

5. Daily Routine Suggestions

  • Suggest age-appropriate daily schedules
  • Provide tips for establishing healthy routines
  • Offer flexibility guidelines

Input/Output

Input Parameters

{
  "action": "milestone_assessment|activity_recommendation|communication_guidance|behavior_analysis|daily_routine",
  "params": {
    "age_months": 24,
    "observations": {"gross-motor": ["walks well", "can climb stairs"]},
    "available_time": 30,
    "preferred_domains": ["cognitive", "fine-motor"],
    "scenario": "tantrum|refusal|sharing|bedtime",
    "behavior_description": "经常说'不',拖延",
    "frequency": "occasional|frequent|constant",
    "context": "被要求做事时"
  }
}

Output Structure

{
  "success": true,
  "assessment": {...},
  "recommendations": [...],
  "summary": {...}
}

Handler Functions

handle_milestone_assessment(age_months, observations)

  • Purpose: Assess child's developmental progress
  • Parameters:

- age_months: Child's age in months (0-60) - observations: Optional dictionary of observed behaviors by domain

  • Returns: Assessment results with achieved milestones, upcoming milestones, and red flags

handle_activity_recommendation(age_months, available_time, preferred_domains)

  • Purpose: Recommend developmentally appropriate activities
  • Parameters:

- age_months: Child's age in months - available_time: Available time in minutes (default: 30) - preferred_domains: Optional list of developmental domains to focus on

  • Returns: List of suitable activities with details

handle_communication_guidance(scenario, child_age_months)

  • Purpose: Provide communication strategies for common parenting scenarios
  • Parameters:

- scenario: One of: tantrum, refusal, sharing, bedtime - child_age_months: Optional child's age for age-specific advice

  • Returns: Communication techniques, example scripts, and common mistakes to avoid

handle_behavior_analysis(behavior_description, frequency, context, child_age_months)

  • Purpose: Analyze behavior patterns and recommend positive discipline
  • Parameters:

- behavior_description: Description of the behavior - frequency: How often it occurs - context: When/where it happens - child_age_months: Optional child's age for age-appropriate strategies

  • Returns: Behavior analysis, possible patterns, and positive discipline plan

handle_daily_routine_suggestion(child_age_months)

  • Purpose: Suggest age-appropriate daily routines
  • Parameters:

- child_age_months: Child's age in months

  • Returns: Suggested routine schedule and implementation tips

Usage Examples

Example 1: Milestone Assessment

from handler import ParentingGrowthPartner

partner = ParentingGrowthPartner()
result = partner.handle_milestone_assessment(
    age_months=18,
    observations={"language": ["says mama", "understands no"]}
)
print(f"Development status: {result['assessment']['summary']['development_status']}")

Example 2: Activity Recommendation

result = partner.handle_activity_recommendation(
    age_months=30,
    available_time=20,
    preferred_domains=["fine-motor", "cognitive"]
)
for activity in result['recommendations']['recommended_activities'][:2]:
    print(f"- {activity['name']} ({activity['duration_minutes']} min)")

Example 3: Communication Guidance

result = partner.handle_communication_guidance(
    scenario="tantrum",
    child_age_months=24
)
for technique in result['guidance']['techniques']:
    print(f"Technique: {technique['name']}")
    print(f"Example: {technique['example_scripts']['effective']}")

Safety & Considerations

Developmental Variability

  • Children develop at different paces
  • Milestones are guidelines, not strict deadlines
  • Always consult professionals for concerns

Cultural Sensitivity

  • Parenting practices vary across cultures
  • Recommendations should be adapted to family values
  • Respect diverse parenting styles

Professional Consultation

  • This tool is for informational purposes only
  • Not a substitute for professional medical or psychological advice
  • Seek professional help for serious concerns

Data Sources & References

Developmental Milestones

  • Based on CDC Developmental Milestones
  • WHO Child Growth Standards
  • American Academy of Pediatrics guidelines

Positive Parenting Techniques

  • Positive Discipline (Jane Nelsen)
  • Conscious Parenting
  • Evidence-based parenting interventions

Activity Recommendations

  • Developmentally Appropriate Practice (NAEYC)
  • Montessori principles
  • Play-based learning research

Testing

Run self-test:

cd ~/.openclaw/skills/parenting-growth-partner
python3 handler.py

Expected output includes 5 test cases with success indicators.

File Structure

parenting-growth-partner/
├── SKILL.md              # This documentation
├── handler.py            # Main handler with self-test
├── skill.json           # Skill metadata
├── .claw/identity.json  # Identity configuration
├── engine/              # Core engines
│   ├── __init__.py
│   ├── milestones.py    # Milestone tracking engine
│   ├── activities.py    # Activity recommendation engine
│   ├── communication.py # Communication guidance engine
│   └── behavior.py      # Behavior analysis engine
└── scripts/
    └── test-handler.py  # Additional test scripts

Version History

  • v0.1.0: Initial release with 5 core features
  • v0.2.0: Planned: Sleep guidance, feeding advice, sibling rivalry

Support & Feedback

For issues or suggestions, please contact the skill maintainer.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.7%
按下载量换算891

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills