devharness 0.9.0 → 0.9.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.
package/README.md
CHANGED
|
@@ -113,13 +113,13 @@ you installed is what runs until you update it.
|
|
|
113
113
|
|
|
114
114
|
### Skill
|
|
115
115
|
|
|
116
|
-
Bundled [Agent Skill](https://agentskills.io) at `skills/devharness/`. Same
|
|
116
|
+
Bundled [Agent Skill](https://agentskills.io) at `plugin/skills/devharness/`. Same
|
|
117
117
|
guidance as `docs/instructions.md`, split for progressive disclosure: name and
|
|
118
118
|
description at session start, full catalogue only when debugging starts.
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
121
|
mkdir -p .claude/skills
|
|
122
|
-
ln -s ../../node_modules/devharness/skills/devharness .claude/skills/devharness
|
|
122
|
+
ln -s ../../node_modules/devharness/plugin/skills/devharness .claude/skills/devharness
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
Installing as a Claude Code plugin does this for you.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devharness",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
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",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"files": [
|
|
57
57
|
"build/",
|
|
58
58
|
"docs/",
|
|
59
|
-
"skills/",
|
|
59
|
+
"plugin/skills/",
|
|
60
60
|
"README.md",
|
|
61
61
|
"LICENSE"
|
|
62
62
|
],
|
|
@@ -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). Previously published as cdp-tools-mcp.
|
|
5
|
-
version: 0.9.
|
|
5
|
+
version: 0.9.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# devharness
|
|
File without changes
|
|
File without changes
|