# Task 02 — Filesystem Inventory ## Goal Non-destructive inventory of every file under `SOURCE_ROOT`. ## Input - `work/config/pipeline.json` (Task 01). ## Actions 1. Write `scripts/fs_inventory.py` (streaming walk, constant memory). 2. For each file capture: relative path, path components (folder tokens), filename, extension, size bytes, mtime (ISO), sha-free quick id (path hash). 3. Emit `manifest/inventory.jsonl` (one JSON object per file) and load an index copy into `manifest/manifest.sqlite` table `inventory`. 4. Emit `manifest/inventory_summary.md`: file count, total size, count by extension, count and size by top-level folder, depth histogram. ## Intermediate Result (done when) - `inventory.jsonl` row count == filesystem file count. - `inventory_summary.md` produced; non-CSV extensions listed explicitly.