From 137620daa358541544a5070df35cc7d36ce0ac97 Mon Sep 17 00:00:00 2001 From: Blomios Date: Wed, 24 Jun 2026 13:46:08 +0200 Subject: [PATCH] =?UTF-8?q?chore(gitignore):=20d=C3=A9track=20.ideai/layou?= =?UTF-8?q?ts.json=20(=C3=A9tat=20UI=20runtime=20machine-local)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit layouts.json portait l'état UI runtime (active layout id + session ids), reconstruit à l'exécution et last-writer-wins — même catégorie que .ideai/live-state.json déjà ignoré. Versionné à tort, il était écrasé par git au switch de branche → activeId périmé → "not found: layout X" → cellules figées. On le détrack (git rm --cached, fichier conservé sur disque) et on l'ajoute au .gitignore sous le bloc live-state. Le fix runtime (self-heal de l'active layout) viendra dans un commit séparé sur cette branche. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 3 +++ .ideai/layouts.json | 19 ------------------- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 .ideai/layouts.json diff --git a/.gitignore b/.gitignore index f48ab40..94b3908 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,9 @@ frontend/coverage/ # Volatile agent live-state snapshot ("who is doing what right now", lot LS2): # rebuilt at runtime, keyed last-writer-wins — not versioned (unlike .ideai/memory/). .ideai/live-state.json +# UI layout runtime state (active layout id + session ids) — machine-local, +# rebuilt at runtime, last-writer-wins — not versioned (same class as live-state.json). +/.ideai/layouts.json # ─── Editors / OS ─────────────────────────────────────────────────────────── .idea/ diff --git a/.ideai/layouts.json b/.ideai/layouts.json deleted file mode 100644 index 645f12f..0000000 --- a/.ideai/layouts.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "activeId": "49c6b0fc-13c1-40f5-9464-d3248ab54597", - "layouts": [ - { - "id": "49c6b0fc-13c1-40f5-9464-d3248ab54597", - "name": "Default", - "kind": "terminal", - "tree": { - "root": { - "type": "leaf", - "node": { - "id": "852f5128-5b98-4d36-9a18-e49a57fc4940" - } - } - } - } - ] -}