Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/ux-millers-chunking.md
1---2title: Chunk Data into Groups of 5-93impact: HIGH4tags: ux, millers, chunking, memory5---67## Chunk Data into Groups of 5-989Working memory holds about 7 items. Group and chunk large data sets so they're scannable.1011**Incorrect (raw unformatted data):**1213```tsx14<span>4532015112830366</span>15```1617**Correct (chunked for readability):**1819```tsx20<span>4532 0151 1283 0366</span>21```2223Reference: Miller, G. A. (1956). The magical number seven, plus or minus two.24