Datasheet To Symbol Lib
Description
Claude skill to convert electronic component datasheets into KiCad symbol libraries.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
datasheet-to-symbol-lib
A [Claude Skill](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview) that turns a component datasheet PDF into a KiCad symbol library.
Point Claude at a datasheet and ask it to generate KiCad symbols. The skill walks through identifying every part number, extracting and verifying pinouts (including multi-unit parts and alternate/muxed pin functions) into a JPD (JSON Part Description) file, then builds the `.kicad_sym` library with the **kipart MCP server**'s `jpd2spd`, `spd2csv`, and `kipart` tools.
Why
Hand-transcribing a pin table straight into a symbol is error prone — a dropped pin, a transposed number, a missed alternate function. None of these throw an error in the `kipart` toolchain; they just produce a wrong-but-plausible symbol. This skill's core design choice is to never go straight from "read the PDF" to a symbol: everything is landed in a **JPD file** — the JSON format `kipart` itself defines — which is machine-checked and verified against the source first. JPD is the one artifact authored by AI from which `jpd2spd` generates the SPD, `spd2csv` the CSV, and `kipart` the `.kicad_sym`, so there's a single source of truth and no re-transcription step.
What's in this repo
datasheet-to-symbol-lib/
├── SKILL.md # The skill itself: six-step workflow, verification, failure modes
├── example.jpd # A sample JPD, used to smoke-test the MCP wiring
├── scripts/
│ └── verify_jpd.py # Mechanical checker run against the JPD before building
└── references/
└── jpd_for_datasheets.md # Datasheet→type/style mapping and the fields this skill adds
`SKILL.md` is the entry point Claude reads when the skill triggers. `references/jpd_for_datasheets.md` is pulled in as needed rather than loaded up front, per the [progressive disclosure](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview) pattern skills use.
The JPD schema itself is *not* kept
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11