Dwg To Excel

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent DWG-to-Excel helper, but users should only run it with a trusted local DwgExporter executable and chosen file paths.

Before installing, make sure you already trust the DwgExporter CLI you plan to run. Use explicit DWG input paths, avoid broad recursive folders unless intended, and remember that converted Excel/PDF outputs may contain sensitive CAD project data.

Findings (3)

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

A local DwgExporter executable may be executed against user-selected DWG files.

Why it was flagged

The skill directs the agent to invoke a local executable as part of the conversion workflow. This is expected for the stated purpose, but users should recognize that a local binary will be run.

Skill content
Run DwgExporter CLI to extract data: layers, blocks, attributes, geometry
Recommendation

Use only a trusted DwgExporter.exe from a known source and confirm the input/output paths before running conversions.

What this means

If the local DwgExporter executable is untrusted or replaced, the skill could run that binary during normal use.

Why it was flagged

The core converter is an external local dependency, but the artifacts do not provide an install source, pinned version, checksum, or bundled executable. This is not deceptive, but it leaves trust in the user's local installation.

Skill content
DwgExporter CLI must be installed locally (filesystem permission for execution)
Recommendation

Install the converter from a trusted source, keep it in a known path, and avoid running unexpected copies of DwgExporter.exe.

What this means

A broad batch command could create many Excel/PDF outputs and process sensitive CAD files throughout a folder tree.

Why it was flagged

The documentation includes a recursive batch-conversion example. It is purpose-aligned and user-directed, but broad folder selection could process many project files at once.

Skill content
for /R "C:\Projects" %f in (*.dwg) do DwgExporter.exe "%f"
Recommendation

Run batch conversion only on intended project folders and review the scope before processing recursively.