cbrowser 9.8.0 → 9.8.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 +16 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -985,7 +985,7 @@ Add to Claude Desktop config (`~/.config/claude-desktop/config.json`):
985
985
  }
986
986
  ```
987
987
 
988
- ### Available MCP Tools (36 total)
988
+ ### Available MCP Tools (43 total)
989
989
 
990
990
  | Category | Tools |
991
991
  |----------|-------|
@@ -996,10 +996,24 @@ Add to Claude Desktop config (`~/.config/claude-desktop/config.json`):
996
996
  | **Visual** | `visual_baseline`, `visual_compare`, `responsive_test`, `cross_browser_test`, `ab_compare` |
997
997
  | **Personas** | `journey`, `compare_personas`, `create_persona`, `list_personas` |
998
998
  | **Cognitive** | `cognitive_journey_init`, `cognitive_journey_update_state`, `list_cognitive_personas` |
999
+ | **Persona Comparison (Session Bridge)** | `compare_personas_init`, `compare_personas_record_result`, `compare_personas_summarize` |
999
1000
  | **Sessions** | `save_session`, `load_session`, `list_sessions`, `delete_session` |
1000
- | **Analysis** | `hunt_bugs`, `chaos_test`, `performance_audit`, `dismiss_overlay` |
1001
+ | **Analysis** | `hunt_bugs`, `chaos_test`, `performance_audit`, `dismiss_overlay`, `agent_ready_audit`, `competitive_benchmark`, `empathy_audit` |
1001
1002
  | **Utilities** | `heal_stats`, `list_baselines`, `status` |
1002
1003
 
1004
+ ### API-Free Cognitive Features (v9.7.0+)
1005
+
1006
+ When using CBrowser via MCP (Claude.ai or Claude Code), many cognitive features work **without an Anthropic API key** on the server:
1007
+
1008
+ | Feature | via MCP | Standalone CLI |
1009
+ |---------|---------|----------------|
1010
+ | `cognitive_journey_init` / `update_state` | ❌ No API key needed | ❌ No API key needed |
1011
+ | `compare_personas_init` / `record` / `summarize` | ❌ No API key needed | N/A |
1012
+ | `compare_personas` (fire-and-forget) | ✅ API key required | ✅ API key required |
1013
+ | `cognitive-journey` CLI command | N/A | ✅ API key required |
1014
+
1015
+ **How it works:** Session bridge tools return data/calculations, Claude provides the reasoning. The MCP server does math and browser automation; Claude IS the brain.
1016
+
1003
1017
  See [Remote MCP Server Guide](docs/REMOTE-MCP-SERVER.md) for full deployment instructions.
1004
1018
 
1005
1019
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cbrowser",
3
- "version": "9.8.0",
3
+ "version": "9.8.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",