cbrowser 16.7.1 → 16.8.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.
Files changed (73) hide show
  1. package/README.md +2 -0
  2. package/dist/browser.d.ts.map +1 -1
  3. package/dist/browser.js +52 -7
  4. package/dist/browser.js.map +1 -1
  5. package/dist/cognitive/index.d.ts.map +1 -1
  6. package/dist/cognitive/index.js +22 -0
  7. package/dist/cognitive/index.js.map +1 -1
  8. package/dist/index.d.ts +1 -0
  9. package/dist/index.d.ts.map +1 -1
  10. package/dist/index.js +3 -0
  11. package/dist/index.js.map +1 -1
  12. package/dist/personas.d.ts.map +1 -1
  13. package/dist/personas.js +17 -2
  14. package/dist/personas.js.map +1 -1
  15. package/dist/testing/nl-test-suite.d.ts +2 -0
  16. package/dist/testing/nl-test-suite.d.ts.map +1 -1
  17. package/dist/testing/nl-test-suite.js +38 -1
  18. package/dist/testing/nl-test-suite.js.map +1 -1
  19. package/dist/values/index.d.ts +14 -0
  20. package/dist/values/index.d.ts.map +1 -0
  21. package/dist/values/index.js +17 -0
  22. package/dist/values/index.js.map +1 -0
  23. package/dist/values/persona-values.d.ts +36 -0
  24. package/dist/values/persona-values.d.ts.map +1 -0
  25. package/dist/values/persona-values.js +343 -0
  26. package/dist/values/persona-values.js.map +1 -0
  27. package/dist/values/schwartz-values.d.ts +207 -0
  28. package/dist/values/schwartz-values.d.ts.map +1 -0
  29. package/dist/values/schwartz-values.js +130 -0
  30. package/dist/values/schwartz-values.js.map +1 -0
  31. package/dist/values/value-mappings.d.ts +97 -0
  32. package/dist/values/value-mappings.d.ts.map +1 -0
  33. package/dist/values/value-mappings.js +520 -0
  34. package/dist/values/value-mappings.js.map +1 -0
  35. package/docs/personas/Persona-ADHD.md +135 -0
  36. package/docs/personas/Persona-ElderlyUser.md +131 -0
  37. package/docs/personas/Persona-FirstTimer.md +131 -0
  38. package/docs/personas/Persona-ImpatientUser.md +132 -0
  39. package/docs/personas/Persona-Index.md +170 -0
  40. package/docs/personas/Persona-LowVision.md +133 -0
  41. package/docs/personas/Persona-MobileUser.md +133 -0
  42. package/docs/personas/Persona-MotorTremor.md +133 -0
  43. package/docs/personas/Persona-PowerUser.md +129 -0
  44. package/docs/personas/Persona-ScreenReaderUser.md +133 -0
  45. package/docs/research/Bibliography.md +269 -0
  46. package/docs/research/Research-Methodology.md +224 -0
  47. package/docs/traits/Trait-AnchoringBias.md +219 -0
  48. package/docs/traits/Trait-AttributionStyle.md +272 -0
  49. package/docs/traits/Trait-AuthoritySensitivity.md +133 -0
  50. package/docs/traits/Trait-ChangeBlindness.md +163 -0
  51. package/docs/traits/Trait-Comprehension.md +172 -0
  52. package/docs/traits/Trait-Curiosity.md +181 -0
  53. package/docs/traits/Trait-EmotionalContagion.md +136 -0
  54. package/docs/traits/Trait-FOMO.md +142 -0
  55. package/docs/traits/Trait-Index.md +158 -0
  56. package/docs/traits/Trait-InformationForaging.md +209 -0
  57. package/docs/traits/Trait-InterruptRecovery.md +241 -0
  58. package/docs/traits/Trait-MentalModelRigidity.md +220 -0
  59. package/docs/traits/Trait-MetacognitivePlanning.md +156 -0
  60. package/docs/traits/Trait-Patience.md +129 -0
  61. package/docs/traits/Trait-Persistence.md +157 -0
  62. package/docs/traits/Trait-ProceduralFluency.md +197 -0
  63. package/docs/traits/Trait-ReadingTendency.md +208 -0
  64. package/docs/traits/Trait-Resilience.md +154 -0
  65. package/docs/traits/Trait-RiskTolerance.md +154 -0
  66. package/docs/traits/Trait-Satisficing.md +173 -0
  67. package/docs/traits/Trait-SelfEfficacy.md +191 -0
  68. package/docs/traits/Trait-SocialProofSensitivity.md +147 -0
  69. package/docs/traits/Trait-TimeHorizon.md +259 -0
  70. package/docs/traits/Trait-TransferLearning.md +241 -0
  71. package/docs/traits/Trait-TrustCalibration.md +219 -0
  72. package/docs/traits/Trait-WorkingMemory.md +184 -0
  73. package/package.json +2 -2
@@ -0,0 +1,219 @@
1
+ # Trust Calibration
2
+
3
+ **Category**: Tier 2 - Emotional Traits
4
+ **Scale**: 0.0 (low/skeptical) to 1.0 (high/trusting)
5
+
6
+ ## Definition
7
+
8
+ Trust calibration measures a user's baseline disposition toward trusting or distrusting websites and online services. This trait determines how users evaluate credibility signals, how long they deliberate before committing to actions (especially those involving personal data or financial transactions), and their threshold for perceiving deceptive design patterns. Low-trust users scrutinize security indicators, read privacy policies, and require multiple credibility signals before proceeding. High-trust users click through quickly with minimal verification, potentially exposing themselves to phishing or dark patterns but completing legitimate flows more efficiently.
9
+
10
+ ## Research Foundation
11
+
12
+ ### Primary Citation
13
+ > "We found eight types of credibility features: design look, structure/navigation, information focus, company recognition, security policies, physical address/contact, advertising policy, and personalization. Users evaluate these signals to determine trustworthiness, with professional design being the most cited factor."
14
+ > -- Fogg, B.J. et al., 2003, p. 15-17
15
+
16
+ **Full Citation (APA 7):**
17
+ Fogg, B. J. (2003). *Persuasive technology: Using computers to change what we think and do*. Morgan Kaufmann Publishers. ISBN 978-1558606432
18
+
19
+ **DOI**: N/A (Book) | Related paper: https://doi.org/10.1145/764008.763957
20
+
21
+ ### Stanford Web Credibility Project
22
+
23
+ > "The Stanford Guidelines for Web Credibility were derived from research involving over 4,500 participants. Results indicated that 46% of users assessed credibility based on design look and 28% on information structure/focus."
24
+ > -- Fogg, B.J. et al., 2001, p. 63
25
+
26
+ **Full Citation (APA 7):**
27
+ Fogg, B. J., Soohoo, C., Danielson, D. R., Marable, L., Stanford, J., & Tauber, E. R. (2003). How do users evaluate the credibility of Web sites? A study with over 2,500 participants. *Proceedings of the 2003 Conference on Designing for User Experiences*, 1-15.
28
+
29
+ **DOI**: https://doi.org/10.1145/997078.997097
30
+
31
+ ### Key Numerical Values
32
+
33
+ | Metric | Value | Source |
34
+ |--------|-------|--------|
35
+ | Credibility signal categories | 8 distinct types | Fogg (2003) |
36
+ | Design-based trust judgments | 46% of evaluations | Stanford Web Credibility Project |
37
+ | Time to form initial trust judgment | 50ms - 3 seconds | Lindgaard et al. (2006) |
38
+ | Privacy policy reading rate | < 3% of users | McDonald & Cranor (2008) |
39
+ | CTA hesitation (skeptical users) | 3-10x longer dwell time | Derived from eye-tracking studies |
40
+
41
+ ### Eight Credibility Signals (Fogg, 2003)
42
+
43
+ | Signal | Description | Detection Method |
44
+ |--------|-------------|------------------|
45
+ | `https` | Secure connection indicator | Protocol check |
46
+ | `security_badge` | Trust seals, SSL badges, verification marks | Visual pattern matching |
47
+ | `brand_recognition` | Known brand or company name | Brand database lookup |
48
+ | `professional_design` | Polished visual design quality | Design quality heuristics |
49
+ | `reviews_visible` | User reviews or testimonials | Review section detection |
50
+ | `contact_info` | Physical address, phone number | Contact pattern matching |
51
+ | `privacy_policy` | Privacy policy link presence | Footer/legal link detection |
52
+ | `social_proof` | Social media presence, follower counts | Social element detection |
53
+
54
+ ## Behavioral Levels
55
+
56
+ | Value | Label | Behaviors |
57
+ |-------|-------|-----------|
58
+ | 0.0-0.2 | Very Skeptical | Scrutinizes every credibility signal; reads privacy policies and terms of service; 10x longer dwell time on CTAs involving data submission; checks URL bar repeatedly; hovers over links to verify destinations; refuses to proceed without HTTPS; abandons sites with any missing trust signals; searches for company reviews before transacting |
59
+ | 0.2-0.4 | Skeptical | Checks for basic credibility signals (HTTPS, contact info); 3-5x longer deliberation before form submission; reads error messages and confirmations carefully; suspicious of too-good-to-be-true offers; examines checkout pages for security badges; may abandon if any signal feels "off" |
60
+ | 0.4-0.6 | Moderate | Notices credibility signals but doesn't actively seek them; normal CTA click speed on established sites; slight hesitation on unfamiliar sites; proceeds if overall impression is professional; checks security for financial transactions only; baseline vigilance without excessive scrutiny |
61
+ | 0.6-0.8 | Trusting | Clicks through CTAs without deliberation; assumes sites are legitimate unless obvious red flags; rarely reads terms or privacy policies; may ignore browser warnings about certificate issues; completes forms without hesitation; focuses on task completion over verification |
62
+ | 0.8-1.0 | Very Trusting | Immediate CTA clicks; dismisses security warnings as false positives; provides personal information freely; may fall for phishing or dark patterns; clicks email links without verification; enters payment information on unfamiliar sites; assumes all sites are trustworthy by default |
63
+
64
+ ## Trait Implementation in CBrowser
65
+
66
+ ### Trust Signal Detection
67
+
68
+ CBrowser detects and aggregates credibility signals:
69
+
70
+ ```typescript
71
+ interface TrustSignal {
72
+ type: 'https' | 'security_badge' | 'brand_recognition' |
73
+ 'professional_design' | 'reviews_visible' |
74
+ 'contact_info' | 'privacy_policy' | 'social_proof';
75
+ detected: boolean;
76
+ strength: number; // 0-1 contribution to trust
77
+ }
78
+
79
+ function calculateSiteTrust(signals: TrustSignal[]): number {
80
+ const weights = {
81
+ https: 0.20,
82
+ security_badge: 0.15,
83
+ brand_recognition: 0.15,
84
+ professional_design: 0.15,
85
+ reviews_visible: 0.10,
86
+ contact_info: 0.10,
87
+ privacy_policy: 0.08,
88
+ social_proof: 0.07
89
+ };
90
+
91
+ return signals.reduce((sum, s) =>
92
+ sum + (s.detected ? weights[s.type] * s.strength : 0), 0);
93
+ }
94
+ ```
95
+
96
+ ### CTA Deliberation Time
97
+
98
+ ```typescript
99
+ // Time multiplier before clicking sensitive CTAs
100
+ function getCtaDeliberationMultiplier(
101
+ trustCalibration: number,
102
+ siteTrust: number,
103
+ ctaSensitivity: 'low' | 'medium' | 'high'
104
+ ): number {
105
+ const sensitivityBase = { low: 1.0, medium: 2.0, high: 5.0 };
106
+ const baseMultiplier = sensitivityBase[ctaSensitivity];
107
+
108
+ // Skeptical users take much longer; trusting users barely pause
109
+ const trustAdjustment = 1 + ((1 - trustCalibration) * (1 - siteTrust) * 10);
110
+
111
+ return baseMultiplier * trustAdjustment;
112
+ // Very skeptical on untrusted site: up to 10x delay
113
+ // Very trusting: near 1x (no delay)
114
+ }
115
+ ```
116
+
117
+ ### Trust State Tracking
118
+
119
+ ```typescript
120
+ interface TrustState {
121
+ currentTrust: number; // Dynamic trust level for current site
122
+ signalsDetected: TrustSignal[]; // Credibility signals found
123
+ betrayalHistory: string[]; // Sites that violated trust
124
+ verificationActions: number; // Count of verification behaviors
125
+ }
126
+
127
+ // Trust erosion after perceived betrayal
128
+ function handleTrustBetrayal(state: TrustState, severity: number): void {
129
+ state.currentTrust *= (1 - severity * 0.3); // 0-30% trust reduction
130
+ state.betrayalHistory.push(currentDomain);
131
+ // Betrayal history persists across sessions (learned distrust)
132
+ }
133
+ ```
134
+
135
+ ## Trait Correlations
136
+
137
+ Research and theoretical models indicate the following correlations:
138
+
139
+ | Related Trait | Correlation | Research Basis |
140
+ |--------------|-------------|----------------|
141
+ | Risk Tolerance | r = 0.45 | Trusting users take more risks with unknown sites |
142
+ | Reading Tendency | r = -0.35 | Skeptical users read more content |
143
+ | Patience | r = 0.28 | Verification takes time; skeptics invest it |
144
+ | Comprehension | r = 0.18 | Weak correlation; trust is more emotional than cognitive |
145
+ | Self-Efficacy | r = 0.22 | Some relationship; confident users may trust more |
146
+
147
+ ### Interaction Effects
148
+
149
+ - **Trust Calibration x Risk Tolerance**: Combined high values create users vulnerable to scams
150
+ - **Trust Calibration x Reading Tendency**: Low trust + high reading = policy-reading skeptics
151
+ - **Trust Calibration x Patience**: Low trust + low patience = users who abandon rather than verify
152
+
153
+ ## Persona Values
154
+
155
+ | Persona | Trust Calibration Value | Rationale |
156
+ |---------|------------------------|-----------|
157
+ | power-user | 0.55 | Moderate; aware of risks but efficient |
158
+ | first-timer | 0.65 | Naive trust; hasn't learned skepticism yet |
159
+ | elderly-user | 0.60 | Variable; may be trusting or overly cautious |
160
+ | impatient-user | 0.70 | Trusts to save time; doesn't verify |
161
+ | mobile-user | 0.55 | Moderate awareness of mobile security |
162
+ | screen-reader-user | 0.50 | Cannot assess visual credibility signals |
163
+ | anxious-user | 0.30 | Anxiety drives verification behaviors |
164
+ | skeptical-user | 0.20 | Defining characteristic of persona |
165
+
166
+ ## UX Design Implications
167
+
168
+ ### For Low Trust Users (< 0.4)
169
+
170
+ 1. **Prominent security indicators**: Display HTTPS lock, trust seals visibly
171
+ 2. **Contact information**: Show physical address, phone, multiple contact methods
172
+ 3. **Progressive disclosure**: Don't ask for sensitive data upfront
173
+ 4. **Transparent policies**: Link to privacy policy, terms near data collection
174
+ 5. **Third-party validation**: Display BBB ratings, industry certifications
175
+ 6. **Testimonials with verification**: Real names, photos, verifiable reviews
176
+
177
+ ### For High Trust Users (> 0.7)
178
+
179
+ 1. **Streamlined flows**: Remove unnecessary verification steps
180
+ 2. **Trust but protect**: Implement backend protections since user won't verify
181
+ 3. **Explicit warnings**: Make important warnings unmissable since users dismiss easily
182
+ 4. **Confirmation steps**: Force review of sensitive submissions even if users want to skip
183
+ 5. **Dark pattern immunity**: These users are vulnerable; design ethically
184
+
185
+ ### Trust Signal Placement Best Practices
186
+
187
+ | Signal Type | Optimal Placement | Impact on Skeptical Users |
188
+ |-------------|-------------------|--------------------------|
189
+ | HTTPS/Lock | URL bar (browser) + visual indicator | Critical; first thing checked |
190
+ | Security badges | Near form submission buttons | Reduces CTA hesitation by 30-50% |
191
+ | Contact info | Footer + dedicated contact page | Increases completion of sensitive forms |
192
+ | Reviews | Product pages, checkout | Reduces cart abandonment |
193
+ | Privacy policy | Footer link + inline near data fields | Builds trust through transparency |
194
+
195
+ ## See Also
196
+
197
+ - [Trait-RiskTolerance](Trait-RiskTolerance) - Willingness to take chances (related but distinct)
198
+ - [Trait-ReadingTendency](Trait-ReadingTendency) - Tendency to read content (skeptics read more)
199
+ - [Trait-Patience](Trait-Patience) - Time tolerance for verification
200
+ - [Trait-SelfEfficacy](Trait-SelfEfficacy) - Confidence may relate to trust
201
+ - [Trait-Index](Trait-Index) - Complete trait listing
202
+
203
+ ## Bibliography
204
+
205
+ Corritore, C. L., Kracher, B., & Wiedenbeck, S. (2003). On-line trust: Concepts, evolving themes, a model. *International Journal of Human-Computer Studies*, 58(6), 737-758. https://doi.org/10.1016/S1071-5819(03)00041-7
206
+
207
+ Fogg, B. J. (2003). *Persuasive technology: Using computers to change what we think and do*. Morgan Kaufmann Publishers.
208
+
209
+ Fogg, B. J., Soohoo, C., Danielson, D. R., Marable, L., Stanford, J., & Tauber, E. R. (2003). How do users evaluate the credibility of Web sites? A study with over 2,500 participants. *Proceedings of the 2003 Conference on Designing for User Experiences*, 1-15. https://doi.org/10.1145/997078.997097
210
+
211
+ Lindgaard, G., Fernandes, G., Dudek, C., & Brown, J. (2006). Attention web designers: You have 50 milliseconds to make a good first impression! *Behaviour & Information Technology*, 25(2), 115-126. https://doi.org/10.1080/01449290500330448
212
+
213
+ McDonald, A. M., & Cranor, L. F. (2008). The cost of reading privacy policies. *I/S: A Journal of Law and Policy for the Information Society*, 4(3), 543-568.
214
+
215
+ McKnight, D. H., Choudhury, V., & Kacmar, C. (2002). Developing and validating trust measures for e-commerce: An integrative typology. *Information Systems Research*, 13(3), 334-359. https://doi.org/10.1287/isre.13.3.334.81
216
+
217
+ Riegelsberger, J., Sasse, M. A., & McCarthy, J. D. (2005). The mechanics of trust: A framework for research and design. *International Journal of Human-Computer Studies*, 62(3), 381-422. https://doi.org/10.1016/j.ijhcs.2005.01.001
218
+
219
+ Wang, Y. D., & Emurian, H. H. (2005). An overview of online trust: Concepts, elements, and implications. *Computers in Human Behavior*, 21(1), 105-125. https://doi.org/10.1016/j.chb.2003.11.008
@@ -0,0 +1,184 @@
1
+ # Working Memory
2
+
3
+ **Category**: Tier 1 - Core Traits
4
+ **Scale**: 0.0 (very limited capacity) to 1.0 (very high capacity)
5
+
6
+ ## Definition
7
+
8
+ Working memory represents a user's capacity to hold and manipulate information during task completion. This trait determines how many interface elements, form fields, navigation steps, and instructions a user can simultaneously track. Users with low working memory become overwhelmed by complex interfaces and forget earlier steps in multi-part processes, while those with high working memory can handle complex dashboards, long forms, and intricate navigation structures.
9
+
10
+ ## Research Foundation
11
+
12
+ ### Primary Citation
13
+
14
+ > "The span of immediate memory imposes severe limitations on the amount of information that we are able to receive, process, and remember. By organizing the stimulus input simultaneously into several dimensions and successively into a sequence of chunks, we manage to break (or at least stretch) this informational bottleneck."
15
+ > - Miller, 1956, p. 95
16
+
17
+ **Full Citation (APA 7):**
18
+ Miller, G. A. (1956). The magical number seven, plus or minus two: Some limits on our capacity for processing information. *Psychological Review*, 63(2), 81-97. https://doi.org/10.1037/h0043158
19
+
20
+ **DOI**: https://doi.org/10.1037/h0043158
21
+
22
+ ### Supporting Research
23
+
24
+ > "Working memory capacity varies substantially across individuals and predicts performance on complex cognitive tasks, including reading comprehension, reasoning, and multitasking."
25
+ > - Cowan, 2001, p. 89
26
+
27
+ **Full Citation (APA 7):**
28
+ Cowan, N. (2001). The magical number 4 in short-term memory: A reconsideration of mental storage capacity. *Behavioral and Brain Sciences*, 24(1), 87-114. https://doi.org/10.1017/S0140525X01003922
29
+
30
+ ### Key Numerical Values
31
+
32
+ | Metric | Value | Source |
33
+ |--------|-------|--------|
34
+ | Average chunk capacity | 7 plus or minus 2 (5-9 chunks) | Miller (1956) |
35
+ | Cowan's revised estimate | 4 chunks (without rehearsal) | Cowan (2001) |
36
+ | Duration without rehearsal | 15-30 seconds | Peterson & Peterson (1959) |
37
+ | Optimal menu item count | 7 plus or minus 2 | Miller (1956) |
38
+ | Form field cognitive load limit | 5-7 visible fields | UX research synthesis |
39
+ | Information decay rate | 18-20% per 3 seconds | Atkinson & Shiffrin (1968) |
40
+
41
+ ## Miller's Chunking Theory
42
+
43
+ ### The Chunking Mechanism
44
+
45
+ Miller discovered that while raw information capacity is limited, we can increase effective capacity through "chunking" - grouping related items into meaningful units.
46
+
47
+ | Raw Items | Without Chunking | With Chunking |
48
+ |-----------|------------------|---------------|
49
+ | Phone number: 1-8-0-0-5-5-5-1-2-3-4 | 11 items (overload) | 3 chunks: 1-800 / 555 / 1234 |
50
+ | Credit card: 4111111111111111 | 16 items (impossible) | 4 chunks: 4111 / 1111 / 1111 / 1111 |
51
+
52
+ ### Interface Design Implications
53
+
54
+ - Group related form fields visually
55
+ - Limit navigation menus to 7 plus or minus 2 items
56
+ - Use progressive disclosure to manage complexity
57
+ - Provide breadcrumbs as external memory aids
58
+
59
+ ## Behavioral Levels
60
+
61
+ | Value | Label | Behaviors |
62
+ |-------|-------|-----------|
63
+ | 0.0-0.2 | Very Limited | Overwhelmed by more than 3-4 elements. Cannot complete multi-step forms. Forgets early steps in processes. Needs external memory aids for everything. Cannot compare more than 2 options. Loses place constantly in long pages. Cannot follow multi-part instructions. |
64
+ | 0.2-0.4 | Limited | Handles 4-5 chunks maximum. Struggles with complex navigation. Needs visible step indicators. Forgets password requirements while typing. Can compare 2-3 options with difficulty. Benefits significantly from progress indicators. |
65
+ | 0.4-0.6 | Moderate | Standard 7 plus or minus 2 capacity. Handles typical web interfaces. Can complete standard multi-step processes. Compares 3-4 options effectively. Follows breadcrumb navigation. May need to re-read instructions for complex tasks. |
66
+ | 0.6-0.8 | High | Handles 8-10 chunks comfortably. Manages complex dashboards. Tracks multiple open tasks. Compares 5+ options mentally. Remembers earlier form inputs while completing later sections. Navigates complex hierarchies. |
67
+ | 0.8-1.0 | Very High | Handles 10+ chunks. Power-user of complex interfaces. Tracks multiple simultaneous processes. Mentally holds entire site structure. Rarely needs visual aids for memory. Can complete complex forms from memory. |
68
+
69
+ ## Trait Correlations
70
+
71
+ | Related Trait | Correlation | Mechanism |
72
+ |---------------|-------------|-----------|
73
+ | [Comprehension](Trait-Comprehension) | r = 0.52 | Memory capacity enables complex understanding |
74
+ | [Procedural Fluency](../traits/Trait-ProceduralFluency) | r = 0.45 | Procedure execution requires memory |
75
+ | [Metacognitive Planning](../traits/Trait-MetacognitivePlanning) | r = 0.48 | Planning requires holding multiple options |
76
+ | [Curiosity](Trait-Curiosity) | r = 0.28 | Limited memory restricts exploration |
77
+ | [Interrupt Recovery](../traits/Trait-InterruptRecovery) | r = 0.41 | Memory enables task resumption |
78
+
79
+ ## Impact on Web Behavior
80
+
81
+ ### Form Completion
82
+
83
+ | WM Capacity | Max Fields Visible | Multi-Page Tolerance | Error Recall |
84
+ |-------------|-------------------|---------------------|--------------|
85
+ | Very Low | 3-4 | 2 pages max | Forgets immediately |
86
+ | Low | 4-5 | 3 pages | Forgets quickly |
87
+ | Moderate | 5-7 | 4-5 pages | Recalls with cues |
88
+ | High | 7-9 | 6-8 pages | Good recall |
89
+ | Very High | 9+ | 10+ pages | Excellent recall |
90
+
91
+ ### Navigation Complexity
92
+
93
+ ```
94
+ Very Low: Can handle 3 levels deep maximum, needs breadcrumbs
95
+ Low: 4 levels with visual aids
96
+ Moderate: 5-6 levels with occasional disorientation
97
+ High: 7+ levels, rarely gets lost
98
+ Very High: Unlimited depth, builds mental maps easily
99
+ ```
100
+
101
+ ### Multi-tab/Window Behavior
102
+
103
+ - **Low working memory**: Loses track of tabs, forgets why opened tab, closes wrong tabs
104
+ - **High working memory**: Manages 10+ tabs efficiently, remembers purpose of each
105
+
106
+ ### Comparison Tasks
107
+
108
+ | WM Capacity | Products Compared | Needs Comparison Table |
109
+ |-------------|-------------------|------------------------|
110
+ | Very Low | 2 max | Yes, always |
111
+ | Low | 2-3 | Yes |
112
+ | Moderate | 3-4 | Helpful |
113
+ | High | 4-5 | Optional |
114
+ | Very High | 6+ | No |
115
+
116
+ ## Cognitive Load Theory
117
+
118
+ Sweller's Cognitive Load Theory (1988) extends Miller's work:
119
+
120
+ ### Three Types of Load
121
+
122
+ 1. **Intrinsic Load**: Inherent complexity of the material
123
+ 2. **Extraneous Load**: Unnecessary complexity from poor design
124
+ 3. **Germane Load**: Productive effort toward learning
125
+
126
+ ### Working Memory Implications
127
+
128
+ | WM Capacity | Total Load Tolerance | Extraneous Load Sensitivity |
129
+ |-------------|---------------------|----------------------------|
130
+ | Low | Very limited | Very sensitive |
131
+ | Moderate | Standard | Moderately sensitive |
132
+ | High | Expanded | Less sensitive |
133
+
134
+ ## Persona Values
135
+
136
+ | Persona | Working Memory Value | Rationale |
137
+ |---------|----------------------|-----------|
138
+ | [Distracted Parent](../personas/Persona-DistractedParent) | 0.35 | Divided attention reduces available WM |
139
+ | [Anxious First-Timer](../personas/Persona-AnxiousFirstTimer) | 0.4 | Anxiety consumes WM capacity |
140
+ | [Methodical Senior](../personas/Persona-MethodicalSenior) | 0.45 | Age-related decline, compensated by strategy |
141
+ | [Rushed Professional](../personas/Persona-RushedProfessional) | 0.55 | Distraction reduces available capacity |
142
+ | [Tech-Savvy Explorer](../personas/Persona-TechSavvyExplorer) | 0.75 | Practice and familiarity increase effective capacity |
143
+ | [Power User](../personas/Persona-PowerUser) | 0.85 | High baseline plus extensive chunking |
144
+
145
+ ## UX Design Implications
146
+
147
+ ### For Low-Working-Memory Users
148
+
149
+ - Limit visible form fields to 3-4 at a time
150
+ - Use progressive disclosure aggressively
151
+ - Provide breadcrumbs and step indicators
152
+ - Group related information visually
153
+ - Avoid requiring users to remember info across pages
154
+ - Use inline validation (immediate feedback)
155
+ - Provide "save and continue" functionality
156
+ - Format numbers in chunks (555-1234, not 5551234)
157
+
158
+ ### For High-Working-Memory Users
159
+
160
+ - Can show more information density
161
+ - Complex dashboards are navigable
162
+ - Less need for progressive disclosure
163
+ - Power-user features are accessible
164
+ - Can handle comparison tables with many columns
165
+
166
+ ## See Also
167
+
168
+ - [Trait Index](Trait-Index) - All cognitive traits
169
+ - [Comprehension](Trait-Comprehension) - Uses working memory capacity
170
+ - [Procedural Fluency](../traits/Trait-ProceduralFluency) - Memory for procedures
171
+ - [Interrupt Recovery](../traits/Trait-InterruptRecovery) - Task state in memory
172
+ - [Persona Index](../personas/Persona-Index) - Pre-configured personas
173
+
174
+ ## Bibliography
175
+
176
+ Atkinson, R. C., & Shiffrin, R. M. (1968). Human memory: A proposed system and its control processes. In K. W. Spence & J. T. Spence (Eds.), *The Psychology of Learning and Motivation* (Vol. 2, pp. 89-195). Academic Press.
177
+
178
+ Cowan, N. (2001). The magical number 4 in short-term memory: A reconsideration of mental storage capacity. *Behavioral and Brain Sciences*, 24(1), 87-114. https://doi.org/10.1017/S0140525X01003922
179
+
180
+ Miller, G. A. (1956). The magical number seven, plus or minus two: Some limits on our capacity for processing information. *Psychological Review*, 63(2), 81-97. https://doi.org/10.1037/h0043158
181
+
182
+ Peterson, L. R., & Peterson, M. J. (1959). Short-term retention of individual verbal items. *Journal of Experimental Psychology*, 58(3), 193-198. https://doi.org/10.1037/h0049234
183
+
184
+ Sweller, J. (1988). Cognitive load during problem solving: Effects on learning. *Cognitive Science*, 12(2), 257-285. https://doi.org/10.1207/s15516709cog1202_4
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "16.7.1",
3
+ "version": "16.8.0",
4
4
  "type": "module",
5
- "description": "Cognitive browser automation that thinks like your users. Simulate real user cognition with abandonment detection, constitutional safety, chaos engineering, and UX friction discovery.",
5
+ "description": "Cognitive browser automation that thinks like your users—and helps AI agents navigate too. Simulate real user cognition with abandonment detection, constitutional safety, chaos engineering, and UX friction discovery. Sites that pass CBrowser's cognitive tests are easier for both humans and AI agents to navigate.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "bin": {