Ascii Art Generator
PassAudited by ClawScan on May 10, 2026.
Overview
This appears to be a straightforward ASCII art helper, with the main thing to notice being a small metadata mismatch about whether Python may be needed.
This skill looks safe for normal ASCII art generation based on the provided artifacts. Be aware that it includes Python scripts and package metadata that may install or require Python, despite the registry summary saying there is no install spec.
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.
Using the skill may require installing or relying on local Python, even though the registry summary presents it as instruction-only.
The package declares a Python3 dependency and Homebrew install path, while the registry summary says there is no install spec and no required binaries. This is expected for Python helper scripts, but the dependency is under-declared in the registry metadata.
"requires": { "bins": ["python3"] }, "install": [{ "kind": "brew", "formula": "python", "bins": ["python3"] }]Before installing, confirm that Python/Homebrew installation is acceptable. Maintainers should make the registry requirements match package.json.
The agent may run local Python helper code to generate artwork; the reviewed visible code does not access secrets, networks, or privileged resources.
The skill documents importing and running bundled Python helpers. This is purpose-aligned for generating ASCII art, and the visible scripts only generate/print text output, but it is still local code execution.
from scripts.basic_shapes import create_box, create_circle, create_tree ... print(box)
Run the helper scripts in a normal user environment and review any changes if you modify or extend them.
