kicad-manufacture
Manufacturing and fabrication workflow for KiCAD projects via MCP tools. Triggers on: "send to fab", "order boards", "gerbers", "JLCPCB", "manufacturing",…
Library management workflow for KiCAD — creating symbols, footprints, and managing libraries via MCP tools. Triggers on: "create a symbol", "make a footprint", "custom component", "register library", "find a part", "pin numbering", "new symbol", "new footprint", "add to
$ npx -y skills add mixelpixx/Konnect --skill kicad-library --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kicad-libraryContext preview
The summary Claude sees to decide when to auto-load this skill.
Library management workflow for KiCAD — creating symbols, footprints, and managing libraries via MCP tools. Triggers on: "create a symbol", "make a footprint", "custom component", "register library", "find a part", "pin numbering", "new symbol", "new footprint", "add to
name: kicad-library description: | Library management workflow for KiCAD — creating symbols, footprints, and managing libraries via MCP tools. Triggers on: "create a symbol", "make a footprint", "custom component", "register library", "find a part", "pin numbering", "new symbol", "new footprint", "add to library", "library path", "pad layout". argument-hint: "[component or library task]"
This skill guides Claude through creating and managing KiCAD symbols, footprints, and libraries using Konnect MCP tools. ALL modifications go through MCP tools — never edit .kicad_sym or .kicad_mod files directly.
---
load_toolset('library') # search_symbols, search_footprints, create_symbol, create_footprint,
# edit_footprint_pad, set_footprint_graphics, set_footprint_metadata,
# set_footprint_models, get_footprint_info, register_symbol_library,
# register_footprint_library, get_symbol_info
load_toolset('pcb_components') # update_footprints_from_library for placed instancesAlways call `get_active_toolsets()` first to see what is already loaded.
---
Editing a `.kicad_mod` library file does not change copies already embedded on a board. After a library edit, call `update_footprints_from_library`; it is Konnect's MCP equivalent of KiCad **Tools → Update Footprints from Library**.
This operation is not `update_pcb_from_schematic`. Schematic sync updates schematic-owned fields while preserving artwork. Library refresh replaces supported library-owned pads, graphics, attributes, metadata, and 3D models while preserving the placed footprint's reference, value, position, rotation, board side, locked state, KIID, symbol metadata, instance overrides, and pad nets by logical pad number.
Always dry-run first:
update_footprints_from_library( board, references?, library_ids?, dry_run, expected_plan_revision? )
`diagnostics`.
fallback.
library content returns a non-mutating conflict for the whole selection.
---
**Always search existing libraries before creating custom components.**
search_symbols(query) # Search all symbol libraries search_footprints(query) # Search all footprint libraries
KiCAD ships with extensive libraries. Common parts almost always exist:
Only create a custom symbol/footprint when:
---
**There is no safe universal pin-numbering rule for a real part.** Physical lead numbers are defined by the exact manufacturer part number and package suffix. BJT and MOSFET lead order varies between manufacturers, packages and variants; bottom-view, mirrored, socketed and connector drawings reverse it. A symbol can be syntactically valid and still be electrically wrong when its pins and the footprint's pads describe different physical leads.
Even KiCad's own generic symbols do not follow one order — `Device:LED` is **pin 1 = K (cathode), pin 2 = A (anode)**, the opposite of the "pin 1 = anode" rule people expect. Check, do not assume.
Before creating or wiring a package-sensitive part:
1. `search_symbols` / `list_symbols_in_library` first — prefer an existing library symbol over authoring a new one. 2. Confirm the exact manufacturer part number **and** package suffix. 3. Note the drawing view of every datasheet figure (top, bottom, component, solder, mating). An unstated view is the most common source of mirrored parts. 4. Walk the physical leads from the documented key, in the documented direction. 5. Reconcile three counts: datasheet leads, symbol pins, footprint pads. Document any intentional duplicate or mechanical-only pad. 6. Read the result back with `get_symbol_info` and `get_footprint_info` rather than trusting what you just wrote. 7. **Refuse to use the part in a real schematic** while any mirror, reversal, duplicate, missing lead or view ambiguity is unresolved.
For every custom or package-sensitive part, complete this record before the symbol and footprint are accepted. "Looks sequential" and a matching pin count are not evidence.
Record the manufacturer, exact MPN and package suffix, datasheet document number/revision, source URL, relevant page numbers, symbol library ID, and footprint library ID. Then add one row for **every physical lead**:
| Datasheet lead | Function | Symbol pin / name / type | Footprint pad | X/Y (mm) | Drawing view / direction | Evidence | |---|---|---|---|---|---|---| | 1 | Example only | 1 / NAME / passive | 1 | 0.00 / 0.00 | bottom view, clockwise from key | datasheet p. N, figure M |
Apply these rules to the table:
datum in the stated direction. State top, bottom, component, solder, pin, or mating view in every row; never silently translate between views.
electrical function. List exposed pads, shields, mounting tabs, and mechanical holes separately and state whet
AI-assisted PCB design for KiCAD 10. Konnect is a native KiCAD plugin — a single Rust binary — that lets Claude and other AI assistants design schematics and PCBs through the Model Context Protocol (MCP). 226 tools across 21 on-demand toolsets.
Repo: mixelpixx/Konnect
Manufacturing and fabrication workflow for KiCAD projects via MCP tools. Triggers on: "send to fab", "order boards", "gerbers", "JLCPCB", "manufacturing",…
Workflow skill for KiCAD PCB layout and routing via MCP tools. Triggers on: "layout the board", "route traces", "PCB", "place footprints", "copper pour",…
Design review and validation workflow for KiCAD projects via MCP tools. Triggers on: "review my design", "check for errors", "audit", "DRC", "ERC", "find…
Workflow skill for KiCAD schematic design via MCP tools. Triggers on: "design a circuit", "add a component", "wire up", "connect pins", "build schematic",…
Mandatory operating rules for ANY task involving KiCAD projects. Loaded when the user mentions KiCAD, schematics, PCBs, or any .kicad_* file. Prevents file…