Dwg To Excel

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: dwg-to-excel Version: 2.0.0 The skill is designed to convert DWG files to Excel using a local `DwgExporter.exe` CLI tool. The Python code correctly uses `subprocess.run` with a list of arguments, which prevents shell injection vulnerabilities when invoking the external executable. The `filesystem` permission declared in `claw.json` is necessary and justified for this purpose. Both `SKILL.md` and `instructions.md` provide clear, benign instructions for the AI agent and lack any evidence of prompt injection attempts, data exfiltration, persistence mechanisms, or other malicious behaviors. The skill's implementation aligns with its stated purpose without introducing undue risk.

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.

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.