From shipshitdev-library
Runs a structured multi-phase verification pass on completed AI agent work, catching bugs, missed requirements, and incorrect assumptions before changes are committed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shipshitdev-library:qa-reviewerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Structured framework for reviewing AI agent work before finalizing changes. Catches bugs, verifies accuracy, ensures completeness, validates solutions match requirements.
Structured framework for reviewing AI agent work before finalizing changes. Catches bugs, verifies accuracy, ensures completeness, validates solutions match requirements.
# Verify file exists
ls -la <file-path>
# Check balanced code blocks
grep -c '```' file.md
# Find violations
grep -r "console\.log" <files>
grep -r ": any" <files>
any typesFor complete workflow phases, output format template, common issue patterns, and advanced techniques, load ${CLAUDE_SKILL_DIR}/references/full-guide.md when performing a comprehensive QA pass or when the task has more than three deliverables.
npx claudepluginhub shipshitdev/skillsRuns automated checks (build, test, lint) and compares completed work against original requirements before committing.
Runs a blind verification loop where a clean-context sub-agent independently checks the main agent's response against user requirements before surfacing it.
Validates code changes against original plan using git diffs and full file reads, then launches parallel subagents for quality, security, and test coverage checks. Use post-implementation or /recheck.