Clawkeep
Analysis
ClawKeep is coherent for backups, but it deserves review because it relies on an unreviewed global CLI and recommends persistent processes that can continuously back up workspace data and use cloud credentials.
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.
ClawKeep must be installed globally: ```bash npm install -g clawkeep ```
The reviewed skill is instruction-only and has no install spec or bundled code, so the global npm package that performs backups, restores, daemon work, and credential handling is outside the reviewed artifacts.
Start a background daemon that auto-snapshots on every file change... Runs in background, survives terminal close
The skill intentionally recommends a long-running background process that keeps operating after the initial command.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
--access-key YOUR_ACCESS_KEY \ --secret-key YOUR_SECRET_KEY ... Credentials stored locally — S3 credentials saved in `.clawkeep/config.json`
S3 credentials are expected for S3 backups, but the skill documents both inline credential use and local credential storage.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Backing up agent workspaces, memory files, configs... Syncing state across machines
The skill explicitly targets agent memory/configuration files and can sync them across machines, which is useful for backup but sensitive.
