Paraphraser

ReviewAudited by ClawScan on May 10, 2026.

Overview

The paraphrasing prompts look benign, but the package also includes an unrelated utility script that stores command inputs locally without being clearly explained.

Use caution before installing. The visible paraphrasing prompt script is straightforward, but inspect or remove scripts/script.sh if you do not want local command history or text entries stored under ~/.local/share/paraphraser.

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.

What this means

A user expecting only text rewriting may run an unrelated stateful utility command instead.

Why it was flagged

This bundled script exposes a generic utility interface that is not described by the paraphrasing-focused SKILL.md, creating ambiguity about what code backs the advertised `paraphraser` command.

Skill content
# paraphraser - Multi-purpose utility tool ... Commands: run config status init list add remove search export
Recommendation

Remove the unrelated script, or clearly document whether it is installed, why it exists, and which command users should run for paraphrasing.

What this means

Private text passed to the command could remain on disk in history.log or data.log and later be listed or exported.

Why it was flagged

The script creates persistent local storage and records command arguments or added content, but the skill description does not disclose this storage, retention, or cleanup behavior.

Skill content
DATA_DIR="${PARAPHRASER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/paraphraser}"; DB="$DATA_DIR/data.log"; _log() { echo "$(date '+%m-%d %H:%M') $1: $2" >> "$DATA_DIR/history.log"; } ... cmd_add() { echo "$(date +%Y-%m-%d) $*" >> "$DB"; }
Recommendation

Make logging opt-in, avoid storing user text by default, document the storage path and retention policy, and provide a real cleanup/delete command.