lorax

ReviewAudited by ClawScan on May 10, 2026.

Overview

Visible instructions match a Lorax image-building skill, but the sample configuration includes a predictable root password and a disk-wiping installer directive, so it needs review before use.

Install only if you understand Lorax/Kickstart image building and will review generated configs before use. Do not use the sample root password, and be especially careful with partitioning directives like clearpart --all because they can erase disks during installation. The supplied SKILL.md excerpt was truncated, so this review is based on the visible artifacts.

Findings (4)

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

Using the sample installer configuration as-is could wipe disks on a target machine during installation.

Why it was flagged

The example writes a Kickstart file containing an automatic 'clear all partitions' directive; if used in an installer workflow, it can erase target disks without additional per-disk confirmation shown in the artifact.

Skill content
cat > fedora-live.ks << 'EOF' ... clearpart --all --initlabel
Recommendation

Require explicit user confirmation for partitioning, document the destructive effect, and replace the example with a safer, clearly scoped disk layout.

What this means

A generated image could ship with a known root password, allowing unauthorized administrator access.

Why it was flagged

The sample sets the generated system root password to a predictable plaintext value; images built from it would have an obvious administrator credential unless changed.

Skill content
rootpw --plaintext password
Recommendation

Use a locked root account or a hashed, user-supplied password, and clearly warn users not to use the sample password in real images.

What this means

Running these commands can install software, consume disk space, and write image files on the local machine.

Why it was flagged

The visible workflow asks the user or agent to install OS packages and run local image-building commands. This is central to the stated purpose, but it can change the host environment.

Skill content
dnf install lorax lorax-templates-generic ... lorax ... livemedia-creator ... virt-builder
Recommendation

Run the skill only on an appropriate Fedora/RHEL build host or disposable VM, and review commands before granting elevated privileges.

What this means

Users may only discover missing or unsupported tools at runtime, and the agent may suggest manual setup steps on an unsuitable system.

Why it was flagged

The registry metadata does not declare the external Lorax-related tools that the SKILL instructions tell users to install and run, so automated dependency and OS suitability checks are not enforced.

Skill content
Required binaries (all must exist): none ... Install specifications: No install spec — this is an instruction-only skill.
Recommendation

Declare required binaries and Fedora/RHEL/Linux OS expectations in metadata, or clearly gate setup commands behind user confirmation.