Popover
Analysis
The skill does not appear to steal data, but its included script is a generic local entry tracker rather than a popover UI generator.
Findings (2)
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.
# popover -- Generate popover UI elements and design assets... cmd_add() { ... _save_entry "add" "$value $*" ... } ... cmd_export() { ... cp "$DATA_DIR/data.jsonl" "$out" ;; }The script claims the same UI-generation purpose as the skill, but its implemented behavior is only saving and exporting generic entries from a local JSONL file.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
DATA_DIR="${POPOVER_DIR:-$HOME/.popover}" ... printf '{"ts":"%s","cmd":"%s","val":"%s"}\n' "$ts" "$cmd" "$val" >> "$DATA_DIR/data.jsonl"User-provided entries are persisted locally and can later be listed, searched, or exported.
