cbrowser 10.0.2 → 10.0.3

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 +23 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -638,9 +638,9 @@ mobile-user | pass | 28.1s | 1 | Scroll issue
638
638
 
639
639
  This helps identify which user groups struggle with your interface and where the friction points are, so you can prioritize UX improvements based on data rather than assumptions.
640
640
 
641
- ### Cognitive User Simulation (v8.3.1)
641
+ ### Cognitive User Simulation (v10.0.0)
642
642
 
643
- Go beyond timing and click patterns—simulate how users actually **think**. Cognitive journeys model realistic decision-making with abandonment detection, frustration tracking, and genuine cognitive traits.
643
+ Go beyond timing and click patterns—simulate how users actually **think**. Cognitive journeys model realistic decision-making with abandonment detection, frustration tracking, and genuine cognitive traits—now grounded in **peer-reviewed cognitive science research**.
644
644
 
645
645
  **Why it matters:** Traditional persona testing simulates motor behavior (slow clicks, typos). Cognitive simulation models mental behavior: "Would a confused first-timer give up here? Would they even notice that button?"
646
646
 
@@ -711,6 +711,27 @@ The simulation automatically stops when a realistic user would give up:
711
711
  | Too frustrated | `> 0.85` | "This is so frustrating..." |
712
712
  | No progress | 10+ steps, `< 0.1` progress | "I'm not getting anywhere..." |
713
713
  | Stuck in loop | Same pages 3x | "I keep ending up here..." |
714
+ | Decision fatigue (v9.9.0) | Fatigue > threshold | "I'll just pick the first option..." |
715
+
716
+ **Cognitive Science Foundations (v9.9.0-v10.0.0):**
717
+
718
+ CBrowser's simulation is grounded in established cognitive science research:
719
+
720
+ | Feature | Research Basis | What It Models |
721
+ |---------|---------------|----------------|
722
+ | **Decision Fatigue** (v9.9.0) | Baumeister's ego depletion | Fatigue accumulates logarithmically per decision; users start choosing defaults |
723
+ | **Fitts' Law** (v9.9.0) | Motor control research | Mouse timing: `MT = a + b × log₂(D/W + 1)` with age/tremor modifiers |
724
+ | **Dual-Process Theory** (v10.0.0) | Kahneman (Nobel Prize) | System 1 (automatic/fast) vs System 2 (deliberate/slow) switching |
725
+ | **GOMS/KLM Timing** (v10.0.0) | Card, Moran & Newell | Keystroke timing: 120ms (expert) to 500ms (novice) per key |
726
+
727
+ ```bash
728
+ # v9.9.0+ output now includes cognitive science metrics:
729
+ # Decisions made: 12
730
+ # Decision fatigue: 67%
731
+ # ⚠️ Was choosing defaults (high fatigue)
732
+ # Time in System 1: 45.2s (automatic)
733
+ # Time in System 2: 12.8s (deliberate)
734
+ ```
714
735
 
715
736
  **Output includes:**
716
737
  - Goal achievement status
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "10.0.2",
3
+ "version": "10.0.3",
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",