@rolepod/uiproof 0.6.0 → 0.6.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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +2 -2
- package/.codex-plugin/plugin.json +3 -3
- package/.cursor-plugin/plugin.json +2 -2
- package/CHANGELOG.md +61 -0
- package/README.md +1 -1
- package/dist/bin/rolepod-uiproof.js +33 -11
- package/dist/bin/rolepod-uiproof.js.map +1 -1
- package/dist/index.d.ts +14 -7
- package/dist/index.js +33 -11
- package/dist/index.js.map +1 -1
- package/dist/schemas/tools.json +1 -1
- package/package.json +1 -1
- package/skills/audit-a11y/SKILL.md +1 -1
- package/skills/check-errors/SKILL.md +1 -1
- package/skills/scaffold-e2e/SKILL.md +1 -1
- package/skills/verify-ui/SKILL.md +1 -1
- package/skills/visual-diff/SKILL.md +1 -1
package/dist/schemas/tools.json
CHANGED
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ MCP server. No fallback (D-024).
|
|
|
48
48
|
Run artifacts are saved under:
|
|
49
49
|
|
|
50
50
|
- **Standalone:** `.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/`
|
|
51
|
-
- **With `rolepod` parent** (
|
|
51
|
+
- **With `rolepod` parent** (detected via the marker file `<git-root>/.rolepod/parent-active` written by the parent's SessionStart hook): `<git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/`
|
|
52
52
|
|
|
53
53
|
Either way the run directory contains a `manifest.json` per Extension Protocol v1, so the parent's `check-work` skill can aggregate results into the verify phase report. Standalone users can read the manifest themselves — same shape.
|
|
54
54
|
|
|
@@ -112,7 +112,7 @@ User: "Sign in then dashboard — make sure no console errors."
|
|
|
112
112
|
Run artifacts are saved under:
|
|
113
113
|
|
|
114
114
|
- **Standalone:** `.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/`
|
|
115
|
-
- **With `rolepod` parent** (
|
|
115
|
+
- **With `rolepod` parent** (detected via the marker file `<git-root>/.rolepod/parent-active` written by the parent's SessionStart hook): `<git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/`
|
|
116
116
|
|
|
117
117
|
Either way the run directory contains a `manifest.json` per Extension Protocol v1. Because `/check-errors` wraps `rolepod_verify_ui_flow`, the manifest is written by the underlying composite tool — same shape, same fields.
|
|
118
118
|
|
|
@@ -67,7 +67,7 @@ upstream Selenium has no network-capture primitive.
|
|
|
67
67
|
Run artifacts (the generated test file) are saved under:
|
|
68
68
|
|
|
69
69
|
- **Standalone:** `.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/`
|
|
70
|
-
- **With `rolepod` parent** (
|
|
70
|
+
- **With `rolepod` parent** (detected via the marker file `<git-root>/.rolepod/parent-active` written by the parent's SessionStart hook): `<git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/`
|
|
71
71
|
|
|
72
72
|
Either way the run directory contains a `manifest.json` per Extension Protocol v1 (with `phase: "build"` for this skill).
|
|
73
73
|
|
|
@@ -115,7 +115,7 @@ or 5xx responses far more often than as wrong text.
|
|
|
115
115
|
Run artifacts are saved under:
|
|
116
116
|
|
|
117
117
|
- **Standalone:** `.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/`
|
|
118
|
-
- **With `rolepod` parent** (
|
|
118
|
+
- **With `rolepod` parent** (detected via the marker file `<git-root>/.rolepod/parent-active` written by the parent's SessionStart hook): `<git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/`
|
|
119
119
|
|
|
120
120
|
Either way the run directory contains a `manifest.json` per Extension Protocol v1, so the parent's `check-work` skill can aggregate results into the verify phase report. Standalone users can read the manifest themselves — same shape.
|
|
121
121
|
|
|
@@ -49,7 +49,7 @@ MCP server. No fallback (D-024).
|
|
|
49
49
|
Run artifacts are saved under:
|
|
50
50
|
|
|
51
51
|
- **Standalone:** `.rolepod-uiproof/artifacts/<prefix>_<ts>_<uuid>/`
|
|
52
|
-
- **With `rolepod` parent** (
|
|
52
|
+
- **With `rolepod` parent** (detected via the marker file `<git-root>/.rolepod/parent-active` written by the parent's SessionStart hook): `<git-root>/.rolepod/evidence/<ts>-rolepod-uiproof-<skill>/`
|
|
53
53
|
|
|
54
54
|
Baselines under `.rolepod-uiproof/baselines/` are always the same location regardless of mode — they are user-curated config, not per-run evidence. Either way the run directory contains a `manifest.json` per Extension Protocol v1.
|
|
55
55
|
|