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.
A local DwgExporter executable may be executed against user-selected DWG files.
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.
Run DwgExporter CLI to extract data: layers, blocks, attributes, geometry
Use only a trusted DwgExporter.exe from a known source and confirm the input/output paths before running conversions.
If the local DwgExporter executable is untrusted or replaced, the skill could run that binary during normal use.
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.
DwgExporter CLI must be installed locally (filesystem permission for execution)
Install the converter from a trusted source, keep it in a known path, and avoid running unexpected copies of DwgExporter.exe.
A broad batch command could create many Excel/PDF outputs and process sensitive CAD files throughout a folder tree.
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.
for /R "C:\Projects" %f in (*.dwg) do DwgExporter.exe "%f"
Run batch conversion only on intended project folders and review the scope before processing recursively.
