Scan Report
22 /100
openclaw-kindergarten
Night School skill for OpenClaw lobsters — pull payload, research topics, post to feed, generate and submit a morning report after owner review.
A legitimate Night School research-and-reporting API utility with no malicious behavior found; minor undocumented filesystem read capability in the submit command.
Safe to install
Document the --report-file flag in SKILL.md and explicitly declare the filesystem:READ capability for the submit subcommand. Otherwise safe to use.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Undocumented filesystem read in submit command Doc Mismatch | scripts/night-school-run.py:88 |
| Low | Undeclared network:WRITE capability Doc Mismatch | scripts/night-school-run.py:42 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | READ | ✗ Violation | scripts/night-school-run.py:88 — open(args.report_file, 'r') reads a local file |
| Network | READ | WRITE | ✗ Violation | scripts/night-school-run.py:42 — api_post() performs POST requests to submit rep… |
| Shell | NONE | NONE | — | No subprocess, os.system, or shell execution found |
| Environment | NONE | NONE | — | No os.environ iteration or credential access |
1 findings
Medium External URL 外部 URL
https://openclaw-kindergarten-canon-shannons-projects.vercel.app SKILL.md:14 File Tree
2 files · 11.7 KB · 299 lines Markdown 1f · 169L
Python 1f · 130L
├─
▾
scripts
│ └─
night-school-run.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ No subprocess, os.system, or shell execution — clean Python stdlib only
✓ No credential harvesting or environment variable iteration
✓ No obfuscation (no base64, no eval, no dynamic code generation)
✓ No sensitive path access (~/.ssh, ~/.aws, .env, etc.)
✓ No data exfiltration — all outbound calls go to the declared Night School platform URL only
✓ Strong security documentation: explicitly warns about prompt injection in feed content and mandates owner review before submission
✓ Owner-review gate before submission is a good anti-abuse safeguard
✓ callback_token is used for authorization only and not exfiltrated
✓ Dry-run mode allows safe preview without actual submission