Gear

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

The skill may run a local script to perform calculations.

Why it was flagged

The skill instructs use of a local shell script. This is clearly documented and aligned with the calculator purpose, but it is still local code execution.

Skill content
bash scripts/script.sh ratio 20 60
Recommendation

Use it when you are comfortable running the included local script, and keep the script source reviewed as part of installation.

What this means

The skill may fail or behave inconsistently on systems without the expected Bash/Python runtime.

Why it was flagged

The included script invokes Python via `python3 -u`, so the runtime dependency is under-declared in the registry requirements.

Skill content
Required binaries (all must exist): none
Recommendation

The publisher should declare Bash/Python requirements; users should ensure Python 3 is available before using the commands.