/sniff: find real bugs in this project
What to do
- Call the unified
sniffMCP tool with:mode:"walk", the autonomous flow-walk that drives a real browser and finds runtime bugs (this is the one that matters;"scan"is source-only)rootDir: the current project's absolute path- omit
baseUrlto auto-detect the running dev server, or pass it if the user gives a URL
- If the response is
{ needsSetup: "playwright-browsers" }, call thesniff_installtool, then retry the walk. - If no app is running, sniff returns a note + a source-only scan. Tell the user to start their dev server (or pass a URL) for the full flow-walk that finds the real runtime bugs.
- Present findings grouped by severity (CRITICAL and HIGH first). For each, show the route, the reproduction steps, the confidence (confirmed / likely / uncertain), and the suggested fix. Mention any finding marked
needsOutOfBandVerification(e.g. "submitted but no success shown, confirm the email/job actually ran"). Offer/sniff-fixfor the safe, auto-fixable ones.
Example
User: /sniff
You: Walking your running app for real bugs…
[calls sniff with mode="walk", rootDir=/Users/user/projects/my-app]
Found 9 real issues (0 false positives) across 12 pages:
**Critical (1)**
- /checkout: Page returns HTTP 500 (crash screen shown to the user)
**High (3)**
- /: Broken link → /pricing-old (HTTP 404)
- /dashboard: Uncaught exception: cannot read 'map' of undefined
- /signup: Submit button does nothing (no request, no message, no change)
**Medium (5)**
- /orders: Empty table with no empty-state ("Your Orders")
- /profile: Placeholder data shipped (test@test.com)
- …each with reproduction steps + a screenshot + a fix.
Want me to fix the safe ones with /sniff-fix?