Pandas Construction Analysis
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.
The agent may read or write local project data files as part of analysis and reporting.
The skill declares filesystem permission, which is expected for reading construction datasets and exporting reports, but it still gives the agent local file access.
"permissions": [
"filesystem"
]Use explicit file paths, keep outputs in a known project folder, and review any export destination before allowing writes.
Analysis may involve running local Python code against files the user provides.
The skill provides Python/Pandas code patterns for local data processing. This is central to the stated purpose and is not shown as hidden or automatic install-time execution.
import pandas as pd
# Read construction data
df = pd.read_excel("bim_export.xlsx")Run analysis only on trusted datasets and avoid treating arbitrary user-supplied text as executable Python code.
