ProClaw Parent Child Relation Model(顶级亲子关系模型)

PassAudited by ClawScan on May 3, 2026.

Overview

The provided artifacts look like a benign parenting support skill; the main things to notice are optional local report files and potentially private child/family records.

This skill appears safe to install from the provided artifacts, with no evidence of hidden network calls, credential handling, or background persistence. Treat any filled-in assessments, daily records, or generated plans as private family data, and review the Python scripts before running them or letting an agent write report files. For serious emotional, self-harm, violence, or clinical concerns, use this as supportive guidance only and seek qualified professional help.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the script is run with an output path, it can create or overwrite a local report file.

Why it was flagged

The diagnostic helper can write a generated report to a caller-supplied local path. This is expected for a report generator, but file writes should remain user-directed.

Skill content
parser.add_argument("--output", type=str, help="输出报告文件路径") ... with open(args.output, "w", encoding="utf-8") as f: f.write(report)
Recommendation

Run the helper only when you intend to use it, choose a safe output path, and have the agent ask before writing files.

What this means

Completed worksheets or generated reports may contain private information about a child, parent emotions, conflicts, and family dynamics.

Why it was flagged

The daily record template asks users to record identifying child details and sensitive family/relationship observations, which can become persistent private notes.

Skill content
| 孩子姓名 | __________ | ... | 孩子年龄 | __________ | ... 今日挑战 ... 当时反应 | 事后反思 |
Recommendation

Store completed records privately, avoid unnecessary identifying details, and do not share or upload them unless you explicitly choose to.