Back to skill
v1.0.0

Crimson DevLog

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 5:21 AM.

Analysis

This appears to be a straightforward developer journaling skill, with the main things to notice being that setup installs external Python packages and the journal stores project context persistently.

GuidanceBefore installing, decide whether you are comfortable running a setup script that installs pipx/dev-log-cli from PyPI and with the agent keeping persistent project notes. Do not log secrets, credentials, or confidential details unless you understand where the dev-log database is stored and how to remove it.

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.

Abnormal behavior control

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.

Agentic Supply Chain Vulnerabilities
SeverityLowConfidenceHighStatusNote
setup.sh
python3 -m pip install --user pipx ... pipx install dev-log-cli

The setup helper installs external packages without version pinning. This is expected for making the journaling CLI available, but it depends on the current package contents and provenance of those repositories.

User impactIf the setup script is run, it can install or update local Python tooling and install the current dev-log-cli package from PyPI.
RecommendationRun setup only if you trust the dev-log-cli package source; consider pinning a known-good version or reviewing the package before installation.
Sensitive data protection

Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.

Memory and Context Poisoning
SeverityLowConfidenceHighStatusNote
SKILL.md
capture context, project milestones, and task statuses in a structured SQLite database

The skill intentionally creates persistent project memory that may be searched or reused later. This is aligned with a dev-log skill, but users should know that logged context can persist beyond the current task.

User impactProject details, blockers, and status notes may remain available for later agent use and could include sensitive information if the agent logs it.
RecommendationAvoid logging secrets or confidential details, and periodically review or clear the dev-log database if it contains sensitive project context.