Drawing Analyzer
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears aligned with analyzing user-provided construction drawings, but users should notice its local file access and manually verify any Python dependencies they choose to install.
This looks safe for its stated purpose. Use it only with drawing files you intend to analyze, be careful with confidential project documents, and verify any Python libraries such as pdfplumber before installing them manually.
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.
The agent may read local construction drawing files or related project data when you provide paths for analysis.
The skill requests filesystem access, which is expected for analyzing local drawing files but still allows access to user-supplied local project documents.
"permissions": [
"filesystem"
]Provide explicit file paths and avoid pointing the skill at folders or files you do not want analyzed.
If you decide to run or adapt the example code, you may need to install Python packages outside the skill's managed install flow.
The implementation example depends on a Python package while the artifact set declares no install spec; this is an operational dependency gap rather than evidence of malicious behavior.
import pdfplumber
Install dependencies only from trusted package sources and consider pinning versions if using this in a production workflow.
