cbrowser 18.9.0 → 18.9.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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # CBrowser — Cognitive Browser Automation
2
2
 
3
- > **The browser automation that thinks.** Achieved **Grade A+** in comprehensive stress testing—100% pass rate across 68+ tools, zero critical bugs, zero server crashes. [View Full Assessment →](docs/STRESS-TEST-v16.14.4.md)
3
+ > **The browser automation that thinks.** Achieved **Grade A+** in comprehensive stress testing—100% pass rate across 83 tools, zero critical bugs, zero server crashes. [View Full Assessment →](docs/STRESS-TEST-v16.14.4.md)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/cbrowser.svg)](https://www.npmjs.com/package/cbrowser)
6
6
  [![Documentation](https://img.shields.io/badge/Docs-cbrowser.ai-blue.svg)](https://cbrowser.ai/docs)
7
7
  [![Grade A+](https://img.shields.io/badge/Stress%20Test-A+-brightgreen.svg)](docs/STRESS-TEST-v16.14.4.md)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
9
- [![MCP Ready](https://img.shields.io/badge/MCP-68%20Tools-blue)](https://modelcontextprotocol.io)
9
+ [![MCP Ready](https://img.shields.io/badge/MCP-83%20Tools-blue)](https://modelcontextprotocol.io)
10
10
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue.svg)](https://www.typescriptlang.org/)
11
11
  [![Node](https://img.shields.io/badge/Node-%3E%3D18-green.svg)](https://nodejs.org/)
12
12
 
@@ -18,7 +18,7 @@ Sites that pass CBrowser's cognitive tests are easier for both humans **and** AI
18
18
 
19
19
  ## What Makes CBrowser Different
20
20
 
21
- **68 tools, 17 cognitive personas, 25 research-backed traits.** After rigorous stress testing across production sites including Airbnb and Hacker News:
21
+ **83 tools, 17 cognitive personas, 25 research-backed traits.** After rigorous stress testing across production sites including Airbnb and Hacker News:
22
22
 
23
23
  | Capability | Status | Why It Matters |
24
24
  |------------|--------|----------------|
@@ -27,7 +27,7 @@ Sites that pass CBrowser's cognitive tests are easier for both humans **and** AI
27
27
  | **Empathy Accessibility Audits** | 🔬 Novel | Simulate users with tremors, low vision, ADHD. No competitor offers this. |
28
28
  | **Self-Healing Selectors** | ✅ Production-ready | ARIA-first with 0.8+ confidence gating. Handles DOM changes automatically. |
29
29
  | **Constitutional AI Safety** | 🔬 Novel | Risk-classified actions prevent autonomous agents from doing damage. |
30
- | **68 MCP Tools** | ✅ Production-ready | Full Claude integration—local and remote servers. |
30
+ | **83 MCP Tools** | ✅ Production-ready | Full Claude integration—local and remote servers. |
31
31
 
32
32
  ---
33
33
 
@@ -184,7 +184,7 @@ When you create a custom persona via `persona-questionnaire`, CBrowser automatic
184
184
  | **Elderly** | High Tradition, high Security, moderate Benevolence |
185
185
  | **Accessibility** | High Universalism, variable by specific disability |
186
186
 
187
- This ensures cognitive journeys reflect realistic motivational differences—not just skill gaps. See [Persona Values Documentation](docs/PERSONA-VALUES.md) for the complete values framework.
187
+ This ensures cognitive journeys reflect realistic motivational differences—not just skill gaps. See [Persona Values Documentation](https://cbrowser.ai/docs/Values-Framework) for the complete values framework.
188
188
 
189
189
  ---
190
190
 
@@ -298,7 +298,7 @@ CBrowser runs as an MCP server for Claude Desktop and claude.ai.
298
298
  https://demo.cbrowser.ai/mcp
299
299
  ```
300
300
 
301
- Deploy your own: see [Remote MCP Server Guide](docs/REMOTE-MCP-SERVER.md)
301
+ Deploy your own: see [Remote MCP Server Guide](https://cbrowser.ai/docs/Remote-MCP-Server)
302
302
 
303
303
  ### Local MCP (Claude Desktop)
304
304
 
@@ -313,7 +313,7 @@ Deploy your own: see [Remote MCP Server Guide](docs/REMOTE-MCP-SERVER.md)
313
313
  }
314
314
  ```
315
315
 
316
- ### 68 MCP Tools
316
+ ### 83 MCP Tools
317
317
 
318
318
  | Category | Tools |
319
319
  |----------|-------|
@@ -482,7 +482,7 @@ Website: [cbrowser.ai](https://cbrowser.ai)
482
482
  - [GitHub Repository](https://github.com/alexandriashai/cbrowser)
483
483
  - [Issue Tracker](https://github.com/alexandriashai/cbrowser/issues)
484
484
  - [A+ Assessment Report](https://claude.ai/public/artifacts/0cee560d-60b8-44d6-8eec-e674fbfac9c4)
485
- - [Roadmap](ROADMAP.md)
485
+ - [Roadmap](https://cbrowser.ai/docs/Roadmap)
486
486
 
487
487
  ### Research Documentation
488
488
 
@@ -8,7 +8,7 @@
8
8
  */
9
9
  import type { McpServer, ToolRegistrationContext } from "../types.js";
10
10
  /**
11
- * Register all 56 base tools on an MCP server
11
+ * Register all 57 base tools on an MCP server
12
12
  *
13
13
  * Tool count by category:
14
14
  * - Navigation: 1 (navigate)
@@ -26,7 +26,7 @@ import { registerBrowserManagementTools } from "./browser-management-tools.js";
26
26
  import { registerSecurityTools } from "./security-tools.js";
27
27
  import { registerMarketingTools } from "./marketing-tools.js";
28
28
  /**
29
- * Register all 56 base tools on an MCP server
29
+ * Register all 57 base tools on an MCP server
30
30
  *
31
31
  * Tool count by category:
32
32
  * - Navigation: 1 (navigate)
@@ -44,7 +44,7 @@ npx cbrowser mcp-remote
44
44
  PORT=8080 npx cbrowser mcp-remote
45
45
  ```
46
46
 
47
- ## All 68 MCP Tools
47
+ ## All 83 MCP Tools
48
48
 
49
49
  ### Navigation (5 tools)
50
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "18.9.0",
3
+ "version": "18.9.2",
4
4
  "type": "module",
5
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",