Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/huifer/wellally-health/child-developmentgit clone --depth 1 https://github.com/huifer/WellAlly-healthWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00011 | $0.06015 |
| Opus 5 | $0.00005 | $0.03008 |
| Sonnet 5 | $0.00002 | $0.01203 |
| Haiku 4.5 | $0.00001 | $0.00602 |
Grade A, and why
child-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 750 lines — stays where its author put it; the contents beside it link to each section on GitHub.
儿童发育里程碑追踪
儿童发育里程碑追踪和评估,基于ASQ-3和Denver II标准,提供发育延迟预警。
操作类型
1. 记录发育评估 - record
记录儿童发育里程碑达成情况。
参数说明:
domain: 发育领域(可选,默认all)- gross: 大运动
- fine: 精细动作
- language: 语言
- social: 社交
- cognitive: 认知
- all: 全部
info: 发育信息(自然语言描述)
示例:
/child-development record
/child-development record gross
/child-development record 会坐 会爬 叫妈妈
执行步骤:
1. 读取儿童基础信息
从 data/profile.json 读取:
- 儿童姓名
- 出生日期
- 性别
- 是否早产
如果缺少,提示:
⚠️ 未找到儿童档案
请先设置儿童基础信息:
/profile child-name 小明
/profile child-birth-date 2020-01-01
/profile child-gender male
2. 计算年龄和月龄
birthDate = profile.child_birth_date
today = new Date()
ageMonths = (today - birthDate) / (30.44 * 24 * 60 * 60 * 1000)
// 早产儿矫正(<37周,矫正至2岁)
if gestational_age < 37 && ageMonths <= 24:
correctedAgeMonths = ageMonths - (40 - gestational_age) * 4
else:
correctedAgeMonths = ageMonths
3. 确定当前月龄的关键里程碑
根据计算出的月龄,查找对应的里程碑标准。
4. 生成评估问题
示例(6月龄评估):
请评估以下里程碑是否已达成(是/否):
📌 大运动(6月龄)
□ 能独坐片刻
□ 俯卧时能用手支撑
□ 能从仰卧翻到俯卧
📌 精细动作(6月龄)
□ 能伸手抓物
□ 能将物品从一只手转到另一只手
□ 能拇食指捏物
📌 语言(6月龄)
□ 能发出单音节(ma/ba等)
□ 对声音有反应
□ 能转向声源
📌 社交(6月龄)
□ 能认生
□ 会笑出声
□ 能表达高兴/生气
📌 认知(6月龄)
□ 能寻找掉落的物品
□ 能分辨熟人/陌生人
5. 生成评估报告
正常发育示例:
✅ 发育评估 - 正常
评估信息:
━━━━━━━━━━━━━━━━━━━━━━━━━━
儿童:小明
月龄:6个月
矫正月龄:6个月
评估日期:2025年7月1日
大运动发育:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 独坐:已达成(5月龄达成)
✅ 翻身:已达成(4月龄达成)
✅ 俯卧支撑:已达成
评估:正常 ✓
发育年龄:约6-7月龄
精细动作:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 伸手抓物:已达成
✅ 换手:已达成
⏳ 拇食指捏物:尚未达成(正常,约9月龄)
评估:正常 ✓
语言发育:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 单音节:已达成
✅ 对声音反应:已达成
✅ 转向声源:已达成
评估:正常 ✓
社交发育:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 认生:已达成
✅ 笑出声:已达成
✅ 表达情绪:已达成
评估:正常 ✓
认知发育:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 寻找物品:已达成
✅ 分辨熟人:已达成
评估:正常 ✓
综合评估:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 发育正常
各领域发育均在正常范围内,
未发现明显发育延迟。
建议:
━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ 继续观察和记录
✅ 提供丰富的环境刺激
✅ 多与孩子互动交流
✅ 定期进行发育评估
下次评估建议:
━━━━━━━━━━━━━━━━━━━━━━━━━━
9月龄时进行下一次评估
⚠️ 重要提示:
━━━━━━━━━━━━━━━━━━━━━━━━━━
本评估基于发育里程碑标准,
仅供参考,不能替代专业医疗诊断。
如对发育有疑问,建议咨询
儿科或儿童保健科医生。
数据已保存
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 750 lines · 11 tokens per session scan A 643d3be4961c
child-development is a command published in the GitHub repository huifer/WellAlly-health (935 stars, last pushed 1mo ago), licensed MIT. It adds 11 tokens to every session and 6,015 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
health
Run health checks on the Claude orchestration system.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.