From 2b2324ee8a8783415c99a7c9e632d0525ac241c2 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Mon, 20 Apr 2026 15:31:29 -0400 Subject: [PATCH] Updated to do list --- documentation/TODO__Agents.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/documentation/TODO__Agents.md b/documentation/TODO__Agents.md index 526dd71d..bbcb1ef7 100644 --- a/documentation/TODO__Agents.md +++ b/documentation/TODO__Agents.md @@ -14,9 +14,18 @@ warnings but can still upload. Covers `.ppt`, `.doc` (block) and other legacy exts (warn-only). (2026-04-19) -- [x] **[Files] Hide draft/flagged files from list** — `hide_draft` prop in `launcher_file_cont.svelte` - now hides files with `file_purpose == 'outline'`, `'draft'`, or `'admin'` when the launcher's - hide-draft toggle is enabled. (2026-04-19) +- [x] **[Files] Hide internal-purpose files from Launcher by default** — renamed `hide_draft` prop + to `show_internal_purpose_files` in `launcher_file_cont.svelte`; logic flipped so `false` (the + default) hides files with `file_purpose == 'outline'`, `'draft'`, or `'admin'`. Store key renamed + from `hide_content__draft_files` (inverted, misleading) to `show_content__internal_files: false` + (show-on-opt-in, consistent with all other `show_content__*` flags). Updated across all 8 Launcher + templates that pass this prop. (2026-04-19, revised 2026-04-20) + +- [x] **[Launcher] Remove duplicate session API call on session select** — `menu_session_list.svelte` + was calling `load_ae_obj_id__event_session` directly AND then `goto()` triggered `+page.ts` which + also called it — two concurrent calls per session click. Removed the direct call entirely; + `+page.ts` is now the sole owner of session data loading. `goto()` promise assigned to + `ae_promises.slct__event_session_id` to drive the existing `{#await}` spinner. (2026-04-20) - [ ] **[Electron/Launcher] Deploy + test Aether Native Electron app on Mac laptops** — build, deploy, and verify on onsite Mac laptops. Additional testing of cache/launch flow still needed