Planner
PassAudited by ClawScan on May 1, 2026.
Overview
This planner looks benign: it keeps plan data locally using simple Python scripts, with only minor notes about persistent local storage and an undeclared Python runtime.
This skill appears safe for normal local planning use. Be aware that plans are saved persistently on your machine under the OpenClaw memory directory, so do not store secrets or information you would not want retained locally.
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.
The skill may fail on systems without python3, but the artifacts do not show a hidden or risky install path.
The registry metadata declares no required binaries, so the Python runtime dependency is under-declared even though it is disclosed in the skill file. No external packages or downloads are requested.
## Runtime Requirements - Python 3 must be available as `python3`
Check that python3 is available before use; the publisher should declare it in the skill metadata.
Personal planning details may remain available for later sessions and may be displayed by the planner scripts.
The code persists planner data under a local OpenClaw memory directory. This matches SKILL.md's disclosed local-only storage paths and is proportionate for a planner.
PLANNER_DIR = os.path.expanduser("~/.openclaw/workspace/memory/planner")Avoid storing secrets or highly sensitive details in plans, and periodically review or delete the local planner files if needed.
