Major documentation update bringing all docs current with the 122-tool, 16-category state of the project (previously frozen at v2.1.0-alpha/59 tools). New documentation (9 files): - FREEROUTING_GUIDE.md - autorouter setup, Docker/Podman, all 4 tools - SCHEMATIC_TOOLS_REFERENCE.md - all 27 schematic tools with parameters - ROUTING_TOOLS_REFERENCE.md - all 13 routing tools with examples - FOOTPRINT_SYMBOL_CREATOR_GUIDE.md - 8 creator tools with examples - SVG_IMPORT_GUIDE.md - SVG logo import tool - DATASHEET_TOOLS_GUIDE.md - datasheet enrichment tools - PCB_DESIGN_WORKFLOW.md - end-to-end design guide - ARCHITECTURE.md - system architecture for contributors - INDEX.md - documentation table of contents Updated documentation (12 files): - README.md - tool count 64->122, feature list, contributor credits - TOOL_INVENTORY.md - complete rebuild with all 122 tools - STATUS_SUMMARY.md - updated to v2.2.3 feature matrix - ROADMAP.md - marked completed milestones, added v2.3+ vision - KNOWN_ISSUES.md - removed resolved issues, added v2.2.x fixes - CLIENT_CONFIGURATION.md - added KICAD_MCP_DEV, FREEROUTING_JAR env vars - LIBRARY_INTEGRATION.md - added symbol and project-local library support - ROUTER_ARCHITECTURE.md, ROUTER_QUICK_START.md - updated tool counts - IPC_BACKEND_STATUS.md - updated dates - JLCPCB_USAGE_GUIDE.md - added cross-reference note - CONTRIBUTING.md - added ARCHITECTURE.md reference, updated tool count Archived 10 completed planning docs to docs/archive/. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4.4 KiB
4.4 KiB
Schematic Workflow Fix - Issue #26
Problem Summary
The schematic workflow was completely broken due to incorrect usage of the kicad-skip library:
create_projectonly created PCB files, no schematiccreate_schematiccreated orphaned schematic files not linked to projectsadd_schematic_componentcalled non-existentschematic.add_symbol()method- Project files didn't reference schematics in their structure
Root Cause
The kicad-skip library does not support creating symbols from scratch. The only way to add symbols is by cloning existing symbol instances.
From kicad-skip documentation:
"symbols: these don't have a new()" because they require complex mappings to library elements, pins, and properties.
Solution
1. Template-Based Approach
Created a template schematic (python/templates/template_with_symbols.kicad_sch) with:
- Complete
lib_symbolssection defining R, C, LED symbols - Three template symbol instances placed off-screen at (-100, -110, -120)
- Template symbols marked as
dnp yes,in_bom no,on_board noso they don't interfere
2. Updated Files
python/commands/project.py:
- Now creates both
.kicad_pcbAND.kicad_schfiles - Project file includes schematic reference in
sheetsarray - Copies template schematic with cloneable symbols
python/commands/schematic.py:
- Uses template file instead of creating from scratch
- Proper minimal schematic structure when template unavailable
python/commands/component_schematic.py:
- Completely rewritten to use
clone()API - Maps component types to template symbols
- Proper UUID generation for each cloned symbol
- Correct position setting:
symbol.at.value = [x, y, rotation]
3. Correct Workflow
from commands.project import ProjectCommands
from commands.schematic import SchematicManager
from commands.component_schematic import ComponentManager
# Step 1: Create project (creates both PCB and schematic)
project_cmd = ProjectCommands()
result = project_cmd.create_project({
"name": "MyProject",
"path": "/path/to/project"
})
# Step 2: Load the schematic
sch = SchematicManager.load_schematic(result['project']['schematicPath'])
# Step 3: Add components by cloning templates
component_def = {
"type": "R", # Maps to _TEMPLATE_R
"reference": "R1", # Component reference
"value": "10k", # Component value
"footprint": "Resistor_SMD:R_0603_1608Metric",
"x": 50.8, # Position in mm
"y": 50.8, # Position in mm
"rotation": 0 # Rotation in degrees
}
symbol = ComponentManager.add_component(sch, component_def)
# Step 4: Save the schematic
SchematicManager.save_schematic(sch, result['project']['schematicPath'])
Supported Component Types
Currently supported template symbols:
R- Resistor (maps to_TEMPLATE_R)C- Capacitor (maps to_TEMPLATE_C)DorLED- LED (maps to_TEMPLATE_D)
To add more component types, update:
python/templates/template_with_symbols.kicad_sch- Add lib_symbol definition and template instancepython/commands/component_schematic.py- Add mapping inTEMPLATE_MAP
Testing
Comprehensive test created at /tmp/test_schematic_workflow.py:
- Creates project with schematic
- Loads schematic
- Adds R, C, LED components
- Saves schematic
- Validates with
kicad-cli sch export pdf
All tests passing ✓
Files Modified
python/commands/project.py- Added schematic creationpython/commands/schematic.py- Fixed template usagepython/commands/component_schematic.py- Rewritten to use clone() APIpython/templates/empty.kicad_sch- Minimal template (created)python/templates/template_with_symbols.kicad_sch- Template with cloneable symbols (created)
Limitations
- Can only add components that have templates defined
- Template symbols remain in schematic (but marked as DNP/not in BOM)
- Complex symbols (multi-unit, hierarchical) may need custom templates
Future Improvements
- Add more component templates (transistors, connectors, ICs)
- Dynamic template generation from KiCad symbol libraries
- Auto-hide template symbols in schematic
- Support for custom user templates
References
- GitHub Issue: #26
- kicad-skip documentation: https://github.com/psychogenic/kicad-skip
- Test results:
/tmp/test_schematic_workflow/