Fortune Teller
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a low-risk entertainment fortune-telling skill, but it has incomplete install/provenance metadata and can store local command/data logs.
This skill looks safe for casual entertainment use. Before installing, know that it may create files under ~/.local/share/fortune-teller or FORTUNE_TELLER_DIR, command documentation does not fully match the included scripts, and any personal information you enter may remain in local logs unless you delete them manually.
Findings (3)
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.
You may need to verify how the command is installed and which bundled script is actually used.
The package includes runnable scripts and references a CLI, but the registry-level source/install requirements are not fully declared.
Source: unknown ... No install spec — this is an instruction-only skill ... Code file presence: scripts/fortune.sh, scripts/script.sh
Review the included scripts before use; the publisher should declare the install method and required binaries such as bash/python3.
Personal details entered into commands could remain in local files even after the session ends.
The script creates a local data directory and records command history/data, so user-entered content can persist on disk.
DATA_DIR="${FORTUNE_TELLER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/fortune-teller}"; DB="$DATA_DIR/data.log"; mkdir -p "$DATA_DIR"; _log() { ... >> "$DATA_DIR/history.log"; }Avoid entering sensitive personal information, or set FORTUNE_TELLER_DIR to a temporary/private location and delete the data directory when finished.
A user could believe local stored data was deleted when it may still remain in data.log or history.log.
The remove command prints that an item was removed but does not modify the stored data file.
cmd_remove() {
echo " Removed: $1"
_log "remove" "${1:-}"
}Verify deletion manually in the configured data directory; the publisher should either implement removal or change the message.
