Equipment Maintenance Log

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This appears to be a simple local equipment-maintenance log with no network or credential use, though it stores records persistently in a hidden OpenClaw directory.

This skill looks appropriate for local equipment tracking. Before installing, be aware that equipment names, calibration dates, intervals, and locations are saved in ~/.openclaw/equipment_log.json and will persist until you remove that file.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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

Equipment maintenance details entered into the skill remain stored on the local machine and may be shown again by future checks or list commands.

Why it was flagged

The script persists equipment names, calibration dates, intervals, and optional locations in a local JSON file reused across runs.

Skill content
def __init__(self, data_file="~/.openclaw/equipment_log.json"):
        self.data_file = Path(data_file).expanduser()
        self.data_file.parent.mkdir(parents=True, exist_ok=True)
Recommendation

Use it only for records you are comfortable storing locally, and delete or protect ~/.openclaw/equipment_log.json if those records should not persist.