find-stl

Review·Scanned 2/17/2026

This skill searches Printables and downloads ready-to-print models, producing a local folder and manifest.json with hashes and attribution. It issues network requests to https://api.printables.com/graphql/ and includes runnable examples like python3 scripts/find_stl.py that download files into ~/models/incoming.

from clawhub.ai·v215f097·9.6 KB·0 installs
Scanned from 0.1.0 at 215f097 · Transparency log ↗
$ vett add clawhub.ai/ajmwagar/find-stlReview findings below

find-stl

This skill provides a deterministic pipeline:

  • search Printables for models
  • select a candidate
  • download model files
  • write a manifest.json (source URL, author, license id, files, hashes)

Quick start

Search

python3 scripts/find_stl.py search "iphone 15 pro dock" --limit 10

Fetch

python3 scripts/find_stl.py fetch 1059554 --outdir out/models

By default, fetch downloads all model files (a ZIP pack) when available.

Notes

  • Printables download links are time-limited; this script resolves them via Printables GraphQL (getDownloadLink).
  • Always preserve license + attribution in the manifest.

Resources

  • scripts/find_stl.py