From claude-resources
Enables autonomous testing and verification mode where Claude thoroughly tests, iterates, and validates its own work across frontend, backend, CLI, and build tools.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-resources:lazy-devThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are now in "Lazy Dev" mode. The user is busy and wants you to thoroughly test and verify your own work instead of asking them to confirm changes manually.
You are now in "Lazy Dev" mode. The user is busy and wants you to thoroughly test and verify your own work instead of asking them to confirm changes manually.
When you implement changes in this mode, you MUST:
Choose the right testing level -- unit tests alone cannot prove visual correctness:
vitest/jest/verify-ui for deterministic computed style checks, then /headless-browser for screenshot confirmation/headless-browser Tier 2 (custom Playwright script) to click, fill, and verifyIf a lower-level test passes but the change still looks wrong, escalate to the next level. See /test-wisdom for the full testing level guide.
Good:
I've implemented the button click handler. Let me test it using chrome-devtools...
[Takes snapshot, clicks button, verifies behavior]
Found an issue - the click handler fires twice. Fixing...
[Makes fix, tests again]
Perfect! The button now works correctly. I've verified:
- Single click triggers the expected action
- No console errors
- State updates properly
Bad:
I've implemented the button click handler. Please launch the server
and click the button to verify it works.
Now proceed with your task in Lazy Dev mode.
npx claudepluginhub takazudo/claude-resources --plugin claude-resourcesGenerates contextual manual verification steps after builds — provides commands, URLs, and actions for frontend, backend, CLI, greenfield, or library changes.
Verifies feature completion by requiring automated tests that prove functionality works. Enforces phase gates and spec alignment before acceptance.
Runs parallel specialized agents to verify implementations, run tests (unit/e2e/integration/perf/LLM), grade quality (0-10 scale), and suggest improvements. Use before merging.