openscad
Audited by Runlayer on Feb 23, 2026
Malicious tool definition detected
if ":" in bracket_content and not "," in bracket_content: range_val = bracket_content else: options_val = bracket_content # Output pipe-delimited print(f"{var_name}|{value}|{var_type}|{range_val}|{options_val}|{description}") ' "$INPUT" } if [ "$JSON_OUTPUT" = true ]; then echo "[" first=true while IFS='|' read -r name value type range options description; do if [ "$first" = true ]; then first=false else echo "," fi # Escape quotes in values value=$(echo "$value" | sed 's/"/\\"/g') description=$
Malicious tool definition detected
Tool: tools/preview.sh Description: #!/bin/bash # Generate a preview PNG from an OpenSCAD file # Usage: preview.sh input.scad output.png [options] # # Options: # --camera=x,y,z,rx,ry,rz,dist Camera position # --size=WxH Image size (default: 800x600) # -D 'var=value' Set parameter value set -e SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" source "$SCRIPT_DIR/common.sh" check_openscad if [ $# -lt 2 ]; then echo "Usage: $0 input.scad output.png [--camera=...
Malicious tool definition detected
Tool: tools/validate.sh Description: #!/bin/bash # Validate an OpenSCAD file for syntax errors # Usage: validate.sh input.scad set -e SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" source "$SCRIPT_DIR/common.sh" check_openscad if [ $# -lt 1 ]; then echo "Usage: $0 input.scad" exit 1 fi INPUT="$1" if [ !
Tool passed security scan
Tool passed security scan
Tool passed security scan
Passed Files (4)Click to expand
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan