Agent Motivator

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is a simple motivator and task tracker that runs included local scripts and stores task progress in a disclosed local JSON file.

This skill appears safe and purpose-aligned. Before installing, note that it can run its included Python scripts and will keep task-tracking history locally under ~/.openclaw/agent-motivator/task_state.json.

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 execute its bundled Python scripts locally.

Why it was flagged

The skill tells the agent/user to run included local Python helper scripts. This is expected for the stated motivator/task-tracker purpose, and the provided script contents are simple and purpose-aligned.

Skill content
python3 scripts/motivate.py start ... python3 scripts/task_tracker.py create "完成项目报告" high
Recommendation

Use the scripts as documented; if modifying them, review changes before running.

What this means

Task details may remain on disk across sessions and could include sensitive project information if entered as task names or milestones.

Why it was flagged

The task tracker persists task names, progress, and milestones in a local JSON file so they can be listed or summarized later.

Skill content
STATE_FILE = Path.home() / ".openclaw" / "agent-motivator" / "task_state.json"
Recommendation

Do not store secrets or highly sensitive details in task names or milestones; delete the state file if you no longer want the history retained.