What problem does it solve? Managing third-party libraries like FatFs, diskio, and FreeRTOS for z88dk Z80 development requires manually placing binaries and headers into the correct classic or newlib directory trees, which is error-prone and target-specific. ## Core Features & Use Cases - Library Installation: Installs third-party libraries into the correct per-target paths for both classic (lib/clibs/lib/<target>/) and newlib (lib/clibs/{sccz80,sdcc_ix,sdcc_iy}/lib/<target>/) worlds. - Library Removal and Listing: Removes installed libraries with -r/--remove and lists installed libraries per target when invoked with only +target. - Use Case: When adding FatFs file I/O support to a ZX Spectrum or CP/M project, run z88dk-lib +target fatfs to place the library binaries and headers in the right locations instead of copying files by hand. ## Quick Start Ask the assistant to install the FatFs library for your chosen z88dk target using z88dk-lib and confirm the installed headers and library paths.