Seasonal Planting Guide
PassAudited by ClawScan on May 1, 2026.
Overview
This gardening skill appears benign; it provides planting guidance, stores optional custom plant data locally, and can export calendars when asked.
This appears safe to install for garden planning. Be aware that custom entries persist in `~/.openclaw/workspace/planting_calendar.json`, and exports write local files when you request them.
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.
If used, the skill may create or overwrite local calendar files in allowed directories.
The skill can write exported calendar files to user-selected local paths. This is disclosed and purpose-aligned, and the documentation describes path restrictions, so it is a notice rather than a concern.
seasonal_planting.py year --zone "6b" --export "~/farm-calendar.md" ... The `export` function validates output paths ... Allowed: `~/.openclaw/workspace/`, `/tmp/`, and home directory
Export only to paths you intend to use and check existing files before overwriting them.
Custom plant names, zones, and notes may remain on disk after the session.
The script stores custom planting data persistently in a local JSON file so it can be reused later. This matches the skill's purpose and is locally scoped.
DB_PATH = Path.home() / ".openclaw" / "workspace" / "planting_calendar.json" ... json.dump(db, f, indent=2)
Avoid putting private information in custom plant notes, and delete the workspace JSON file if you want to reset stored entries.
