cbrowser 8.5.0 → 8.5.2

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 +20 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # CBrowser (Cognitive Browser)
2
2
 
3
- AI-powered browser automation designed for MCP-based AI agents. Built on Playwright with session persistence, self-healing selectors, constitutional safety boundaries, and natural language as the primary interface.
3
+ **The browser automation that thinks like your users.** Simulate real user cognition with patience thresholds, frustration tracking, and abandonment detection know when users give up before they do.
4
+
5
+ Built on Playwright with cognitive user simulation, constitutional safety boundaries, and the only UX testing that models how humans actually think.
4
6
 
5
7
  [![npm version](https://badge.fury.io/js/cbrowser.svg)](https://www.npmjs.com/package/cbrowser)
6
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -8,13 +10,24 @@ AI-powered browser automation designed for MCP-based AI agents. Built on Playwri
8
10
 
9
11
  ## Why CBrowser?
10
12
 
11
- Most browser automation libraries assume a human developer is writing and maintaining test scripts. When an AI agent needs to operate a browser autonomously across multiple calls, several problems arise:
13
+ Most browser automation tests if buttons click. CBrowser tests if **real humans** can use your site.
14
+
15
+ ### What Makes CBrowser Different
16
+
17
+ | Problem | Traditional Tools | CBrowser |
18
+ |---------|-------------------|----------|
19
+ | **User behavior** | Simulates clicks and typing | **Simulates how users THINK** — patience, frustration, confusion |
20
+ | **UX friction** | Fails when buttons don't work | **Detects when users would give up** before they do |
21
+ | **AI safety** | No guardrails for autonomous agents | **Constitutional safety** — risk zones prevent destructive actions |
22
+ | **Resilience** | Tests happy paths | **Chaos engineering** — inject failures to test error handling |
23
+ | **Bug discovery** | Tests what you specify | **Autonomous bug hunting** — finds issues you didn't know to look for |
24
+
25
+ ### Also Includes (Table Stakes)
12
26
 
13
- - **State is lost between calls.** Standard Playwright/Puppeteer sessions are ephemeral. An agent that logs in during one call loses that session on the next call. CBrowser persists cookies, localStorage, and session state across invocations.
14
- - **Selectors break silently.** When a site updates its DOM, CSS selectors stop working. CBrowser maintains a self-healing selector cache and generates alternative selectors automatically, so agents don't stall on stale selectors.
15
- - **There's no safety boundary.** An autonomous agent with unrestricted browser access can submit forms, make purchases, or delete data. CBrowser classifies actions by risk level and enforces verification requirements for destructive operations.
16
- - **Test maintenance is manual.** When tests break, someone has to figure out what changed and fix them. CBrowser can analyze failures, suggest repairs, and apply fixes automatically.
17
- - **Natural language is bolted on.** Most tools accept CSS selectors natively and treat natural language as a convenience layer. CBrowser treats natural language as the primary input, which is what AI agents actually produce.
27
+ - **Session persistence** State persists across calls (cookies, localStorage)
28
+ - **Self-healing selectors** Automatically adapts when DOM changes
29
+ - **Natural language interface** Describe elements instead of CSS selectors
30
+ - **MCP server** Works with Claude Desktop, claude.ai, and any MCP client
18
31
 
19
32
  ---
20
33
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "8.5.0",
4
- "description": "AI-powered browser automation with constitutional safety, AI visual regression, persona testing, and natural language test suites. Modular architecture for visual, testing, analysis, and performance modules.",
3
+ "version": "8.5.2",
4
+ "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
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {