healix-mcp 1.2.16 → 1.3.0

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 ADDED
@@ -0,0 +1,28 @@
1
+ # healix-mcp
2
+
3
+ A [Model Context Protocol](https://modelcontextprotocol.io) server that lets an AI agent (Claude Code, Cursor, Windsurf, …) **build and heal real WebdriverIO tests by watching your live app** — observing the actual DOM, deriving durable selectors, scaffolding page objects and specs, running them, and self-healing on failure.
4
+
5
+ What it produces is a standalone [`wdio-healix-service`](https://www.npmjs.com/package/wdio-healix-service) suite that runs in CI with **no AI in the loop**.
6
+
7
+ ```jsonc
8
+ // .mcp.json
9
+ {
10
+ "mcpServers": {
11
+ "healix": { "command": "npx", "args": ["healix-mcp"], "env": { "HEALIX_PORT": "4000" } }
12
+ }
13
+ }
14
+ ```
15
+ > Or scaffold everything at once: `npx create-healix my-app`
16
+
17
+ ## What it gives the agent
18
+ - **`healix_guide`** — the authoritative framework model + workflow (read first).
19
+ - **`healix_start_session` / `healix_status` / `healix_run_test`** — drive a live, stateful session.
20
+ - **`healix_get_dom` / `healix_validate_locator` / `healix_get_aria_resolve`** — observe the real UI and derive durable selectors (never guessed).
21
+ - **`healix_scaffold_page` / `healix_scaffold_suite`** — author POMs and specs that can't get the import, decorators, or wrappers wrong.
22
+ - **`healix_fix_locator` / `healix_replace_locator`** — heal a paused test in place.
23
+
24
+ Edit a spec or page object and just **re-run** — Healix auto-reloads the changed files before running.
25
+
26
+ ## Requirements
27
+ - A project using **`wdio-healix-service`** (the [`create-healix`](https://www.npmjs.com/package/create-healix) scaffold sets both up).
28
+ - Node 18+.