Trusted — Risk Score 0/100
Last scan:2 days ago Rescan
0 /100
daily-reflect
每日日记引导 — 每天提供一个深度日记主题,早间引导写作,晚间回顾反思
Daily journal prompt generator with solid input sanitization and no security issues - all file access is constrained to a safe user data directory with path traversal protection.
Skill Namedaily-reflect
Duration23.9s
Enginepi
Safe to install
Skill is safe to use. Consider documenting allowed-tools explicitly in SKILL.md for completeness.
ResourceDeclaredInferredStatusEvidence
Filesystem NONE READ ✓ Aligned Scripts only access data/users/ directory with path traversal protection
Network NONE NONE No network calls observed in any script
1 findings
🔗
Medium External URL 外部 URL
https://openclaw.ai
README.md:5

File Tree

7 files · 10.0 KB · 204 lines
Markdown 2f · 104L JavaScript 3f · 85L JSON 2f · 15L
├─ 📁 scripts
│ ├─ 📜 evening-push.js JavaScript 18L · 1.4 KB
│ ├─ 📜 morning-push.js JavaScript 18L · 1.5 KB
│ └─ 📜 push-toggle.js JavaScript 49L · 3.6 KB
├─ 📋 _meta.json JSON 7L · 139 B
├─ 📋 package.json JSON 8L · 167 B
├─ 📝 README.md Markdown 43L · 1.6 KB
└─ 📝 SKILL.md Markdown 61L · 1.6 KB

Security Positives

✓ Robust input sanitization: userId validated with regex /^[a-zA-Z0-9_-]{1,128}$/
✓ Path traversal protection: safeUserPath() ensures all file operations stay within data/users/ directory
✓ Time validation for cron expressions prevents malformed input
✓ Channel whitelist: ALLOWED_CH Set restricts to telegram/feishu/slack/discord only
✓ No shell execution or child_process usage
✓ No credential harvesting or environment variable access
✓ No network requests or external IP communications
✓ No eval(), atob(), or dynamic code execution