Skip to main content
ClaudeWave
Skill228 estrellas del repoactualizado yesterday

operating-kicad-eda

KiCad EDA orchestration via kicad-mcp MCP server. Routes 17 tools for schematic creation, PCB layout, autorouting, DRC, and Gerber export. Enforces serialized PCB ops, library-first lookup, and autoroute-only routing.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/telagod/code-abyss /tmp/operating-kicad-eda && cp -r /tmp/operating-kicad-eda/skills/operating-kicad-eda ~/.claude/skills/operating-kicad-eda
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Operating KiCad EDA

> MCP tool router for KiCad 9. Never guess, never hand-route, never parallelize PCB writes.

## When to use

| Scenario | Use | Approach |
|----------|-----|----------|
| Create schematic from design doc | Yes | `schematic()` operations |
| Generate PCB from schematic | Yes | `build_pcb_from_schematic` |
| Route a PCB | Yes | `autoroute(operation="run")` only |
| Fix DRC violations | Yes | `drc(operation="autofix")` |
| Export manufacturing files | Yes | `export()` Gerber/BOM/render |
| Hand-place a single trace | **NO** | LLM traces violate clearances |

## Iron rules

1. **NEVER hand-route** — `pcb(add_trace/add_via)` produces DRC-failing garbage. Use `autoroute(operation="run")`.
2. **NEVER guess names** — footprint and symbol names change between KiCad versions. Always `library(operation="search")` first.
3. **SERIALIZE PCB ops** — MCP PCB tools do load/modify/save. Parallel calls corrupt the `.kicad_pcb` file.
4. **VERIFY after changes** — `drc(operation="run")` + `audit(operation="all")` before declaring done.

## MCP tool routing table

| Task | MCP Tool | Operation |
|------|----------|-----------|
| Search parts | `library` | `search` |
| Create/edit schematic | `schematic` | `create_symbol`, `add_wire`, `add_label` |
| Build PCB from schematic | `build_pcb_from_schematic` | — (standalone) |
| Place footprints | `pcb` | `place_footprint` |
| Set board outline | `pcb` | `set_board_outline` |
| Add zones (copper pour) | `pcb` | `add_zone` |
| Auto-route | `autoroute` | `run` |
| Run DRC | `drc` | `run` |
| Auto-fix DRC | `drc` | `autofix` |
| Export Gerber | `export` | `gerber` |
| Export BOM | `export` | `bom` |
| 3D render | `export` | `render` |
| Estimate board size | `estimate_board_size` | — (standalone) |
| Suggest placement | `suggest_placement` | — (standalone) |
| Full audit | `audit` | `all` |

## Standard pipeline

```
1. library(search) → find symbols and footprints
2. schematic(create_symbol) → place all components
3. schematic(add_wire/add_label) → connect nets
4. [Python] footprint injection script → fix kicad-cli lookup
5. build_pcb_from_schematic → initial PCB
6. pcb(set_board_outline) → product form factor
7. suggest_placement or pcb(place_footprint) → position components
8. autoroute(run) → FreeRouter
9. drc(run) → check
10. drc(autofix) → fix violations
11. pcb(add_zone) → GND copper pour both layers
12. export(gerber) → manufacturing files
13. export(render) → 3D views
```

## References

| Topic | File |
|-------|------|
| KiCad 9 parse quirks | [kicad9-quirks.md](references/kicad9-quirks.md) |
| DRC fix strategies | [drc-strategies.md](references/drc-strategies.md) |
| Footprint injection | [footprint-injection.md](references/footprint-injection.md) |

## Exit criteria

- [ ] ERC: 0 errors (warnings acceptable)
- [ ] DRC: 0 violations
- [ ] All nets routed (no unconnected)
- [ ] Gerber zip exportable
analyzing-changesSkill

Analyzes code changes, detects documentation drift, and evaluates change impact scope. Use when reviewing diffs, checking doc sync, or running pre-commit analysis. Automatically triggered after design-level changes or refactoring.

analyzing-securitySkill

Scans code for security vulnerabilities, detects dangerous patterns, and ensures security decisions are documented. Use when running security scans, auditing code, or checking for OWASP issues, injection risks, or sensitive data leaks. Automatically triggered on new modules, security-related changes, or post-refactor.

analyzing-spreadsheetsSkill

Processes Excel spreadsheet files (.xlsx, .xlsm, .csv). Creates workbooks, builds formulas, preserves formatting, analyzes tabular data, and validates financial models with zero-formula-error delivery. Use when working with spreadsheet files or tabular data analysis. Do NOT use for Word documents, PDFs, presentations, or database pipelines.

applying-ui-design-systemSkill

Frontend UI design system selector and implementation guide covering Glassmorphism, Liquid Glass (Apple-style), Neubrutalism, and Claymorphism. Use when building UI components, choosing a visual aesthetic, implementing design tokens, or auditing accessibility/contrast on themed surfaces. Provides per-style tokens, component patterns, dark mode, and a11y constraints.

architecting-securitySkill

安全架构与治理:威胁建模 (STRIDE/PASTA/LINDDUN)、零信任身份架构、IAM/SSO/MFA/PAM、合规框架 (SOC2/PCI/HIPAA/GDPR)、DLP、隐私工程、安全控制设计。Use when designing security architecture, threat modeling new systems, implementing zero-trust identity, designing IAM/SSO/PAM, building compliance evidence chains, or planning privacy-by-design.

automating-devopsSkill

DevOps knowledge reference covering Git workflows, testing strategies, DevSecOps, release pipeline orchestration (release.yml, multi-arch images, cosign integration), CI/CD pipelines, database management, observability, and performance optimization. Use when working with Git, CI/CD, release pipelines, ghcr image publishing, testing, monitoring, or infrastructure automation.

building-agent-systemsSkill

AI agent and LLM system engineering reference covering single-agent dev (ReAct, tool calling, plan-execute), multi-agent coordination (swarm, role decomposition, file locking), LLM security (prompt injection, jailbreak defense, output filtering), RAG architecture (chunking, hybrid retrieval, rerank), and prompt engineering / evaluation (RAGAS, LLM-as-Judge). Use when building AI agents, designing RAG pipelines, orchestrating multi-agent workflows, hardening LLM apps, or writing prompts.

checking-code-qualitySkill

Checks code quality metrics including complexity, duplication, naming conventions, and function length. Use when running quality gates, reviewing code smells, or checking lint rules. Automatically triggered on complex modules or post-refactor.