e67fb754c2
Session kxkm-ai 25-26 mars 2026 — 98/98 tâches TODO complétées. Hardware: - KiCad 10.0.0 native avec sym/fp-lib-table locales - Nouveau block SPI (gen_spi_header.py), ERC clean - Module partagé hardware/lib/kicad_gen.py (5 générateurs refactorisés) - Pipeline export: tools/hw/hw_export.sh (ERC + SVG + PDF + netlist) - KiBot 1.8.5 installé, .kibot.yaml configuré Firmware: - Fix I2S driver conflict: migration I2sMic vers nouvelle API i2s_channel_* - Fix WDT risk: yield() dans CompletePushToTalk (voice_controller.cpp) - Fix XSS wifi_manager.cpp: innerHTML → createElement/textContent - Fix null check FwIsValidWavHeader - Dead code supprimé: i2s_audio.cpp.bak, i2s_audio.h Simulation MCU: - QEMU ESP32-S3 v9.2.2 installé (tools/sim/) - Script run_qemu_esp32s3.sh — boot OK vérifié - [env:esp32s3_qemu] dans platformio.ini - Wokwi CI: wokwi.toml + diagram.json + scenario.yaml - SPICE bridge POC: tools/sim/spice_bridge.py (ngspice → ADC/brownout) Compliance: - Profil iot_wifi_eu validé (16 standards, 8 evidence) - 4 evidence remplis: risk_assessment, security_architecture, test_plan_radio_emc, supply_chain_declarations - plan.yaml complété avec données produit réelles CI: - Job hardware-export (KiCad 10 ERC + SVG + PDF + netlist) - Job firmware-sim (Wokwi, conditionnel WOKWI_CLI_TOKEN) - evidence_pack.yml enrichi avec exports hardware Docs & RAG: - specs/02_arch.md complet (481 lignes, 4 ADR, diagrammes) - docs/SIMULATION.md (3 niveaux: native, QEMU, Wokwi) - 6 chunks ingérés dans kb-kicad RAG - Dataset HF: tools/generate_hf_dataset.py + datasets/kb_kicad_qa.jsonl - Rapport analyse: docs/plans/ANALYSIS_REPORT_2026-03-25.md - Recherche OSS: docs/research/oss_similar_projects.md Infra: - ZeroClaw 0.1.7 installé (cargo install) - APIFY_API_KEY configurée, smoke OK - Tests: 39/39 firmware + 26/26 Python stable Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
# KiBot configuration — Kill_LIFE ESP32-S3 Minimal Power Board
|
|
# Usage: kibot -c .kibot.yaml -e esp32_minimal.kicad_sch
|
|
# CI: See .github/workflows/ci.yml job hardware-export
|
|
|
|
kibot:
|
|
version: 1
|
|
|
|
global:
|
|
output: '../../artifacts/hw/%D/'
|
|
date_format: '%Y-%m-%d'
|
|
|
|
outputs:
|
|
# Schematic SVG export
|
|
- name: sch_svg
|
|
comment: "Export schematic to SVG"
|
|
type: svg_sch_print
|
|
options:
|
|
output: '%f-sch.%x'
|
|
|
|
# Schematic PDF export
|
|
- name: sch_pdf
|
|
comment: "Export schematic to PDF"
|
|
type: pdf_sch_print
|
|
options:
|
|
output: '%f-sch.%x'
|
|
|
|
# BOM — Bill of Materials (CSV)
|
|
- name: bom_csv
|
|
comment: "Generate BOM as CSV"
|
|
type: bom
|
|
options:
|
|
output: '%f-bom.%x'
|
|
format: CSV
|
|
columns:
|
|
- field: Reference
|
|
name: Reference
|
|
- field: Value
|
|
name: Value
|
|
- field: Footprint
|
|
name: Footprint
|
|
- field: Manufacturer
|
|
name: Manufacturer
|
|
- field: MPN
|
|
name: MPN
|
|
- field: Quantity Per PCB
|
|
name: Qty
|
|
|
|
# Netlist export
|
|
- name: netlist
|
|
comment: "Export KiCad netlist"
|
|
type: netlist
|
|
options:
|
|
output: '%f.%x'
|