Health Check
Analysis
This appears to be a simple local health logger that writes sleep and water records to a JSON file, with some minor notes about Node command use, persistent health data, and packaging metadata consistency.
Findings (3)
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.
d.water.push({time:new Date().toISOString(),cups:CUPS});fs.writeFileSync(f,JSON.stringify(d)); ... Replace `CUPS` with number from user input.The skill places a user-derived value into a local Node command and writes the result to disk. This is consistent with the health-tracking purpose, but the value should be treated strictly as a number.
"ownerId": "kn7129pr4xtrwpbxszgx6bmfjx80a9pz", "slug": "healthcheck", "version": "1.0.2"
The packaged metadata differs from the registry metadata shown for this evaluation, and the registry declares no required binaries even though the skill uses Node commands. This is a consistency/provenance note rather than evidence of hidden behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
File: `{baseDir}/health-data.json` ... "water": [{"time": "ISO8601", "cups": 2}], "sleep": [{"time": "ISO8601", "action": "sleep|wake"}]The skill persistently stores water and sleep records in a local JSON file. This is disclosed and central to the purpose, but it is still personal health-related data.
