Jump to related tools in the same category or review the original source on GitHub.

Transportation @ajmwagar Updated 2/26/2026

Trace To Svg OpenClaw Skill - ClawHub

Do you want your AI agent to automate Trace To Svg workflows? This free skill from ClawHub helps with transportation tasks without building custom tools from scratch.

What this skill does

Trace bitmap images (PNG/JPG/WebP) into clean SVG paths using potrace/mkbitmap. Use to convert logos/silhouettes into vectors for downstream CAD workflows (e.g., create-dxf etch_svg_path) and for turning reference images into manufacturable outlines.

Install

npx clawhub@latest install trace-to-svg

Full SKILL.md

Open original
namedescription
trace-to-svgTrace bitmap images (PNG/JPG/WebP) into clean SVG paths using potrace/mkbitmap. Use to convert logos/silhouettes into vectors for downstream CAD workflows (e.g., create-dxf etch_svg_path) and for turning reference images into manufacturable outlines.

trace-to-svg

Convert a bitmap into a vector SVG using mkbitmap + potrace.

Quick start

# 1) Produce a silhouette-friendly SVG
bash scripts/trace_to_svg.sh input.png --out out.svg

# 2) Higher contrast + less noise
bash scripts/trace_to_svg.sh input.png --out out.svg --threshold 0.6 --turdsize 20

# 3) Feed into create-dxf (example)
# - set create-dxf drawing.etch_svg_paths[].d to the SVG path `d` you want, or
# - store the traced SVG and reference it in your pipeline.

Notes

  • This is best for logos, silhouettes, high-contrast shapes.
  • For photos or complex shading, results depend heavily on thresholding.
  • Output is usually one or more <path> elements.
Original URL: https://github.com/openclaw/skills/blob/main/skills/ajmwagar/trace-to-svg

Related skills

If this matches your use case, these are close alternatives in the same category.