GLSL Encyclopedia

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill appears to be a purpose-aligned GLSL documentation helper that fetches official docs into a local workspace cache and keeps local notes.

This skill looks safe for GLSL documentation and shader-language assistance. Before installing, be aware that it may fetch pages from the official Vulkan GLSL docs and store cached docs plus local shader/project notes under `.GLSL-Encyclopedia/` in your workspace.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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

Using the helper can contact the official GLSL documentation site and create local cache files in the workspace.

Why it was flagged

The helper performs a network fetch and writes a local cache file. The code constrains fetching to HTTPS `docs.vulkan.org` GLSL pages and writes under the cache layout, making this expected for the documentation workflow.

Skill content
ALLOWED_NETLOCS = {'docs.vulkan.org'} ... with urllib.request.urlopen(req, timeout=20) as resp ... out.write_text(content, encoding='utf-8')
Recommendation

Allow this only when you want the skill to refresh or create GLSL documentation cache files; keep using the bounded official-doc URL pattern.

What this means

Project-specific shader conventions, compile-error patterns, or other local observations may be retained and influence later answers.

Why it was flagged

The skill intentionally stores persistent local notes and observations for reuse in future GLSL work. This is purpose-aligned, but persistent notes can become stale or over-trusted if not reviewed.

Skill content
record useful authoritative excerpts plus environment-specific operational learnings so future work gets faster, safer, and more grounded
Recommendation

Keep notes workspace-local, avoid storing sensitive project information unnecessarily, and periodically review or delete stale notes.