Claude Code Plugin /verify: Automated Browser Testing from Your Plan

✍️ OpenClawRadar📅 Published: April 28, 2026🔗 Source
Claude Code Plugin /verify: Automated Browser Testing from Your Plan
Ad

If you've ever watched Claude Code confidently report "done, all requirements implemented" and then found a missing button or skipped form step, you're not alone. A Reddit user built /verify — an open-source (MIT) plugin for Claude Code that automates browser-based acceptance testing from your plan file, not your code.

Why a Plan, Not Code?

The key insight: Claude doesn't always follow the plan. Static review tools like CodeRabbit catch syntax and style issues, but they won't catch that a button is missing or a form step was skipped. /verify opens a real browser and literally clicks through the requirements.

Installation

/plugin marketplace add opslane/verify
/plugin install opslane-verify@opslane-verify-marketplace
Ad

Setup (One-Time)

Run /verify-setup. It auto-detects your dev server port from package.json and .env* files, indexes your routes, and creates a .verify/ folder in your project.

Usage

/verify path/to/plan.md

This runs the plan against your app. Under the hood, it uses the Playwright MCP to drive a real browser. Once verification finishes, it opens report.html in a browser with a pass/fail breakdown per check, complete with screenshots. A machine-readable verdicts.json is also generated.

Repo: github.com/opslane/opslane

It's very early-stage, so the author is looking for feedback.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

memv MCP Server: Persistent Structured Memory for AI Agents
Tools

memv MCP Server: Persistent Structured Memory for AI Agents

memv, an open-source Python memory layer for agents, now ships with an MCP server. It provides five tools for persistent, structured memory with per-user isolation and LLM-optional extraction.

OpenClawRadar
Applying Claude Code's Architecture to Local 9B Models: Key Findings and Optimizations
Tools

Applying Claude Code's Architecture to Local 9B Models: Key Findings and Optimizations

A developer extracted architectural patterns from Claude Code's leaked source code and applied 10 optimizations to qwen3.5:9b running locally on an RTX 5070 Ti. The key discovery was that qwen3.5:9b has native structured tool_calls, and the biggest limitation for 9B models is self-discipline in knowing when to stop exploring and start producing output.

OpenClawRadar
PocketBot: A Local AI Autopilot for iOS Using App Intents and On-Device Inference
Tools

PocketBot: A Local AI Autopilot for iOS Using App Intents and On-Device Inference

PocketBot is an iOS app that runs a quantized 3B Llama model locally on iPhone's Neural Engine via Metal, using Apple's AppIntents and CoreLocation frameworks to create event-driven automations without cloud data transmission.

OpenClawRadar
StartClaw: A headless browser automation tool built on ZeroClaw with Claude integration
Tools

StartClaw: A headless browser automation tool built on ZeroClaw with Claude integration

StartClaw is a browser automation tool built on ZeroClaw's Rust base with Composio v3 for integrations, designed to run headless in the cloud without requiring local hardware. It uses Claude exclusively for reliability and includes built-in context compaction that reduces token usage by ~5x.

OpenClawRadar