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.

What this means

The skill may read or create local files when processing specifications or exports.

Why it was flagged

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.

Skill content
"permissions": [
    "filesystem"
  ]
Recommendation

Use explicit file paths, avoid pointing it at unrelated private folders, and review any exported files before sharing them.

What this means

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.

Why it was flagged

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.

Skill content
import pdfplumber
Recommendation

Install dependencies only from trusted sources and prefer pinned, reviewed versions if running the provided Python implementation.