ADHD Body Doubling

PassAudited by VirusTotal on May 10, 2026.

Overview

Type: OpenClaw Skill Name: adhd-body-doubling Version: 2.1.1 The skill bundle is clearly aligned with its stated purpose of providing an ADHD body doubling service. The `SKILL.md` and `references/protocols.md` files contain detailed instructions for the AI agent, but these are focused on guiding conversational behavior and task management within the skill's scope, without any evidence of prompt injection for malicious purposes. The `scripts/start-session.sh` script handles user input, sanitizes it using a `json_escape` function, and writes session data to the expected `~/.openclaw/skills/adhd-body-doubling/history/` directory. There are no suspicious shell commands, network calls, attempts at persistence, or data exfiltration observed in any of the files.

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 you run the standalone script, it will prompt you for session details and create local history files.

Why it was flagged

The skill includes a user-directed shell script for standalone sessions. This is disclosed and aligned with the focus-session purpose, but it is still local code execution the user should choose intentionally.

Skill content
Or run standalone:
```bash
chmod +x scripts/start-session.sh
./scripts/start-session.sh 50
```
Recommendation

Run the script only if you want standalone mode, and review or delete its local history files if they contain sensitive task details.

What this means

Your work plans, blockers, and focus-pattern details may remain on your machine after a session.

Why it was flagged

The script stores user-entered task descriptions, micro-steps, and energy level in persistent local JSON history. This supports the stated history-tracking feature, but may include sensitive personal or business context.

Skill content
SESSION_DIR="${HOME}/.openclaw/skills/adhd-body-doubling/history"
...
"task_description": "$TASK_ESC",
"first_microstep": "$MICROSTEP_ESC",
"smallest_step": "$SMALLEST_ESC",
"energy_start": ${ENERGY_START:-5}
Recommendation

Avoid entering confidential details you do not want retained, and periodically review or clear ~/.openclaw/skills/adhd-body-doubling/history/.