Little7 BC/DR
AdvisoryAudited by Static analysis on May 10, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
Backups may contain private agent memory, identity files, and operational context that should be protected and restored carefully.
The skill intentionally persists agent identity and memory material into backup archives. This is purpose-aligned, but restored memory or identity files can carry sensitive or stale context forward.
The intent is to preserve: - core identity files - curated memory - learnings - local scripts - local skills
Review archive contents, store backups only in a trusted location, and verify memory/identity files before restoring them into a live workspace.
If you provide a secrets allowlist, credential or key files may be copied into a backup archive under the destination folder.
The skill can include arbitrary user-selected secret paths in a separate archive when this environment variable is provided. This is explicit and opt-in, but it can include high-impact credentials if configured.
`LITTLE7_SECRET_PATHS_FILE` — newline-delimited absolute paths to include in the separate secrets archive
Only include secret paths you truly intend to back up, protect the destination folder, and keep secret archives separate with strict access controls.
Running the script will create or overwrite backup files and prune older Little7 backup archives in the selected destination.
The script uses local file tools to create archives, overwrite latest backup copies, and delete old matching archives during retention pruning. These actions are central to the backup purpose and are scoped to the configured backup directories.
( cd "$STAGE_STATE" && tar czf "$STATE_OUT" . )
cp -f "$STATE_OUT" "$LATEST_STATE"
...
rm -f "${files[$i]}"Check LITTLE7_GDRIVE_BASE before running, and verify that the destination folder is the intended backup location.
