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

@oaslananka/kicad-protocol-schemas

v1.4.0

Published

Shared versioned protocol schemas and validators for KiCad Studio Kit extension/MCP compatibility contracts.

Readme

KiCad Protocol Schemas

@oaslananka/kicad-protocol-schemas owns the product-neutral JSON Schema contracts shared by the KiCad Studio extension and kicad-mcp-pro.

The package has no VS Code API dependency and no Python server runtime dependency. TypeScript consumers can import the schema registry and Ajv-backed validators. Python contract tests read the same schemas/*.schema.json files directly with jsonschema.

Included Contracts

  • MCP tool discovery payloads returned by tools/list.
  • Tool capability metadata advertised by kicad-mcp-pro.
  • Extension-to-MCP active context payloads.
  • Normalized DRC/ERC diagnostic records.
  • BOM and netlist summary payloads.
  • MCP server health/version payloads.
  • Compatibility manifests for cross-product schema support.
  • The existing KiCad MCP server-info contract.

Schema versioning policy

Every schema file carries an x-kicad-studio-kit.schemaVersion value using MAJOR.MINOR.PATCH. Breaking schema changes require a major version bump. Backward-compatible field additions use a minor version bump, and documentation or constraint-only fixes use a patch version bump.

The package version follows the highest schema major in the package. A consumer that supports schema major 1 may accept any 1.x.y payload after validation. Consumers must reject unknown major versions unless the caller explicitly opts into compatibility fallback behavior.

Migration policy

Schema migrations are additive first. When a field must be renamed or removed, the old field remains accepted for one minor line and the new field is documented in this README and in the affected schema description. The next major version may remove the deprecated field after extension and MCP contract tests both pass against the replacement payload.

Run the schema package checks from the repository root:

corepack pnpm run check:protocol-schemas