Fix stale screen count and standings description in CLAUDE.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-03-01 18:48:38 -06:00
parent 9863f89309
commit defe741aba

View File

@ -34,7 +34,7 @@ src/
├── api/ # reqwest HTTP client, sync pipeline, CSV importers ├── api/ # reqwest HTTP client, sync pipeline, CSV importers
├── calc/ # league stats, matchup scoring, score cache, weights ├── calc/ # league stats, matchup scoring, score cache, weights
├── db/ # sqlx models, queries, schema ├── db/ # sqlx models, queries, schema
├── screens/ # ratatui screen states (all 6 screens complete) ├── screens/ # ratatui screen states (all 7 screens complete)
└── widgets/ # reusable UI components (selector) └── widgets/ # reusable UI components (selector)
``` ```
@ -53,7 +53,7 @@ src/
- `matchup.rs` — Standalone matchup analysis with sort modes, state cached on nav-away - `matchup.rs` — Standalone matchup analysis with sort modes, state cached on nav-away
- `lineup.rs` — Standalone lineup builder, save/load/delete with confirmation - `lineup.rs` — Standalone lineup builder, save/load/delete with confirmation
- `settings.rs` — Config form with TOML save, live team validation, per-field change indicators - `settings.rs` — Config form with TOML save, live team validation, per-field change indicators
- `standings.rs` — League standings with Division and Wild Card tabs, fetched live from API - `standings.rs` — League standings with Division and Wild Card tabs, DB-cached with background API refresh
## Code Style ## Code Style