Workspace Hygiene Publish

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

Overview

The skill appears to do the advertised local workspace hygiene audit, with disclosed memory scanning, persistent reports, optional file fixes, and an optional weekly run to review before enabling.

This looks coherent for a workspace maintenance skill. Before installing, be aware that it scans local OpenClaw memory/project files and writes reports. First run it in report-only mode, review the output, and only use --fix or weekly HEARTBEAT scheduling if you are comfortable with recurring local audits and possible memory-file edits.

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

If run with --fix, the skill may change workspace memory files by consolidating timestamped entries.

Why it was flagged

The script includes an explicit fix mode that can write merged memory content back into the workspace. This is aligned with the hygiene purpose and not enabled by the default command, but it is still local file mutation.

Skill content
parser.add_argument("--fix", action="store_true", help="Apply low-risk fixes.") ... target_path.write_text(merged, encoding="utf-8")
Recommendation

Run it without --fix first, review the report, and keep backups or version control before applying fixes.

What this means

Private memory structure, project names, and hygiene findings may become part of a saved report that future agents can read.

Why it was flagged

The skill reads persistent memory/RAG-related workspace files and writes a persistent hygiene report. This is core to the skill, but those files may influence future retrieval and agent context.

Skill content
Scans `memory/` ... Validates that recent memory entries ... Writes a report to `projects/system/hygiene-YYYY-MM-DD.md`
Recommendation

Use it only on intended workspaces and review generated reports before treating them as authoritative context.

What this means

If enabled, the agent may run this hygiene audit repeatedly and create new reports over time.

Why it was flagged

The artifacts document a recurring weekly workflow if the user adds it to HEARTBEAT.md. This is disclosed and purpose-aligned, but it is still a form of persistent scheduled agent behavior.

Skill content
Maintains clean, RAG-friendly workspaces across all agents. Runs on demand or weekly. ... Add to `HEARTBEAT.md`: `## Weekly Hygiene (Monday)`
Recommendation

Enable the weekly heartbeat only if you want recurring audits, and avoid adding --fix to automated runs unless you are comfortable with automatic file changes.