Garden Layout Planner

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to be a purpose-aligned local garden planner that stores layout data locally and supports user-directed exports, with no evidence of credentials, network access, or hidden execution.

This looks safe for normal garden planning. Before installing, note that it saves garden layout state locally and can export files when requested, so use intended filenames and avoid entering private information you do not want stored in the local workspace.

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

Using the skill may create or modify local garden-planning files and produce exports at user-specified paths.

Why it was flagged

The skill exposes local commands that create or modify garden layout records and export a file. This is expected for a layout planner, but users should understand it can write local files.

Skill content
garden_layout.py add-bed "<bed_name>" --width <feet> --length <feet> --sun "full/partial/shade" ... garden_layout.py export "<output_file>"
Recommendation

Use export paths you intend to write to and review generated files before sharing them.

What this means

Garden layout details entered into the tool can remain on the local machine across later uses of the skill.

Why it was flagged

The script stores garden layout data in a persistent local JSON database so future commands can reuse the saved beds, plants, and seasons.

Skill content
DB_PATH = Path.home() / ".openclaw" / "workspace" / "garden_layout_db.json"
Recommendation

Avoid putting sensitive personal information in bed names or notes, and delete the local database file if you want to reset or remove saved layout data.