ADHD Founder Planner

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: adhd-founder-planner Version: 1.1.1 The skill bundle is benign. The `scripts/plan.sh` script operates entirely within its designated skill directory (`~/.openclaw/skills/adhd-daily-planner/`), creating and modifying markdown files for planning purposes. It does not attempt to access sensitive system files, make network requests, or execute arbitrary commands from user input (user input for `sed` is properly escaped). The `SKILL.md` and `README.md` files contain no instructions that could be interpreted as prompt injection against an AI agent, and external links point transparently to the stated author's website (adhd-founder.com).

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.