Agent skill
verify-setup
One-time setup for /verify. Auto-detects dev server and indexes the app.
Install this agent skill to your Project
npx add-skill https://github.com/opslane/verify/tree/main/skills/verify-setup
SKILL.md
/verify-setup
Run once before using /verify on a new project.
Prerequisites
- Dev server running locally (any framework)
- Node.js 22+
Steps
1. Run init
npx @opslane/verify init
This automatically:
- Creates
.verify/directory and updates.gitignore - Detects your dev server port from
package.jsonand framework configs - Indexes your app's routes and selectors
2. Configure Playwright MCP
If not already installed:
claude mcp add playwright -- npx @playwright/mcp@latest --storage-state .verify/auth.json --isolated
Restart Claude Code after adding the MCP server.
Note: The --storage-state flag loads auth state from .verify/auth.json. The --isolated flag ensures Playwright uses that state instead of its own profile.
3. Verify setup worked
cat .verify/config.json
cat .verify/app.json | head -20
You should see your baseUrl in config and routes in app.json.
4. Troubleshooting
"Dev server not running" — Start your dev server and re-run npx @opslane/verify init.
Wrong port detected — Override with: npx @opslane/verify init --base-url http://localhost:YOUR_PORT
Playwright MCP not found — Run claude mcp add playwright -- npx @playwright/mcp@latest --storage-state .verify/auth.json --isolated and restart Claude Code.
Auth expired during /verify — Log into your app in the Playwright browser session, or provide credentials when prompted by /verify.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
verify
Verify frontend changes against spec acceptance criteria. Uses Playwright MCP for browser interaction.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
qdrant-vector-search
High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neighbor search, hybrid search with filtering, or scalable vector storage with Rust-powered performance.
Didn't find tool you were looking for?