Openclaw Task Reminder
Analysis
This appears to be a straightforward local task-list tool that stores tasks in an OpenClaw workspace file and shows no evidence of network access, credential use, or hidden behavior.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Source: unknown; Homepage: none
The package provenance is not linked to an external source repository or homepage, so users have less independent context about the publisher.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
const TASKS_FILE = path.join(process.env.HOME || process.env.USERPROFILE, '.openclaw', 'workspace', 'tasks.json'); ... fs.writeFileSync(TASKS_FILE, JSON.stringify(tasks, null, 2));
Task descriptions are written to a persistent local JSON file in the OpenClaw workspace.
