Verify frontend changes after editing code. Takes screenshot, checks for errors, and reports results.
Verifies frontend changes by reloading, taking screenshots, and checking for JavaScript errors.
/plugin marketplace add AnthemFlynn/ccmp/plugin install website-debug@ccmpsonnetAfter making frontend changes, verify they work correctly.
Reload the page to pick up changes:
node ~/.claude/plugins/**/website-debug/skills/website-debug/scripts/browser-eval.js 'location.reload(true)'
Wait for page load:
sleep 2
Take screenshot:
node ~/.claude/plugins/**/website-debug/skills/website-debug/scripts/browser-screenshot.js
Check for JavaScript errors:
node ~/.claude/plugins/**/website-debug/skills/website-debug/scripts/browser-console.js --errors
Analyze and report:
If issues found:
If successful:
This command is designed for the edit → verify → iterate loop that enables self-debugging of frontend work.