Ascii Art Generator
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: ascii-art-generator Version: 1.0.0 The skill is designed for generating ASCII art and text-based visualizations, which aligns with its stated purpose. The Python scripts primarily use string manipulation and basic arithmetic, without any file I/O, network calls, or execution of external commands. There are no signs of prompt injection attempts in the markdown files, nor any obfuscation or suspicious installation steps. A minor bug exists in `scripts/text_banners.py` where an undefined variable `III` would cause a `NameError` if the `create_warning_box` function were called, leading to a runtime error. Additionally, `test_skill.py` and `USAGE.md` contain minor quirks with negative multipliers in print statements or function calls. These are functional bugs, not security vulnerabilities or risky capabilities, and do not indicate malicious intent.
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.
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.
