8ae0eb239a
Public demo of Factory 4 Life project management: - Gate definitions S0 (spec), S1 (build), S2 (integration), S3 (production ready) - Hardware project template with PlatformIO, KiCad CI, and Makefile for fab packages - JSON schema for .kill-life.yaml manifest - CLI scripts: create-project, validate-gates, dashboard with color-coded status output - Example project: led-controller (S0+S1 passed, S2 in progress)
17 lines
413 B
YAML
17 lines
413 B
YAML
kill_life:
|
|
version: 1
|
|
project: "example-led-controller"
|
|
repo: "electron-rare/life-project-example"
|
|
client: "demo"
|
|
gates:
|
|
s0: { status: passed, date: "2026-03-01" }
|
|
s1: { status: passed, date: "2026-03-15" }
|
|
s2: { status: in_progress }
|
|
s3: { status: pending }
|
|
hardware:
|
|
pcb_dir: hardware/pcb
|
|
bom_dir: hardware/bom
|
|
firmware:
|
|
framework: platformio
|
|
src_dir: firmware/src
|