Borrowing it
Nothing to install: this file belongs to oaslananka/kicad-mcp-pro. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/oaslananka/kicad-mcp-pro/main/.opencode/skills/wired-subcircuit-design/SKILL.mdgit clone --depth 1 https://github.com/oaslananka/kicad-mcp-proWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/oaslananka/kicad-mcp-pro/wired-subcircuit-design)<a href="https://agentmods.dev/skills/oaslananka/kicad-mcp-pro/wired-subcircuit-design"><img src="https://agentmods.dev/badge/skills/oaslananka/kicad-mcp-pro/wired-subcircuit-design/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oaslananka/kicad-mcp-pro/wired-subcircuit-design"><img src="https://agentmods.dev/badge/skills/oaslananka/kicad-mcp-pro/wired-subcircuit-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00048 | $0.01158 |
| Opus 5 | $0.00024 | $0.00579 |
| Sonnet 5 | $0.00010 | $0.00232 |
| Haiku 4.5 | $0.00005 | $0.00116 |
Grade A, and why
wired-subcircuit-design scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Wired Sub-circuit Design Skill
Use this skill when an agent must produce a schematic that looks like a person
drew it — wired functional blocks, conventional power, a clean breakout bus — not
just an electrically valid netlist. It is the deliberate, higher-effort path that
sch_build_circuit(auto_layout=True, nets=...) cannot reach.
Specific to oaslananka/kicad-mcp-pro. Keep in sync with
docs/tools-reference.generated.md. Worked reference:
examples/gallery/esp32-c3-wroom-02-breakout.
Why auto layout is not enough
sch_build_circuit with nets uses a collision-safe terminal strategy: every
pin endpoint gets a stub plus a same-named global label / power symbol, so nets
connect by name and can never short by crossing geometry. That is correct and
ERC-clean, but it reads as a machine netlist: every decoupling cap floats between
its own +3V3 and GND labels instead of being wired. Showcase quality needs
explicit placement and wires. The cosmetic score never measures this — judge the
render, not the number.
The one rule that avoids a blank sheet
Build the whole sheet in a single sch_build_circuit pass with explicit
symbols (with coordinates), wires, labels and power_symbols — and no
nets, no auto_layout. Do not assemble a schematic from scratch with
repeated sch_add_symbol calls: a freshly seeded sheet has no root UUID that the
reader round-trips, so each incremental add stamps a different instance path and
KiCad renders a blank sheet even though the file parses. One pass writes one
consistent root UUID, so every symbol lands on the root sheet.
Compute exact pin coordinates up front with get_pin_positions(lib, sym, x, y, rot) (pure geometry — no placement needed), then wire pin-tip to pin-tip.
Design pattern
- Anchor the main part (MCU / module) in the center.
- Wire the sub-circuit islands. Decoupling, reset, boot-strap, status LED, regulators — draw each as a real wired block ending in power symbols. This is what separates a showcase from auto output; do not let these become floating labelled pins.
- Label bus for the breakout. Route general IO to a header with matched local
labels. Generate the part-side and header-side labels from one source list
so the two label sets are identical by construction — this eliminates the whole
isolated_pin_label/label_danglingclass, not just the ones you happen to see. - Conventional power.
+3V3up,GNDdown; put exactly onePWR_FLAGon each supply net so ERC sees the rails driven. - Place each sub-circuit in its own x-column below the anchor, and keep
decoupling clear of the anchor's stub fan — most first-pass ERC errors
(
multiple_net_names) come from a power symbol landing on a neighbouring label. - Fill the title block with
sch_set_title_block_info.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 93 lines · 48 tokens per session scan A 8811b5c5d44c
wired-subcircuit-design is a skill published in the GitHub repository oaslananka/kicad-mcp-pro (83 stars, last pushed today), licensed MIT. It adds 48 tokens to every session and 1,158 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
jlcpcb-headstage-pcb
A project-specific guide for reviewing and improving printed-circuit-board designs made for JLCPCB's electronics-manufacturing service. It also covers manufacturing files such as Gerbers and drill files.
circuit-design
Use when designing an electronic circuit from requirements, choosing topology or regulator type, selecting component values, planning protection circuits, or deciding what goes on a board before schematic capture begins. Also use when the user asks "what components do I need" or "how should I power this.".
using-kicad
Use when starting any conversation involving electronics, KiCad, PCB design, schematic capture, circuit design, or EDA tasks.
schematic-plan
Use after circuit-design produces a validated BOM (specs/bom.md) to plan exact component placement coordinates and wiring before schematic capture begins. Pure planning — no file modifications.
pcb-layout
Use when placing footprints on a PCB, routing traces, adding vias or copper zones, deciding trace widths, or planning board layout strategy. Also use when the user asks about PCB stackup, ground planes, trace spacing, or component placement on a board.
schematic-design
Use when executing a schematic placement plan (plan mode) or modifying an existing schematic (modification mode).