Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 4.59 KB

File metadata and controls

47 lines (41 loc) · 4.59 KB

Documentation Index

A grep-friendly FAQ that maps common questions to the file that answers them. Both humans and LLM agents should use this table as the entry point into the fbuild docs.

Question File
How do I install fbuild? ../README.md
How do I run my first build / deploy / monitor? ../README.md
What does platformio.ini need to contain? ../README.md
Why does fbuild exist? WHY.md
What are fbuild's key benefits and performance numbers? WHY.md
Is my board supported? BOARD_STATUS.md
How do I add a new board? BOARD_STATUS.md
What's the crate dependency graph? ../crates/CLAUDE.md
How does fbuild's architecture fit together? architecture/overview.md
How does the daemon work? architecture/runtime.md
How does the serial / monitor subsystem work? architecture/serial.md
How do the PyO3 Python bindings work? architecture/pyo3-bindings.md
How does deploy preemption work? architecture/deploy-preemption.md
What are the cross-platform portability constraints? architecture/portability.md
How does library selection (LDF) work in fbuild? architecture/library-selection.md
Why was my library wrongly compiled (#204) / not found (#202)? architecture/library-selection.md
Why did we choose X over Y? DESIGN_DECISIONS.md
What's on the implementation roadmap? ROADMAP.md
How do I run tests / lint / fmt? DEVELOPMENT.md
Why is my build failing? DEVELOPMENT.md
How do I use the emulator (QEMU / avr8js / simavr)? ../README.md
What CI cache block should consumers copy? CI_CACHE.md
What cache keys and invalidation pattern should CI use? CI_CACHE.md
How do I cache fbuild across CI runs? CI_CACHING.md
What's safe to cache in GitHub Actions? CI_CACHING.md
Why does warm-pass build take ~30 s per sketch? (#91) PERF_WARM_BUILD.md
What does FBUILD_PERF_LOG=1 do? PERF_WARM_BUILD.md
How fast is soldr when building fbuild itself? SOLDR_BUILD_PERF.md
What architecture docs should I read for a given crate? CLAUDE.md

Conventions

  • The top-level README.md is the install + Quick Start entry point for humans.
  • CLAUDE.md at the repo root is the LLM-entry file; docs/CLAUDE.md is the LLM map into architecture docs.
  • Architecture docs live under docs/architecture/, one file per subsystem.
  • ADR-style decisions go in docs/DESIGN_DECISIONS.md.
  • Per-directory README.md files are enforced by a pre-commit hook — every directory with files needs one.

Keeping this index current

When a new doc is added under docs/, add a row to the table above. Prefer one FAQ-style question per row so readers can grep for the question they have.