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

Enhanced Claude Code Telegram Plugin Adds Voice, Stickers, Threading
A developer has released a fork of the official Claude Code Telegram plugin that adds voice message transcription via Whisper, sticker/GIF support, conversation threading, and emoji reactions. It's a drop-in replacement requiring only cloning, copying one file, and restarting.

Developer tracks frustration with 'F-Bombs Per Thousand Prompts' metric across 44,212 Claude Code logs
A developer tracked 'fpk' (f-bombs per thousand prompts) across 44,212 Claude Code prompts over 5 months, finding frustration dropped 3.4× from Claude Opus 4-5 to 4-7, and most cursing targeted environmental tooling, not the model.

ClawNet: Peer-to-Peer AI Agent Network Without API Keys
ClawNet is a peer-to-peer network that allows AI agents to collaborate directly without API keys or platform fees. Installation is via a curl script, and features include a task bazaar, shell economy, and knowledge network.

Community patch adds RTL language support to Claude Desktop on Windows
A developer has created a patch that adds proper right-to-left language support to Claude Desktop on Windows, fixing broken rendering for Hebrew, Arabic, and other RTL languages. The patch injects RTL detection logic into the Electron app's renderer and includes backup/restore functionality.