moonraker

PassAudited by ClawScan on May 10, 2026.

Overview

This skill does what it claims—controls and monitors a Moonraker/Klipper 3D printer—but its pause, resume, cancel, and emergency-stop commands can affect a real printer and should be used deliberately.

Install only if you intend your agent to control the specified 3D printer. Keep MOONRAKER_HOST pointed at a trusted local printer, and ask the agent to confirm before running actions that change printer state, especially cancel or emergency stop.

Findings (1)

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 invoked accidentally or by an overly autonomous agent, the skill could pause, resume, cancel, or emergency-stop an active print.

Why it was flagged

The helper exposes state-changing Moonraker API calls, including cancel and emergency stop. These are disclosed and match the skill purpose, but they can immediately affect a real 3D printer.

Skill content
cmd_cancel() { ... curl -sf -X POST "${HOST}/printer/print/cancel" ... }
cmd_estop() { ... curl -sf -X POST "${HOST}/printer/emergency_stop" ... }
Recommendation

Use this skill only with a trusted Moonraker host and require explicit user confirmation before pause, resume, cancel, or emergency-stop actions.