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

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-marketplaceSetup (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.mdThis 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
👀 See Also

Using Claude to Automate Mobile App QA with Capacitor WebViews
A developer built an automated QA system using Claude to test a Capacitor-based mobile app across Android and iOS. The approach uses Chrome DevTools Protocol for Android WebViews and screenshots for visual analysis, with Android setup taking 90 minutes versus 6+ hours for iOS.

Open-source Specialist Dispatch adapter delegates complex tasks to Claude Code
expert-dispatch is a ~500-line bash script that lets a cheap AI assistant delegate complex coding tasks to Claude Code CLI. It uses commands like dispatch-cc run to send tasks and maintains per-project directories with CLAUDE.md for persistent context.
Give Your OpenClaw Agent a Phone: Open Source Plugin for Voice Calls
A developer open-sourced a plugin that lets OpenClaw make phone calls. Unlike $20/mo SaaS alternatives, this is free and self-hosted.

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.