Skylv File History Tracker
Analysis
The skill appears to do local file versioning, but it warrants review because it can persist plaintext snapshots of sensitive files such as .env files, API keys, or passwords.
Findings (4)
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.
`node version_engine.js restore <file> [version]` ... `Restores file content to the specified version` ... `Shows what changed before overwriting`
Restore is an intentional file-mutation feature. It is disclosed and appears purpose-aligned, but it can overwrite local files.
`node version_engine.js watch <file-or-dir> [--interval ms]` ... `Automatically snapshots when hash changes` ... `Runs continuously until Ctrl+C`
Watch mode is a disclosed long-running behavior that automatically creates snapshots until stopped.
Source: unknown; Homepage: none ... No install spec — this is an instruction-only skill.
The provided registry metadata gives limited provenance and no install specification, although the included code is visible in the artifact set.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Stores snapshot in `.fvsnap/` ... "content": "..." // only for text files ... `node version_engine.js snap .env "before changing DB password"`
The skill documents persistent hidden snapshot storage containing file contents and explicitly shows use with secret-bearing files such as .env/password/API-key workflows.
