devharness 0.9.10 → 0.9.11

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/docs/messages.md CHANGED
@@ -45,7 +45,53 @@ These templates should not be removed - they represent potential error condition
45
45
  **Type:** error
46
46
  **Code:** CHROME_LAUNCH_TIMEOUT
47
47
 
48
- Chrome did not become ready on port {{port}} within {{timeout}}s.
48
+ Chrome spawned from `{{chromePath}}` and port {{port}} did not answer `/json/version` in {{probeAttempts}} probes over {{elapsedMs}}ms. No exit event was observed before the launch was abandoned.
49
+
50
+ {{#probeFailures}}**Each probe's failure, in order:**
51
+
52
+ ```
53
+ {{probeFailures}}
54
+ ```
55
+ {{/probeFailures}}
56
+ {{#stderrTail}}**Chrome stderr, last bytes:**
57
+
58
+ ```
59
+ {{stderrTail}}
60
+ ```
61
+ {{/stderrTail}}
62
+ {{#profileDir}}**Profile retained at:** `{{profileDir}}`{{/profileDir}}
63
+
64
+ ---
65
+
66
+ ## CHROME_LAUNCH_PROCESS_EXITED
67
+
68
+ **Type:** error
69
+ **Code:** CHROME_LAUNCH_PROCESS_EXITED
70
+
71
+ Chrome spawned from `{{chromePath}}` and the process ended before port {{port}} answered `/json/version`. Exit code {{exitCode}}, signal {{exitSignal}}, {{elapsedMs}}ms after spawn, across {{probeAttempts}} probes.
72
+
73
+ {{#probeFailures}}**Each probe's failure, in order:**
74
+
75
+ ```
76
+ {{probeFailures}}
77
+ ```
78
+ {{/probeFailures}}
79
+ {{#stderrTail}}**Chrome stderr, last bytes:**
80
+
81
+ ```
82
+ {{stderrTail}}
83
+ ```
84
+ {{/stderrTail}}
85
+ {{#profileDir}}**Profile retained at:** `{{profileDir}}`{{/profileDir}}
86
+
87
+ ---
88
+
89
+ ## CHROME_BINARY_ABSENT
90
+
91
+ **Type:** error
92
+ **Code:** CHROME_BINARY_ABSENT
93
+
94
+ No file exists at `{{chromePath}}`, the path resolved for platform `{{platform}}`. No process was spawned.
49
95
 
50
96
  ---
51
97
 
@@ -1220,12 +1266,6 @@ Unsupported platform: {{platform}}
1220
1266
 
1221
1267
  Failed to spawn Chrome process: {{error}}
1222
1268
 
1223
- **Suggestions:**
1224
- - Verify Chrome is installed on your system
1225
- - Check that you have permission to execute Chrome
1226
- - On macOS: Chrome should be at `/Applications/Google Chrome.app`
1227
- - On Linux: Chrome/Chromium should be in your PATH
1228
-
1229
1269
  ---
1230
1270
 
1231
1271
  ## PUPPETEER_NOT_CONNECTED
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devharness",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "description": "MCP server that connects AI assistants to Chrome DevTools Protocol for runtime debugging - set breakpoints, inspect variables, monitor network traffic, and automate browser interactions",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -2,7 +2,7 @@
2
2
  name: devharness
3
3
  description: Drive and debug a running app via the devharness MCP server - launch or attach to Chrome and Node.js, set breakpoints and logpoints, inspect call stacks and variables, watch console and network, manage dev servers, replay any earlier tool call by its history index, and record reproduction sequences that verify a fix. Use whenever a task involves running or debugging a live app, reproducing or verifying a bug, re-driving setup you already did (relaunching, re-logging in, refilling a form), or the user mentions breakpoints, Chrome DevTools, CDP, replay sequences, or devharness tools (launchChrome, navigate, breakpoint, inspect, replay, server, issues, etc.).
4
4
  compatibility: Requires the devharness MCP server to be connected (tools such as launchChrome, breakpoint, inspect, replay, server, issues). The shell commands need `devharness` on PATH (`npm i -g devharness`); without it use `npx -y devharness@<version> <command>`. Previously published as cdp-tools-mcp.
5
- version: 0.9.10
5
+ version: 0.9.11
6
6
  ---
7
7
 
8
8
  # devharness