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.
- package/README.md +20 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# CBrowser (Cognitive Browser)
|
|
2
2
|
|
|
3
|
-
|
|
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
|
[](https://www.npmjs.com/package/cbrowser)
|
|
6
8
|
[](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
|
|
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
|
-
- **
|
|
14
|
-
- **
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
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.
|
|
4
|
-
"description": "
|
|
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": {
|