ADHD Founder Planner

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If run, the shell script will execute locally and create or modify planner files on the user's machine.

Why it was flagged

The skill documents optional local shell execution. This is purpose-aligned for a standalone planner and no remote download or hidden execution is shown.

Skill content
Or run standalone:
```bash
chmod +x scripts/plan.sh
./scripts/plan.sh plan
```
Recommendation

Run the script only if you want the local file-based planner behavior, and review the generated files if you rely on them.

What this means

Planner entries and reflections can remain on disk and may include private task, health, or work details.

Why it was flagged

The script persists user-entered plans, tasks, energy checks, and reflections in local Markdown files, which supports migration/history but creates stored personal context.

Skill content
PLANNER_DIR="${HOME}/.openclaw/skills/adhd-daily-planner"
DAILY_DIR="$PLANNER_DIR/daily"
MONTHLY_DIR="$PLANNER_DIR/monthly"
COLLECTIONS_DIR="$PLANNER_DIR/collections"
...
cat > "$TODAY_FILE" << EOF
Recommendation

Avoid entering secrets or highly sensitive information, and periodically review or delete local planner files if needed.