Specification Extractor
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears coherent and purpose-aligned for extracting construction specification data, with only expected local file access and a minor undeclared dependency note.
This skill looks safe for its stated purpose. Before installing or using it, be mindful that construction specifications can contain sensitive project information, provide only the files you intend to process, and verify any Python dependency such as pdfplumber before installing it.
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 skill may read or create local files when processing specifications or exports.
Filesystem access lets the skill work with local specification files, which is expected for this purpose but still gives the agent access to user-selected documents.
"permissions": [
"filesystem"
]Use explicit file paths, avoid pointing it at unrelated private folders, and review any exported files before sharing them.
If the dependency is not already installed, a user or agent may need to install it separately, introducing normal package-source and version-selection risk.
The documented Python implementation references a third-party package, but the declared requirements only list python3 and there is no install spec or pinned dependency version.
import pdfplumber
Install dependencies only from trusted sources and prefer pinned, reviewed versions if running the provided Python implementation.
