Rvt To Ifc

PendingStatic analysis audit pending.

Overview

No static analysis result has been recorded yet. Pattern checks will appear here once the artifact has been analyzed.

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

If the chosen converter executable is malicious or not the one the user intended, it could run with the user's local permissions.

Why it was flagged

The skill expects the agent to invoke a local executable to perform the conversion. That is central to the purpose, but it means the local converter must be trusted.

Skill content
- DDC RvtToIfc converter or Revit CLI used for conversion
- subprocess.run() is used solely for invoking the conversion tool
Recommendation

Use an explicit, trusted converter path, avoid running from untrusted directories, and approve conversion commands before execution.

What this means

Users must determine which converter binary is safe and compatible before the agent runs it.

Why it was flagged

The skill relies on an external converter executable, while the supplied metadata has unknown source/homepage and no install spec or required binary declaration. This is a provenance gap, not evidence of malicious behavior.

Skill content
RVT2IFCconverter.exe converts Revit files to IFC offline, without licenses
Recommendation

Install the converter only from a trusted source, document its location, and prefer a pinned version or checksum if available.

What this means

A broad batch run could generate many files or apply the wrong export settings across a project directory.

Why it was flagged

Batch conversion is an advertised feature and fits the purpose, but a mistaken folder or export setting could affect many output files at once.

Skill content
- **Batch processing** - Convert thousands of files
Recommendation

Test on one RVT file first, confirm the input folder and output location, and keep backups for important project files.