Install
openclaw skills install browser-proofBrowser Proof is a public ClawHub browser-QA evidence skill. Use it when the user says "browser proof", "browser QA report", "browser debugging evidence", or wants a machine-readable bundle with steps, artifacts, checks, and a shareable report.
openclaw skills install browser-proofSearch intent: browser proof, browser QA, browser debugging evidence, QA evidence pack
Turn a browser session into a release-grade evidence pack:
This skill is for browser evidence capture and handoff quality. It does not replace Playwright, OpenClaw, or a test runner.
Initialize the session manifest.
python3 {baseDir}/scripts/init_browser_proof_session.py --out <json> --session-id <id> --app <name> --goal <goal>.--base-url, repeatable --surface, and optional --run-context or --environment fields.Append each browser step as you go.
python3 {baseDir}/scripts/append_browser_proof_step.py --manifest <json> --step-id <id> --action <text> --expected <text> --actual <text> --status passed|failed|blocked.--screenshot, --dom-dump, --console-log, --network-log, --video, and repeatable --issue-key.Check the bundle before sharing it.
python3 {baseDir}/scripts/check_browser_proof_bundle.py --manifest <json> --repo-root <repo> --out <json>.Render the report.
python3 {baseDir}/scripts/render_browser_proof_report.py --manifest <json> --out <md>.passed, failed, or blocked.scripts/init_browser_proof_session.py
scripts/append_browser_proof_step.py
scripts/check_browser_proof_bundle.py
scripts/render_browser_proof_report.py