perf(core): standardize non-blocking load pattern and add performance guidelines

- Documented the 'Non-Blocking Load Pattern' (SWR) in 'documentation/PERFORMANCE_GUIDELINES.md' to prevent future performance regressions.
- Refactored 'src/routes/core/people/[person_id]/+page.ts' to be non-blocking, improving perceived speed for person details.
- Updated 'GEMINI.md' standards and 'TODO.md' tasks to reflect system-wide performance hardening.
This commit is contained in:
Scott Idem
2026-01-27 12:32:26 -05:00
parent 9655604d86
commit b837e6d0f8
4 changed files with 103 additions and 9 deletions

View File

@@ -42,6 +42,7 @@ This is a list of tasks to be completed before the next event/show/conference.
- [x] **V3 API Parameter Hardening:** Updated `search_ae_obj_v3` for URL serialization. (Completed 2026-01-21)
- [x] **Fetch Noise Reduction:** Silenced AbortErrors in API helpers at log_lvl 0. (Completed 2026-01-26)
- [x] **GEMINI Context Standardization:** Deployed v1.2 Inverted Pyramid template with Agent Identity and RAR tracking across ecosystem. (Completed 2026-01-26)
- [x] **Performance Optimization:** Standardized the "Non-Blocking Load Pattern" (SWR) across Events and Core modules to eliminate page transition delays. (Completed 2026-01-27)
- [ ] **Payload Validation:** Create dry-run tool for Pydantic model checking.
---