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.

What this means

The skill may fail on systems without python3, but the artifacts do not show a hidden or risky install path.

Why it was flagged

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.

Skill content
## Runtime Requirements
- Python 3 must be available as `python3`
Recommendation

Check that python3 is available before use; the publisher should declare it in the skill metadata.

What this means

Personal planning details may remain available for later sessions and may be displayed by the planner scripts.

Why it was flagged

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.

Skill content
PLANNER_DIR = os.path.expanduser("~/.openclaw/workspace/memory/planner")
Recommendation

Avoid storing secrets or highly sensitive details in plans, and periodically review or delete the local planner files if needed.