Currency

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a benign local command-line logger, but it keeps persistent local records and its install/provenance details are under-specified.

Use this only if you are comfortable with travel, budget, and journal entries being saved locally under `~/.local/share/currency/`. Verify how the `currency` command is installed before trusting it, and avoid storing secrets or payment credentials in its notes.

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

Travel plans, budgets, booking notes, searches, and journal-style entries may remain saved on the device and could be viewed later by anyone with access to that account or directory.

Why it was flagged

The script stores user-entered activity in persistent local log files, creating a reusable history of travel/currency-related entries.

Skill content
DATA_DIR="${HOME}/.local/share/currency" ... _log() { echo "$(date '+%m-%d %H:%M') $1: $2" >> "$DATA_DIR/history.log"; }
Recommendation

Avoid entering passwords, payment details, or other secrets; periodically review or delete `~/.local/share/currency/` if you no longer want the history retained.

What this means

A user may need to manually decide how to install or run the included script, which increases the importance of verifying the script source and path before use.

Why it was flagged

The skill documentation assumes a `currency` CLI command and the manifest includes a shell script, but the artifact set does not define how that command is installed or made available.

Skill content
No install spec — this is an instruction-only skill.
Recommendation

Only install or symlink the script after reviewing it, and prefer a clear, trusted installation method before adding it to your shell PATH.