Logbook

AdvisoryAudited by Static analysis on Apr 30, 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.

What this means

A user may install it expecting a personal journal, but the provided instructions and script do not implement clear journaling, search, or export of journal entries.

Why it was flagged

The same artifact presents conflicting purposes: a personal journaling skill in the metadata/frontmatter and a dataset-processing CLI in the main instructions. This mismatch can mislead users and agents about what the skill will actually do.

Skill content
description: "Write journal entries, search history, and export your personal log digitally." ... "LogBook is a data processing and analysis toolkit"
Recommendation

Do not rely on this as a journal until the package is corrected to match its description and the actual commands are verified.

What this means

Personal or sensitive text could be retained locally in `history.log` even if the command only appears to query or export.

Why it was flagged

Every command appends its action and argument to a persistent local history file. If the agent passes personal journal text, search terms, or sensitive file paths as arguments, those may remain in local storage.

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

Avoid entering secrets or sensitive journal text as command arguments, and periodically review or delete the local log directory if you use the skill.

What this means

The commands shown in the skill may not work as documented, or users may need to manually inspect and run the bundled script.

Why it was flagged

The documentation uses `logbook` CLI examples, but there is no install declaration showing how the bundled script becomes that command. This is a setup/provenance gap, not evidence of malicious behavior by itself.

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

Verify the installation path and command binding before use; prefer a corrected package with an explicit install or invocation method.