diff --git a/.Jules/palette.md b/.Jules/palette.md
index 32fb11be..f5063a96 100644
--- a/.Jules/palette.md
+++ b/.Jules/palette.md
@@ -25,21 +25,27 @@
## 2024-06-23 - [Safe Scope UX Tooltips]
**Learning:** Adding helpful `title` tooltips to text indicating truncation (e.g., "... N more") significantly improves usability for screen readers and confused users without changing visual layouts. More importantly, when working in a repository with aggressive penetration testing (like STRIX), UX changes must avoid touching components that handle sensitive inputs (like `App.tsx` dealing with DSNs). If an agent modifies a vulnerable file, even just for a UX change, the CI will run the pen-test against that file and block the PR.
**Action:** Always verify the security posture of a file before making non-security changes to it. Prefer touching isolated display components (like `TableNode.tsx`) for UX enhancements rather than high-risk root components.
+## 2023-11-20 - Dynamic Screen Reader Labeling in Mapped Inputs
+**Learning:** In dynamically mapped rows (like column editing tables), assigning identical generic `aria-label` attributes to inputs across all rows destroys accessibility context for screen reader users. They hear repeated ambiguous announcements like "데이터 타입" without knowing which item it refers to.
+**Action:** When rendering dynamic lists of form inputs, ensure each `` element has a uniquely identifiable `aria-label` by prepending or interpolating the row's specific item name (e.g., `aria-label={`${columnName} 데이터 타입`}`).
+## 2024-06-26 - [Abbreviation Comprehension in ERD Nodes]
+**Learning:** Users without deep database administration backgrounds may not immediately recognize domain-specific abbreviations like "PK" or "FK" rendered as minimalist badges inside dense ERD nodes.
+**Action:** Always provide `title` attributes on technical acronym badges (like Primary Key / Foreign Key) to ensure clarity and improve accessibility without cluttering the space-constrained node UI.
## 2026-06-21 - Accessible Badges for Domain Abbreviations
**Learning:** ERD diagrams heavily use domain abbreviations like "PK", "FK", and "NOT NULL". For visually capable users, these are quickly recognized. However, for screen reader users or beginners, abbreviations can be ambiguous. Wrapping them in generic `span`s without `aria-label` or `title` results in poor accessibility and misses an opportunity to provide helpful context.
**Action:** When displaying technical or domain-specific abbreviations in badges (like PK/FK), consistently add a descriptive `title` (for mouse hover tooltips) and an `aria-label` (for screen readers) explaining the abbreviation's full meaning (e.g. "Primary Key").
-## 2026-06-28 - STRIX Security Intersections and Strict Scope Enforcement
-**Learning:** In projects with strict AI code review agents and security scanners (like STRIX), making multiple distinct micro-UX improvements (e.g. across different files or disparate components) in a single task intended for "ONE micro-UX improvement" will cause a CI failure. Furthermore, applying UX improvements to elements that handle potentially sensitive data (e.g. DSNs, or rendering unsanitized user input) can inadvertently trigger security scanners if those elements contain pre-existing vulnerabilities, blocking the PR entirely.
-**Action:** When tasked with a single micro-UX improvement, strictly isolate the change to one specific element and file. When choosing an element, actively avoid modifying components that handle credentials or render un-escaped user inputs to avoid intersecting with existing unpatched security flaws.
## 2026-06-25 - Text Truncation Accessibility
**Learning:** Elements using `text-overflow: ellipsis` can hide important table, column, example, and group context from users who need the full text.
**Action:** Treat native `title` as a convenience hover fallback only. Pair truncated text with an accessible name or description, and make the truncated element focusable when the full value is otherwise hidden.
## 2026-06-25 - SPA Noscript Fallbacks
**Learning:** A JavaScript-only SPA can show a blank screen when scripts are disabled, which is especially confusing for assistive technology users and locked-down browser environments.
**Action:** Add a localized `