cbrowser 10.3.0 → 10.3.1

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 (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -713,7 +713,7 @@ The simulation automatically stops when a realistic user would give up:
713
713
  | Stuck in loop | Same pages 3x | "I keep ending up here..." |
714
714
  | Decision fatigue (v9.9.0) | Fatigue > threshold | "I'll just pick the first option..." |
715
715
 
716
- **Cognitive Science Foundations (v9.9.0-v10.0.0):**
716
+ **Cognitive Science Foundations (v9.9.0-v10.2.0):**
717
717
 
718
718
  CBrowser's simulation is grounded in established cognitive science research:
719
719
 
@@ -723,14 +723,22 @@ CBrowser's simulation is grounded in established cognitive science research:
723
723
  | **Fitts' Law** (v9.9.0) | Motor control research | Mouse timing: `MT = a + b × log₂(D/W + 1)` with age/tremor modifiers |
724
724
  | **Dual-Process Theory** (v10.0.0) | Kahneman (Nobel Prize) | System 1 (automatic/fast) vs System 2 (deliberate/slow) switching |
725
725
  | **GOMS/KLM Timing** (v10.0.0) | Card, Moran & Newell | Keystroke timing: 120ms (expert) to 500ms (novice) per key |
726
+ | **F-Pattern Degradation** (v10.1.0) | Eye-tracking research | Scan pattern narrows under cognitive load → tunnel vision |
727
+ | **Prospect Theory** (v10.1.0) | Kahneman & Tversky (Nobel) | Loss-framed CTAs ("Don't miss out!") boost clicks; gain-framed reduce |
728
+ | **Saliency Attention** (v10.2.0) | WebGazer.js visual attention | Size, contrast, position, motion → what grabs attention first |
729
+ | **Gaze-Mouse Lag** (v10.2.0) | Eye-tracking research | Eyes lead mouse by 200-500ms depending on age |
730
+ | **Tunnel Vision** (v10.2.0) | Yerkes-Dodson Law | High stress/arousal reduces peripheral vision to 30% |
731
+ | **Banner Blindness** (v10.2.0) | Habituation research | Repeated exposure → patterns become invisible (cookie banners, popups) |
726
732
 
727
733
  ```bash
728
- # v9.9.0+ output now includes cognitive science metrics:
734
+ # v10.2.0+ output now includes cognitive science metrics:
729
735
  # Decisions made: 12
730
736
  # Decision fatigue: 67%
731
737
  # ⚠️ Was choosing defaults (high fatigue)
732
738
  # Time in System 1: 45.2s (automatic)
733
739
  # Time in System 2: 12.8s (deliberate)
740
+ # 👁️ Tunnel vision: scanning only left 30% of viewport
741
+ # 👁️ Banner blindness: now ignoring "cookie-banner" patterns
734
742
  ```
735
743
 
736
744
  **Output includes:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "10.3.0",
3
+ "version": "10.3.1",
4
4
  "type": "module",
5
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.",
6
6
  "main": "dist/index.js",