Skip to main content

scadm - OpenSCAD Dependency Manager

scadm is a lightweight, python-based dependency manager for OpenSCAD projects. It simplifies installing OpenSCAD (nightly or stable) and managing library dependencies through a simple scadm.json file.

Features

  • 🚀 Install OpenSCAD: Automatically downloads and installs OpenSCAD (nightly or stable builds)
  • 📦 Manage Libraries: Install OpenSCAD libraries (BOSL2, MCAD, custom libraries) from GitHub
  • 🔄 Version Tracking: Keeps dependencies in sync with your project
  • 📋 Simple Config: Define dependencies in a single scadm.json file

Installation

Requirements: Python 3.11 or newer

pip install scadm

Quick Start

1. Create scadm.json in your project root

{
  "dependencies": [
    {
      "name": "BOSL2",
      "repository": "BelfrySCAD/BOSL2",
      "version": "266792b2a4bbf7514e73225dfadb92da95f2afe1",
      "source": "github"
    }
  ]
}

2. Install OpenSCAD and dependencies

scadm install

This will:

  • Download and install OpenSCAD to bin/openscad/
  • Install all libraries defined in scadm.json to bin/openscad/libraries/

Usage

Check version

scadm --version

Install everything (OpenSCAD + libraries)

scadm install                # Install based on scadm.json config (default: nightly latest)

[!NOTE] By default, scadm installs the latest nightly build of OpenSCAD. Configure the build type and version in scadm.json (see Configuration). Nightly builds are recommended since the stable release (2021.01) is outdated and missing modern features.

Show version info

scadm install --info         # Show configured, resolved, and installed versions

Check installation status

scadm install --check

Force reinstall

scadm install --force

Install only OpenSCAD

scadm install --openscad-only

Install only libraries

scadm install --libs-only

Flatten .scad files

Flatten include trees into single files — useful for platforms that require single-file uploads (e.g. MakerWorld Customizer).

# Single file
scadm flatten models/core/parts/connector.scad -o out/connector.scad

# Batch-flatten all files configured in scadm.json
scadm flatten --all

# Compute transitive dependency checksum (for caching)
scadm flatten --checksum models/core/parts/connector.scad

Batch mode reads "flatten" entries from scadm.json:

{
  "flatten": [
    {"src": "models/core/parts", "dest": "models/core/flattened"}
  ]
}

Unchanged files are skipped via SHA256 checksums stored in models/.flatten-checksums (gitignored; cached in CI).

File structure conventions

The flattener expects source .scad files to follow OpenSCAD Customizer conventions:

Root files (the files being flattened):

  1. Parameter sections/* [SectionName] */ blocks with customizable variables
  2. Hidden section/* [Hidden] */ with constants/variables hidden from the Customizer UI
  3. Main code — module/function calls that generate geometry

Variable placement rules:

  • Variables inside /* [SectionName] */ blocks → preserved in their respective sections
  • Variables in /* [Hidden] */ section → included in the Hidden section
  • In root files, place top-level variables inside a section block (/* [Hidden] */ or named) so they are preserved reliably during flattening
  • In library files, variables may appear anywhere — the flattener collects them regardless of position

Library files (resolved via include <...>):

  • May contain module/function definitions, constants, and variables in any order
  • Section markers (/* [SectionName] */) in library files are silently ignored — only root file sections are preserved in the output
  • Only effectively used definitions (modules, functions, variables) from the dependency chain are included — unused code is omitted
  • Library variables appear in the Hidden section with an origin comment (e.g. // --- from constants.scad ---)

Render .scad files

Validate .scad files by rendering them through the bundled OpenSCAD binary. "Rendering" means compiling the .scad source into a binary STL — this validates syntax, geometry, and that all includes resolve correctly. A non-zero exit code means something is broken.

# Explicit files
scadm render models/core/parts/connector.scad
scadm render file1.scad file2.scad

# Render flattened output files (from scadm.json flatten dest dirs)
scadm render --flattened

# Render source files that feed into flatten (from scadm.json flatten src dirs)
scadm render --source

# Both at once
scadm render --source --flattened

# Control parallelism (default: number of CPU cores)
scadm render --flattened -j 4

Renders run in parallel by default, using one thread per CPU core. Use -j/--jobs to override the worker count (e.g. -j 1 for sequential execution, -j 4 to cap at 4 workers).

The --source and --flattened flags discover files from scadm.json "flatten" entries automatically. They cannot be combined with explicit file arguments.

Configure VS Code extensions

These are opinionated QoL improvements to install nifty VSCode extensions which improve DevEx.

scadm vscode --openscad   # Install and configure OpenSCAD extension
scadm vscode --python     # Install and configure Python extension

OpenSCAD extension will:

  • Install the Leathong.openscad-language-support extension
  • Configure VS Code settings with correct OpenSCAD paths
  • Merge with existing settings (preserves unrelated configurations)

Python extension will:

  • Install the ms-python.python extension
  • Configure default interpreter path to ${workspaceFolder}/.venv (eliminates need to manually source venv when opening project)

[!NOTE] Settings are opinionated defaults designed to streamline development experience. They're configured in .vscode/settings.json (workspace-level), not globally.

[!IMPORTANT] Requires VS Code CLI (code command) to be available in PATH. If not found, you'll receive installation instructions.

Configuration

scadm.json Schema

{
  "openscad": {
    "type": "nightly",
    "version": "latest"
  },
  "dependencies": [
    {
      "name": "BOSL2",
      "repository": "BelfrySCAD/BOSL2",
      "version": "266792b2a4bbf7514e73225dfadb92da95f2afe1",
      "source": "github"
    },
    {
      "name": "homeracker",
      "repository": "kellerlabs/homeracker",
      "version": "homeracker-v1.7.3",
      "source": "github"
    }
  ]
}

OpenSCAD fields (optional — defaults to nightly/latest if omitted):

  • type: "nightly" (default) or "stable" — which build channel to use
  • version: "latest" (default) or a pinned version string (e.g., "2026.03.28")
    • "latest" resolves dynamically by scraping the OpenSCAD snapshots page (nightly) or the GitHub releases API (stable)
    • Pinned versions are used as-is without network access
    • Resolved versions are cached in bin/openscad/.resolved-version; use --force to bypass cache

Dependency fields:

  • name: Library name (creates bin/openscad/libraries/{name}/)
  • repository: GitHub repository in owner/repo format
  • version: Git tag, commit SHA, or branch name
  • source: Currently only "github" is supported

Directory Structure

After running scadm, your project will have:

your-project/
├── scadm.json
├── models/
│   └── your_model.scad
└── bin/openscad/
    ├── openscad.exe (or openscad appimage)
    └── libraries/
        ├── BOSL2/
        └── homeracker/

Use in OpenSCAD Files

include <BOSL2/std.scad>
include <homeracker/core/lib/connector.scad>

// Your code here

Renovate Integration

Keep your scadm.json dependencies automatically updated with Renovate:

Add this preset to your renovate.json:

{
  "extends": [
    "github>kellerlabs/homeracker:renovate-dependencies"
  ]
}

This preset enables automatic updates for:

  • Git commit SHAs (for tracking main/master branches)
  • Semantic version tags (v1.2.3)

License

MIT

Contributing

Issues and pull requests are welcome at kellerlabs/homeracker.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scadm-0.10.0.tar.gz (39.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scadm-0.10.0-py3-none-any.whl (27.9 kB view details)

Uploaded Python 3

File details

Details for the file scadm-0.10.0.tar.gz.

File metadata

  • Download URL: scadm-0.10.0.tar.gz
  • Upload date:
  • Size: 39.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scadm-0.10.0.tar.gz
Algorithm Hash digest
SHA256 7a91b5de4d608cf8deabb3a208b301330395178ced4bc0278482e77948614de3
MD5 3a291302eae78a77379439b550021944
BLAKE2b-256 083edaeb0ef322a20470fa27fb5fe317eab5eed68750c2ae01417fc524d93600

See more details on using hashes here.

Provenance

The following attestation bundles were made for scadm-0.10.0.tar.gz:

Publisher: publish-scadm.yml on kellerlabs/homeracker

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scadm-0.10.0-py3-none-any.whl.

File metadata

  • Download URL: scadm-0.10.0-py3-none-any.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scadm-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d0c14cfe5d8eb7867c458d2c3439fd236381460f4fbf1d3c986b9a30d125f27a
MD5 150fae78010b1d5b288ab5f081b30c8e
BLAKE2b-256 7836474df9615aa4a2841987d0680dd4e652dbb5c2d037359ef6c476cb961fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scadm-0.10.0-py3-none-any.whl:

Publisher: publish-scadm.yml on kellerlabs/homeracker

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page