npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

buildwithtrace

v0.1.6

Published

AI-powered PCB design CLI. Design, review, convert, and manufacture circuit boards from your terminal.

Readme

buildwithtrace

AI-powered PCB design CLI. Design, review, convert, and manufacture circuit boards from your terminal.

Changelog: CLI & SDK Release Notes (this npm package is a thin installer wrapper around the buildwithtrace Python CLI — release notes live there).

Installation

# Via npm (recommended)
npx buildwithtrace

# Or install globally
npm install -g buildwithtrace

# Or via pip
pip install buildwithtrace

# Or via Homebrew
brew install buildwithtrace/tap/buildwithtrace

Requirements

  • Node.js 18+ (for the npm wrapper)
  • Python 3.10+ (automatically detected and used to create a virtual environment)

Usage

# Sign in
buildwithtrace auth login

# Ask the AI about your design (read-only)
buildwithtrace ask "What decoupling caps do I need for this STM32?"

# Generate a symbol or footprint
buildwithtrace generate symbol "STM32F401"

# Run electrical / design rule checks (local engine)
buildwithtrace erc ./my-project.kicad_sch
buildwithtrace drc ./my-project.kicad_pcb

# Convert an Altium schematic to KiCad
buildwithtrace convert schematic ./design.SchDoc

# Check the design against a manufacturer's capabilities
buildwithtrace dfm check ./my-project/ -m pcbway

The command is buildwithtrace. We don't ship a trace binary (it collides with the macOS system /usr/bin/trace); add alias trace=buildwithtrace yourself if you want a shorter name.

Commands

| Command | Description | | ------------- | ------------------------------------------------ | | ask | Ask the AI about a design (read-only) | | chat | Interactive AI design session | | agent/plan| Execute edits / multi-step plan mode | | generate | Generate symbols and footprints | | erc/drc | Local electrical / design rule checks | | gerbers/export | Manufacturing + PDF/SVG/STEP export | | convert | Altium ↔ KiCad ↔ Trace JSON conversion | | dfm/order | DFM checks and manufacturing orders | | review | AI-powered design review | | auth | Authenticate with your Trace account |

How It Works

The npm package is a lightweight wrapper that:

  1. Detects Python 3.10+ on your system
  2. Creates an isolated virtual environment
  3. Downloads and installs the buildwithtrace Python wheel
  4. Proxies all commands to the Python CLI

If Python isn't available, it falls back to a system-installed buildwithtrace binary.

Documentation

Full documentation: docs.buildwithtrace.com

License

See LICENSE for details.