@elsahafy/ux-mcp-server 2.0.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +159 -18
- package/dist/index.js +2130 -8
- package/knowledge/ai-ml-patterns.json +192 -0
- package/knowledge/analytics-metrics.json +521 -0
- package/knowledge/angular-patterns.json +347 -0
- package/knowledge/ar-vr-interfaces.json +139 -0
- package/knowledge/color-theory.json +499 -0
- package/knowledge/data-viz.json +527 -0
- package/knowledge/design-system-advanced.json +533 -0
- package/knowledge/ecommerce-patterns.json +616 -0
- package/knowledge/ethical-design.json +484 -0
- package/knowledge/finance-ux.json +208 -0
- package/knowledge/forms.json +641 -0
- package/knowledge/haptic-feedback.json +102 -0
- package/knowledge/healthcare-ux.json +209 -0
- package/knowledge/information-architecture.json +494 -0
- package/knowledge/microcopy.json +743 -0
- package/knowledge/mobile-patterns.json +537 -0
- package/knowledge/neurodiversity.json +228 -0
- package/knowledge/pwa-patterns.json +429 -0
- package/knowledge/saas-patterns.json +613 -0
- package/knowledge/testing-validation.json +561 -0
- package/knowledge/typography.json +509 -0
- package/knowledge/voice-ui.json +359 -0
- package/knowledge/vue-patterns.json +279 -0
- package/knowledge/web-components.json +148 -0
- package/package.json +1 -1
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Information Architecture (IA)",
|
|
3
|
+
"description": "Comprehensive guide to organizing and structuring information for optimal findability and usability",
|
|
4
|
+
"definition": "Information Architecture is the practice of organizing, structuring, and labeling content in an effective and sustainable way to help users find information and complete tasks",
|
|
5
|
+
"core_principles": {
|
|
6
|
+
"findability": {
|
|
7
|
+
"description": "Users can quickly locate the information they need",
|
|
8
|
+
"techniques": ["Clear navigation", "Robust search", "Logical grouping", "Consistent labeling"]
|
|
9
|
+
},
|
|
10
|
+
"discoverability": {
|
|
11
|
+
"description": "Users can find information they didn't know existed",
|
|
12
|
+
"techniques": ["Related content links", "Recommendations", "Breadth in navigation", "Serendipitous discovery"]
|
|
13
|
+
},
|
|
14
|
+
"clarity": {
|
|
15
|
+
"description": "Structure and labels are unambiguous",
|
|
16
|
+
"techniques": ["User-centered language", "Avoid jargon", "Consistent terminology", "Clear hierarchy"]
|
|
17
|
+
},
|
|
18
|
+
"scalability": {
|
|
19
|
+
"description": "IA can grow without breaking",
|
|
20
|
+
"techniques": ["Flexible categories", "Metadata", "Clear governance", "Documented taxonomy"]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"ia_components": {
|
|
24
|
+
"organization_systems": {
|
|
25
|
+
"description": "How information is categorized and grouped",
|
|
26
|
+
"schemes": {
|
|
27
|
+
"exact": {
|
|
28
|
+
"alphabetical": {
|
|
29
|
+
"use_when": "Known-item seeking (dictionaries, directories)",
|
|
30
|
+
"example": "Contact directory sorted A-Z",
|
|
31
|
+
"pros": ["Predictable", "Universally understood"],
|
|
32
|
+
"cons": ["Requires knowing exact name", "Poor for browsing"]
|
|
33
|
+
},
|
|
34
|
+
"chronological": {
|
|
35
|
+
"use_when": "Time-sensitive content (news, events, history)",
|
|
36
|
+
"example": "Blog posts by date, event calendar",
|
|
37
|
+
"pros": ["Natural for temporal content", "Clear ordering"],
|
|
38
|
+
"cons": ["Doesn't support browsing by topic"]
|
|
39
|
+
},
|
|
40
|
+
"geographical": {
|
|
41
|
+
"use_when": "Location-based content (store locator, regional sites)",
|
|
42
|
+
"example": "Store locator by state/city",
|
|
43
|
+
"pros": ["Intuitive for local content"],
|
|
44
|
+
"cons": ["Limited to geographically relevant content"]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"ambiguous": {
|
|
48
|
+
"topical": {
|
|
49
|
+
"use_when": "Content with clear subject matter (most websites)",
|
|
50
|
+
"example": "News site (Politics, Sports, Technology)",
|
|
51
|
+
"pros": ["Natural browsing", "Supports exploration"],
|
|
52
|
+
"cons": ["Subjective groupings", "Overlapping categories"]
|
|
53
|
+
},
|
|
54
|
+
"task_oriented": {
|
|
55
|
+
"use_when": "Goal-driven users (tools, applications)",
|
|
56
|
+
"example": "Banking app (Transfer Money, Pay Bills, Check Balance)",
|
|
57
|
+
"pros": ["Matches user goals", "Reduces cognitive load"],
|
|
58
|
+
"cons": ["Requires understanding user tasks"]
|
|
59
|
+
},
|
|
60
|
+
"audience": {
|
|
61
|
+
"use_when": "Distinct user groups with different needs",
|
|
62
|
+
"example": "University site (Students, Faculty, Alumni, Parents)",
|
|
63
|
+
"pros": ["Personalized experience", "Targeted content"],
|
|
64
|
+
"cons": ["Users may fit multiple audiences", "Duplication of content"]
|
|
65
|
+
},
|
|
66
|
+
"metaphor": {
|
|
67
|
+
"use_when": "Unfamiliar domains (leverage familiar concepts)",
|
|
68
|
+
"example": "Desktop metaphor (folders, files, trash)",
|
|
69
|
+
"pros": ["Leverages existing mental models"],
|
|
70
|
+
"cons": ["Can be limiting", "May not scale well"]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"hybrid": {
|
|
74
|
+
"description": "Combining multiple schemes (most common in practice)",
|
|
75
|
+
"example": "E-commerce site: Products by Category (topical) + Shop by Brand (alphabetical) + New Arrivals (chronological)",
|
|
76
|
+
"best_practice": "Use different schemes for different contexts, not on the same level"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"labeling_systems": {
|
|
81
|
+
"description": "How information is represented through labels",
|
|
82
|
+
"types": {
|
|
83
|
+
"contextual_links": {
|
|
84
|
+
"description": "Links within content that lead to related information",
|
|
85
|
+
"example": "See also: [Related Article]",
|
|
86
|
+
"best_practices": ["Use descriptive anchor text", "Avoid 'click here'", "Link to relevant, specific pages"]
|
|
87
|
+
},
|
|
88
|
+
"headings": {
|
|
89
|
+
"description": "Titles that represent a section of content",
|
|
90
|
+
"hierarchy": "H1 (page title) → H2 (main sections) → H3 (subsections)",
|
|
91
|
+
"best_practices": ["One H1 per page", "Logical hierarchy", "Descriptive, not clever", "Include keywords"]
|
|
92
|
+
},
|
|
93
|
+
"navigation_labels": {
|
|
94
|
+
"description": "Menu items and links in navigation systems",
|
|
95
|
+
"best_practices": [
|
|
96
|
+
"Use user's language (not internal jargon)",
|
|
97
|
+
"Be specific ('Products' better than 'Offerings')",
|
|
98
|
+
"Avoid generic labels ('Information', 'Resources')",
|
|
99
|
+
"Keep short (1-2 words when possible)",
|
|
100
|
+
"Consistent capitalization (Title Case or Sentence case)"
|
|
101
|
+
],
|
|
102
|
+
"examples": {
|
|
103
|
+
"good": ["Pricing", "Features", "Support", "Login"],
|
|
104
|
+
"bad": ["Solutions", "About Us", "More", "Stuff"]
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"index_terms": {
|
|
108
|
+
"description": "Keywords and tags for search and filtering",
|
|
109
|
+
"controlled_vocabulary": {
|
|
110
|
+
"description": "Predefined, standardized set of terms",
|
|
111
|
+
"example": "Medical Subject Headings (MeSH) in PubMed",
|
|
112
|
+
"pros": ["Consistency", "Precision", "Easier search"],
|
|
113
|
+
"cons": ["Requires maintenance", "Can be restrictive"]
|
|
114
|
+
},
|
|
115
|
+
"free_tagging": {
|
|
116
|
+
"description": "User-generated, uncontrolled tags",
|
|
117
|
+
"example": "Blog post tags, social media hashtags",
|
|
118
|
+
"pros": ["Flexible", "Emergent categorization"],
|
|
119
|
+
"cons": ["Inconsistent", "Synonyms", "Typos"]
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"iconic_labels": {
|
|
123
|
+
"description": "Visual representations (icons, images)",
|
|
124
|
+
"best_practices": [
|
|
125
|
+
"Use with text labels (don't rely on icons alone)",
|
|
126
|
+
"Use standard, recognizable icons",
|
|
127
|
+
"Test icon comprehension with users",
|
|
128
|
+
"Provide tooltips/alt text"
|
|
129
|
+
],
|
|
130
|
+
"standard_icons": {
|
|
131
|
+
"hamburger": "Menu",
|
|
132
|
+
"magnifying_glass": "Search",
|
|
133
|
+
"shopping_cart": "Cart",
|
|
134
|
+
"house": "Home",
|
|
135
|
+
"gear": "Settings",
|
|
136
|
+
"question_mark": "Help"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"navigation_systems": {
|
|
142
|
+
"description": "Ways to browse and move through information",
|
|
143
|
+
"global_navigation": {
|
|
144
|
+
"description": "Persistent, site-wide navigation",
|
|
145
|
+
"placement": "Header (most common) or left sidebar",
|
|
146
|
+
"items": "5-7 top-level items (max 9 per Miller's Law)",
|
|
147
|
+
"best_practices": [
|
|
148
|
+
"Present on every page (consistent location)",
|
|
149
|
+
"Highlight current section",
|
|
150
|
+
"Make clickable/tappable areas large enough",
|
|
151
|
+
"Include search and account/login"
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"local_navigation": {
|
|
155
|
+
"description": "Navigation within a section or area",
|
|
156
|
+
"placement": "Sidebar or sub-menu",
|
|
157
|
+
"example": "Documentation sidebar showing page hierarchy",
|
|
158
|
+
"best_practices": ["Show current location", "Expand current section", "Limit depth to 3 levels"]
|
|
159
|
+
},
|
|
160
|
+
"utility_navigation": {
|
|
161
|
+
"description": "Supplementary navigation for secondary tasks",
|
|
162
|
+
"placement": "Top-right header or footer",
|
|
163
|
+
"typical_items": ["Login", "Account", "Cart", "Language selector", "Contact"],
|
|
164
|
+
"best_practices": ["Smaller than global nav", "Consistent location", "Icons OK (with labels)"]
|
|
165
|
+
},
|
|
166
|
+
"breadcrumb_navigation": {
|
|
167
|
+
"description": "Shows user's location in hierarchy",
|
|
168
|
+
"format": "Home > Category > Subcategory > Current Page",
|
|
169
|
+
"placement": "Above page title or below header",
|
|
170
|
+
"best_practices": [
|
|
171
|
+
"Use on deep sites (3+ levels)",
|
|
172
|
+
"Make all levels clickable (except current)",
|
|
173
|
+
"Use separator (> or /)",
|
|
174
|
+
"Don't use on flat sites"
|
|
175
|
+
],
|
|
176
|
+
"types": {
|
|
177
|
+
"location_based": "Shows hierarchical position (most common)",
|
|
178
|
+
"path_based": "Shows user's journey (rarely recommended)",
|
|
179
|
+
"attribute_based": "Shows filter selections (e-commerce)"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"footer_navigation": {
|
|
183
|
+
"description": "Comprehensive navigation at page bottom",
|
|
184
|
+
"structure": "Multiple columns of links",
|
|
185
|
+
"typical_sections": ["About", "Products/Services", "Support", "Legal", "Social media"],
|
|
186
|
+
"best_practices": ["Organize by topic", "Include sitemap link", "4-5 columns max (desktop)", "Stack on mobile"]
|
|
187
|
+
},
|
|
188
|
+
"contextual_navigation": {
|
|
189
|
+
"description": "Links within content to related information",
|
|
190
|
+
"types": {
|
|
191
|
+
"related_items": "See also, Related articles",
|
|
192
|
+
"next_previous": "Sequential navigation (multi-page articles)",
|
|
193
|
+
"inline_links": "Hyperlinks within body text"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"search_systems": {
|
|
198
|
+
"description": "How users query and retrieve information",
|
|
199
|
+
"search_types": {
|
|
200
|
+
"basic_search": {
|
|
201
|
+
"description": "Simple keyword search",
|
|
202
|
+
"placement": "Header (visible on all pages)",
|
|
203
|
+
"best_practices": ["Persistent", "Large enough target (250-300px wide)", "Autofocus on activation", "Placeholder text (e.g., 'Search...')"]
|
|
204
|
+
},
|
|
205
|
+
"advanced_search": {
|
|
206
|
+
"description": "Multi-field search with operators",
|
|
207
|
+
"use_when": "Large content repositories, power users",
|
|
208
|
+
"fields": ["Keyword", "Date range", "Author", "Category", "File type"],
|
|
209
|
+
"best_practices": ["Link from basic search", "Don't replace basic search", "Provide search tips"]
|
|
210
|
+
},
|
|
211
|
+
"faceted_search": {
|
|
212
|
+
"description": "Search + filters (most common in e-commerce)",
|
|
213
|
+
"components": ["Search query", "Filters (facets)", "Results", "Applied filters"],
|
|
214
|
+
"best_practices": [
|
|
215
|
+
"Show result count per filter",
|
|
216
|
+
"Allow multi-select within facets",
|
|
217
|
+
"Sticky filters (don't disappear on scroll)",
|
|
218
|
+
"Clear all filters option",
|
|
219
|
+
"Show applied filters prominently"
|
|
220
|
+
]
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"search_features": {
|
|
224
|
+
"autocomplete": {
|
|
225
|
+
"description": "Suggests queries as user types",
|
|
226
|
+
"show": ["Popular searches", "Recent searches", "Predicted completions", "Direct results"],
|
|
227
|
+
"best_practices": ["Limit to 5-8 suggestions", "Highlight matching text", "Allow keyboard navigation", "< 200ms response time"]
|
|
228
|
+
},
|
|
229
|
+
"autosuggest": {
|
|
230
|
+
"description": "Shows results while typing (instant search)",
|
|
231
|
+
"use_when": "Small result sets (< 1000 items)",
|
|
232
|
+
"best_practices": ["Categorize suggestions (Products, Pages, Help)", "Show thumbnails if visual", "Debounce input (300ms)"]
|
|
233
|
+
},
|
|
234
|
+
"search_results": {
|
|
235
|
+
"display": {
|
|
236
|
+
"title": "Clickable, descriptive (H2 or H3)",
|
|
237
|
+
"snippet": "Excerpt showing query in context (150-200 chars)",
|
|
238
|
+
"url": "Breadcrumb-style URL",
|
|
239
|
+
"metadata": "Date, author, category (if relevant)"
|
|
240
|
+
},
|
|
241
|
+
"pagination": "10-20 results per page",
|
|
242
|
+
"no_results": {
|
|
243
|
+
"message": "No results found for '[query]'",
|
|
244
|
+
"suggestions": ["Check spelling", "Try different keywords", "Browse categories", "Contact support"],
|
|
245
|
+
"alternatives": "Show popular pages or search tips"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"search_analytics": {
|
|
249
|
+
"track": ["Top queries", "Zero-result queries", "Query refinements", "Click-through rate"],
|
|
250
|
+
"use": "Identify content gaps, improve search, optimize IA"
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"metadata": {
|
|
255
|
+
"description": "Data about data - descriptive information that aids organization and retrieval",
|
|
256
|
+
"types": {
|
|
257
|
+
"descriptive": {
|
|
258
|
+
"purpose": "Identify and describe content",
|
|
259
|
+
"examples": ["Title", "Author", "Subject", "Keywords", "Description"]
|
|
260
|
+
},
|
|
261
|
+
"structural": {
|
|
262
|
+
"purpose": "How content is organized",
|
|
263
|
+
"examples": ["Chapter", "Section", "Page number", "Table of contents"]
|
|
264
|
+
},
|
|
265
|
+
"administrative": {
|
|
266
|
+
"purpose": "Manage content",
|
|
267
|
+
"examples": ["Created date", "Modified date", "Creator", "Access rights", "Version"]
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"schema": {
|
|
271
|
+
"dublin_core": {
|
|
272
|
+
"description": "Standard metadata element set",
|
|
273
|
+
"elements": ["Title", "Creator", "Subject", "Description", "Publisher", "Date", "Type", "Format", "Identifier"],
|
|
274
|
+
"use_when": "Libraries, archives, digital collections"
|
|
275
|
+
},
|
|
276
|
+
"custom_schema": {
|
|
277
|
+
"description": "Domain-specific metadata",
|
|
278
|
+
"example": "E-commerce: SKU, Price, Brand, Color, Size, Material",
|
|
279
|
+
"best_practices": ["Document schema", "Enforce required fields", "Validate data", "Version schema"]
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"ia_process": {
|
|
285
|
+
"research": {
|
|
286
|
+
"stakeholder_interviews": {
|
|
287
|
+
"purpose": "Understand business goals and constraints",
|
|
288
|
+
"questions": ["What are the business objectives?", "Who are the users?", "What content exists?", "What are technical constraints?"]
|
|
289
|
+
},
|
|
290
|
+
"user_research": {
|
|
291
|
+
"methods": {
|
|
292
|
+
"user_interviews": {
|
|
293
|
+
"purpose": "Understand user needs, tasks, mental models",
|
|
294
|
+
"questions": ["How do you currently find information?", "What do you expect to see?", "What terms do you use?"]
|
|
295
|
+
},
|
|
296
|
+
"card_sorting": {
|
|
297
|
+
"description": "Users organize content cards into groups",
|
|
298
|
+
"types": {
|
|
299
|
+
"open": "Users create and name groups (discover mental models)",
|
|
300
|
+
"closed": "Users sort into predefined groups (validate IA)",
|
|
301
|
+
"hybrid": "Combination of both"
|
|
302
|
+
},
|
|
303
|
+
"sample_size": "15-30 participants per user group",
|
|
304
|
+
"tools": ["OptimalSort", "UserZoom", "Miro (remote)"]
|
|
305
|
+
},
|
|
306
|
+
"tree_testing": {
|
|
307
|
+
"description": "Users find items in a text-based hierarchy (no design)",
|
|
308
|
+
"purpose": "Validate IA before design",
|
|
309
|
+
"process": ["Give task ('Where would you find...')", "User navigates tree", "Measure success rate and path"],
|
|
310
|
+
"tools": ["Treejack", "UserZoom", "UsabilityHub"]
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"content_inventory": {
|
|
315
|
+
"description": "Comprehensive list of all content",
|
|
316
|
+
"fields": ["Page ID", "URL", "Title", "Owner", "Last updated", "Format", "Status", "Notes"],
|
|
317
|
+
"use": "Understand scope, identify duplication, plan migration"
|
|
318
|
+
},
|
|
319
|
+
"content_audit": {
|
|
320
|
+
"description": "Qualitative assessment of content",
|
|
321
|
+
"evaluate": ["Accuracy", "Relevance", "Tone", "Completeness", "Findability"],
|
|
322
|
+
"actions": ["Keep", "Revise", "Delete", "Combine", "Create new"],
|
|
323
|
+
"use": "Improve content quality, reduce clutter"
|
|
324
|
+
},
|
|
325
|
+
"competitive_analysis": {
|
|
326
|
+
"description": "Analyze competitor IA",
|
|
327
|
+
"evaluate": ["Navigation structure", "Labeling", "Search functionality", "User flows"],
|
|
328
|
+
"use": "Identify industry standards, opportunities, best practices"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"strategy": {
|
|
332
|
+
"ia_diagram": {
|
|
333
|
+
"description": "Visual representation of site structure",
|
|
334
|
+
"types": {
|
|
335
|
+
"site_map": "Hierarchical page structure",
|
|
336
|
+
"user_flow": "Paths users take to complete tasks",
|
|
337
|
+
"content_model": "Relationships between content types"
|
|
338
|
+
},
|
|
339
|
+
"tools": ["Miro", "Figma", "Lucidchart", "Whimsical", "OmniGraffle"]
|
|
340
|
+
},
|
|
341
|
+
"taxonomy": {
|
|
342
|
+
"description": "Hierarchical classification system",
|
|
343
|
+
"structure": "Controlled vocabulary organized in parent-child relationships",
|
|
344
|
+
"example": "Animals > Mammals > Primates > Apes > Gorillas",
|
|
345
|
+
"best_practices": [
|
|
346
|
+
"Single hierarchy (not multiple parents)",
|
|
347
|
+
"Mutually exclusive categories",
|
|
348
|
+
"Balance breadth vs depth (avoid too deep)",
|
|
349
|
+
"Document criteria for categories",
|
|
350
|
+
"Plan for growth"
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
"controlled_vocabulary": {
|
|
354
|
+
"description": "Standardized terms for consistent labeling",
|
|
355
|
+
"benefits": ["Reduces ambiguity", "Improves search", "Supports translation", "Enables filtering"],
|
|
356
|
+
"maintenance": ["Assign owner", "Regular reviews", "Documented process for adding terms"]
|
|
357
|
+
},
|
|
358
|
+
"metadata_schema": {
|
|
359
|
+
"description": "Standardized metadata fields",
|
|
360
|
+
"process": ["Identify content types", "Define required/optional fields", "Create data dictionary", "Document guidelines"],
|
|
361
|
+
"governance": ["Assign roles", "Enforce validation", "Regular audits"]
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"validation": {
|
|
365
|
+
"tree_testing": {
|
|
366
|
+
"description": "Test IA before design (see user_research above)",
|
|
367
|
+
"metrics": ["Success rate (> 80% good)", "Directness (first click accuracy)", "Time on task"]
|
|
368
|
+
},
|
|
369
|
+
"first_click_testing": {
|
|
370
|
+
"description": "Where users click first for a task",
|
|
371
|
+
"finding": "First click predicts success (users rarely recover from wrong first click)",
|
|
372
|
+
"tools": ["Chalkmark", "UsabilityHub"]
|
|
373
|
+
},
|
|
374
|
+
"usability_testing": {
|
|
375
|
+
"description": "Test IA in context of design",
|
|
376
|
+
"tasks": ["Find specific information", "Complete a goal", "Compare options"],
|
|
377
|
+
"observe": ["Navigation paths", "Search usage", "Confusion points", "Success/failure"]
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"ia_patterns": {
|
|
382
|
+
"hierarchical": {
|
|
383
|
+
"description": "Tree structure with parent-child relationships",
|
|
384
|
+
"use_when": "Clear categorization, content can be grouped logically",
|
|
385
|
+
"example": "News site: Home > Category > Subcategory > Article",
|
|
386
|
+
"pros": ["Familiar", "Scalable", "Clear structure"],
|
|
387
|
+
"cons": ["Can be limiting", "May not match user mental model", "Difficult to represent cross-cutting content"]
|
|
388
|
+
},
|
|
389
|
+
"database_model": {
|
|
390
|
+
"description": "Bottom-up, metadata-driven (faceted)",
|
|
391
|
+
"use_when": "Large, homogeneous content sets (products, articles)",
|
|
392
|
+
"example": "E-commerce filtering by brand, price, color, size",
|
|
393
|
+
"pros": ["Flexible", "Multiple access points", "User control"],
|
|
394
|
+
"cons": ["Requires robust metadata", "Can be overwhelming", "Complex to implement"]
|
|
395
|
+
},
|
|
396
|
+
"hub_spoke": {
|
|
397
|
+
"description": "Central hub with spokes to sub-sites",
|
|
398
|
+
"use_when": "Multiple semi-independent sections",
|
|
399
|
+
"example": "University site: Main site → School of Engineering, School of Arts",
|
|
400
|
+
"pros": ["Supports autonomy", "Clear structure", "Scalable"],
|
|
401
|
+
"cons": ["Can feel fragmented", "Requires strong central brand"]
|
|
402
|
+
},
|
|
403
|
+
"sequential": {
|
|
404
|
+
"description": "Linear progression through content",
|
|
405
|
+
"use_when": "Onboarding, checkout, tutorials, multi-step forms",
|
|
406
|
+
"example": "E-commerce checkout: Cart → Shipping → Payment → Confirmation",
|
|
407
|
+
"pros": ["Focused", "Clear next steps", "Reduces overwhelm"],
|
|
408
|
+
"cons": ["Inflexible", "Can't skip steps easily", "Back button issues"]
|
|
409
|
+
},
|
|
410
|
+
"matrix": {
|
|
411
|
+
"description": "Two-dimensional organization",
|
|
412
|
+
"use_when": "Content has two clear dimensions",
|
|
413
|
+
"example": "Recipe site: Cuisine (rows) × Course (columns)",
|
|
414
|
+
"pros": ["Multiple access paths", "Comprehensive"],
|
|
415
|
+
"cons": ["Can be confusing", "Doesn't scale beyond 2 dimensions"]
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"best_practices": [
|
|
419
|
+
"Start with user research (don't guess)",
|
|
420
|
+
"Use card sorting to understand mental models",
|
|
421
|
+
"Test IA with tree testing before design",
|
|
422
|
+
"Limit navigation to 7±2 items (Miller's Law)",
|
|
423
|
+
"Use clear, user-centered labels (avoid jargon)",
|
|
424
|
+
"Provide multiple ways to find content (navigation, search, links)",
|
|
425
|
+
"Keep hierarchy shallow (3-4 levels max)",
|
|
426
|
+
"Use breadcrumbs for deep sites",
|
|
427
|
+
"Make search prominent and powerful",
|
|
428
|
+
"Ensure consistent labeling across site",
|
|
429
|
+
"Document IA decisions and rationale",
|
|
430
|
+
"Plan for scalability (future content)",
|
|
431
|
+
"Use metadata to enable flexible organization",
|
|
432
|
+
"Test with real users and real tasks",
|
|
433
|
+
"Iterate based on analytics and feedback",
|
|
434
|
+
"Maintain a sitemap (for users and SEO)",
|
|
435
|
+
"Provide contextual navigation (related links)",
|
|
436
|
+
"Highlight current location in navigation",
|
|
437
|
+
"Optimize for both browsing and searching",
|
|
438
|
+
"Consider mobile navigation patterns"
|
|
439
|
+
],
|
|
440
|
+
"anti_patterns": [
|
|
441
|
+
"Organizing by internal org structure (not user needs)",
|
|
442
|
+
"Using jargon or internal terminology",
|
|
443
|
+
"Too many navigation items (> 9)",
|
|
444
|
+
"Too deep hierarchy (> 4 levels)",
|
|
445
|
+
"Inconsistent labeling",
|
|
446
|
+
"Generic labels ('More', 'Other', 'Miscellaneous')",
|
|
447
|
+
"Hidden navigation (requires multiple clicks)",
|
|
448
|
+
"No search functionality",
|
|
449
|
+
"Poor search (no autocomplete, bad results)",
|
|
450
|
+
"No breadcrumbs on deep sites",
|
|
451
|
+
"Duplicate content in multiple categories",
|
|
452
|
+
"No way to recover from dead ends",
|
|
453
|
+
"Orphan pages (not linked from anywhere)",
|
|
454
|
+
"Mega menus with overwhelming options",
|
|
455
|
+
"Relying on icons without text",
|
|
456
|
+
"Forcing users to navigate through hierarchy",
|
|
457
|
+
"No faceted filtering for large datasets",
|
|
458
|
+
"Ignoring mobile navigation needs",
|
|
459
|
+
"Not validating IA with users",
|
|
460
|
+
"Skipping IA phase (jumping to design)"
|
|
461
|
+
],
|
|
462
|
+
"metrics": {
|
|
463
|
+
"findability": {
|
|
464
|
+
"task_success_rate": { "target": "> 80%", "measure": "Users complete find-task successfully" },
|
|
465
|
+
"time_on_task": { "target": "As low as possible", "measure": "Time to find information" },
|
|
466
|
+
"search_refinements": { "target": "< 2 per session", "measure": "Users refine search query" }
|
|
467
|
+
},
|
|
468
|
+
"navigation": {
|
|
469
|
+
"first_click_accuracy": { "target": "> 60%", "measure": "Correct first click predicts success" },
|
|
470
|
+
"navigation_depth": { "target": "< 3 clicks to content", "measure": "Average clicks to reach content" },
|
|
471
|
+
"bounce_rate": { "target": "< 50%", "measure": "Users leave after one page" }
|
|
472
|
+
},
|
|
473
|
+
"search": {
|
|
474
|
+
"zero_result_searches": { "target": "< 10%", "measure": "Searches with no results" },
|
|
475
|
+
"search_exit_rate": { "target": "< 30%", "measure": "Users leave from search results" },
|
|
476
|
+
"search_refinement_rate": { "target": "< 40%", "measure": "Users refine search" }
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
"tools": {
|
|
480
|
+
"research": ["OptimalSort (card sorting)", "Treejack (tree testing)", "UserZoom", "UsabilityHub", "Miro (remote workshops)"],
|
|
481
|
+
"diagramming": ["Miro", "Figma", "Lucidchart", "Whimsical", "OmniGraffle", "draw.io"],
|
|
482
|
+
"content_inventory": ["Content Analysis Tool (CAT)", "Screaming Frog", "Google Sheets"],
|
|
483
|
+
"analytics": ["Google Analytics", "Hotjar", "FullStory", "Mixpanel"],
|
|
484
|
+
"search": ["Algolia", "Elasticsearch", "Coveo", "Swiftype"]
|
|
485
|
+
},
|
|
486
|
+
"resources": [
|
|
487
|
+
"Information Architecture for the World Wide Web (Rosenfeld & Morville) - 'Polar Bear Book'",
|
|
488
|
+
"How to Make Sense of Any Mess (Abby Covert)",
|
|
489
|
+
"Information Architecture: Blueprints for the Web (Christina Wodtke)",
|
|
490
|
+
"Nielsen Norman Group - IA articles",
|
|
491
|
+
"IA Institute - Professional organization",
|
|
492
|
+
"Boxes and Arrows - IA publication"
|
|
493
|
+
]
|
|
494
|
+
}
|