Create Dxf

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to be a straightforward local DXF/SVG generator, with minor notes about running a bundled Python script and stale command references.

This looks safe for its stated purpose: generating local DXF/SVG files from a JSON design spec. Before installing or using it, be aware that it runs a local Python script, follow the create_dxf.py commands from SKILL.md rather than the stale rfq_cad.py reference, and manually check dimensions and geometry before using the files for manufacturing.

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 will run local Python code and create files in the chosen output directory.

Why it was flagged

The skill is used by running a bundled local Python script that reads a JSON spec and writes output files. This is central to the CAD-generation purpose, but users should notice that local code execution is involved.

Skill content
python3 scripts/create_dxf.py render spec.json --outdir out
Recommendation

Run it only with specs and output paths you choose, and review the generated CAD files before sending them for quoting or fabrication.

What this means

An agent or user following the reference prompt exactly may try to run a missing or wrong script.

Why it was flagged

A reference document points to scripts/rfq_cad.py, while the provided manifest and SKILL.md use scripts/create_dxf.py. This appears to be a stale filename rather than malicious behavior, but it is a provenance/packaging inconsistency.

Skill content
python3 scripts/rfq_cad.py validate <spec.json>
Recommendation

Use the SKILL.md command path, scripts/create_dxf.py, and update stale documentation references before relying on automated workflows.