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.
Using the skill may execute its bundled Python scripts locally.
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.
python3 scripts/motivate.py start ... python3 scripts/task_tracker.py create "完成项目报告" high
Use the scripts as documented; if modifying them, review changes before running.
Task details may remain on disk across sessions and could include sensitive project information if entered as task names or milestones.
The task tracker persists task names, progress, and milestones in a local JSON file so they can be listed or summarized later.
STATE_FILE = Path.home() / ".openclaw" / "agent-motivator" / "task_state.json"
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.
