@rolepod/uiproof 0.6.1 → 0.6.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.
@@ -11,7 +11,7 @@
11
11
  "name": "rolepod-uiproof",
12
12
  "source": "./",
13
13
  "description": "26 MCP tools (21 atomic browser/mobile primitives + 5 composite workflows) + 5 user-invocable skills. Works standalone today; pair with the `rolepod` parent plugin (detected via the marker file `<git-root>/.rolepod/parent-active`) and uiproof becomes the verify-phase UI provider — evidence routes to `<git-root>/.rolepod/evidence/` with `manifest.json` per Extension Protocol v1. Replaces chrome-devtools-mcp and playwright-mcp for UI testing. Web production-ready via Playwright; mobile (iOS/Android) via Appium scaffolded — see `rolepod-uiproof doctor` for readiness.",
14
- "version": "0.6.1",
14
+ "version": "0.6.2",
15
15
  "author": {
16
16
  "name": "nuttaruj"
17
17
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rolepod-uiproof",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Multi-platform UI/mobile automation for AI agents — 5 shipped skills (verify-ui, audit-a11y, visual-diff, scaffold-e2e, check-errors) + MCP server with 26 tools. Works standalone OR with the `rolepod` parent plugin: when the marker file `<git-root>/.rolepod/parent-active` is present (written by the parent's SessionStart hook), evidence routes to `<git-root>/.rolepod/evidence/` with a `manifest.json` per Extension Protocol v1, so parent's `check-work` skill can aggregate UI verify results into its phase report. v0.5 completed the UI verification surface (console + network observability, hover/drag/fill_form/upload/dialog, runtime emulation, multi-page, gated JS eval).",
5
5
  "author": {
6
6
  "name": "nuttaruj",
@@ -19,7 +19,7 @@
19
19
  "mcpServers": {
20
20
  "rolepod-uiproof": {
21
21
  "command": "npx",
22
- "args": ["-y", "rolepod-uiproof"],
22
+ "args": ["-y", "@rolepod/uiproof"],
23
23
  "env": {}
24
24
  }
25
25
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rolepod-uiproof",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Multi-platform UI/mobile automation for AI agents — 5 shipped skills (verify-ui, audit-a11y, visual-diff, scaffold-e2e, check-errors) + MCP server with 26 tools. Works standalone today; pair with the `rolepod` parent plugin (detected via the marker file `<git-root>/.rolepod/parent-active`) and uiproof becomes the verify-phase UI provider.",
5
5
  "author": {
6
6
  "name": "nuttaruj",
package/.cursor/mcp.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "mcpServers": {
3
3
  "rolepod-uiproof": {
4
4
  "command": "npx",
5
- "args": ["-y", "rolepod-uiproof"],
5
+ "args": ["-y", "@rolepod/uiproof"],
6
6
  "env": {}
7
7
  }
8
8
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rolepod-uiproof",
3
3
  "displayName": "Rolepod UIProof",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "description": "Multi-platform UI / mobile automation MCP server + 5 shipped skills (verify-ui, audit-a11y, visual-diff, scaffold-e2e, check-errors) for AI coding agents. Works standalone today; pair with the `rolepod` parent plugin (detected via the marker file `<git-root>/.rolepod/parent-active`) and uiproof becomes the verify-phase UI provider — evidence routes to `<git-root>/.rolepod/evidence/` with `manifest.json` per Extension Protocol v1. Replaces chrome-devtools-mcp and playwright-mcp.",
6
6
  "author": {
7
7
  "name": "nuttaruj"
package/CHANGELOG.md CHANGED
@@ -7,6 +7,47 @@ release.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.2] — 2026-05-28
11
+
12
+ ### Fixed
13
+
14
+ - **Plugin MCP server failed to start in fresh sessions** with
15
+ `Failed to reconnect to plugin:rolepod-uiproof:rolepod-uiproof: -32000`.
16
+ Root cause: v0.4.1 changed every `mcpServers` config to invoke
17
+ `npx -y rolepod-uiproof` (unscoped) instead of
18
+ `npx -y @rolepod/uiproof` (scoped). The unscoped name does not
19
+ exist on the npm registry — npx returned `E404` and the spawn
20
+ failed. The earlier "fix" only appeared to work on machines that
21
+ already had `node_modules/.bin/rolepod-uiproof` cached from a
22
+ previous local install; a fresh environment (where Claude Code
23
+ spawns the MCP server in its own subprocess with a clean PATH)
24
+ always 404'd.
25
+
26
+ Verified directly: `npx -y rolepod-uiproof` → `npm error code E404`;
27
+ `npx -y @rolepod/uiproof` → MCP server boots, lists 26 tools,
28
+ responds to `initialize`. v0.4.1's premise that npx couldn't
29
+ resolve a scoped package's bin when the bin name didn't match the
30
+ short name was wrong — modern npx exec selects the single
31
+ available bin regardless of naming.
32
+
33
+ Reverts the four `mcpServers` invocations + the matching
34
+ documentation:
35
+
36
+ - `.mcp.json`
37
+ - `.cursor/mcp.json`
38
+ - `.claude-plugin/plugin.json`
39
+ - `plugins/rolepod-uiproof/.mcp.json`
40
+ - `README.md` (Install snippet)
41
+ - `skills/verify-ui/SKILL.md` + `skills/check-errors/SKILL.md`
42
+ ("If the tool is unavailable" hint)
43
+ - `plugins/rolepod-uiproof/skills/{verify-ui,check-errors}/SKILL.md`
44
+ (mirrors)
45
+
46
+ Plugin and standalone consumers must update to v0.6.2 (or override
47
+ the command manually in `.mcp.json`) to get working spawns. The
48
+ package itself was always installable as `@rolepod/uiproof`; only
49
+ the invocation form was broken.
50
+
10
51
  ## [0.6.1] — 2026-05-28
11
52
 
12
53
  ### Fixed
package/README.md CHANGED
@@ -89,11 +89,11 @@ Skills are not auto-registered under Cursor (no unified plugin format for skills
89
89
  ```bash
90
90
  # Install
91
91
  codex plugin marketplace add nuttaruj/rolepod-uiproof
92
- codex plugin install rolepod-uiproof@rolepod-uiproof
92
+ codex plugin add rolepod-uiproof@rolepod-uiproof
93
93
 
94
94
  # Update
95
95
  codex plugin marketplace upgrade rolepod-uiproof
96
- codex plugin install rolepod-uiproof@rolepod-uiproof
96
+ codex plugin add rolepod-uiproof@rolepod-uiproof
97
97
  ```
98
98
 
99
99
  Codex reads the plugin from `.agents/plugins/marketplace.json` + `.codex-plugin/plugin.json` in this repo. Skills install to `~/.codex/skills/` (Codex's plugin loader handles registration).
@@ -111,7 +111,7 @@ Use this when your tool reads a standard `mcpServers` config (most non-CLI MCP c
111
111
  "mcpServers": {
112
112
  "rolepod-uiproof": {
113
113
  "command": "npx",
114
- "args": ["-y", "rolepod-uiproof"]
114
+ "args": ["-y", "@rolepod/uiproof"]
115
115
  }
116
116
  }
117
117
  }
@@ -4165,7 +4165,7 @@ var toolMetadata = {
4165
4165
 
4166
4166
  // src/server.ts
4167
4167
  var SERVER_NAME = "rolepod-uiproof";
4168
- var SERVER_VERSION = "0.6.1";
4168
+ var SERVER_VERSION = "0.6.2";
4169
4169
  var SUPPORTED_PROTOCOL = "v1";
4170
4170
  function checkProtocolCompat() {
4171
4171
  const parent = detectRolepodParent();